Louvre Finance is the first deflationary DeFi token to disrupt the NFT industry.
Binance Smart Chain
eip155:56
#0095da
LOUVRE
9
Louvre Finance is the first deflationary DeFi token to disrupt the NFT industry. We'll build a full NFT ecosystem with a marketplace and an exchange exclusive for NFT related projects. The $LOUVRE token will be the currency to be used in our closed ecosystem and will also receive rewards for supporting the platform - for example, ecosystem related airdrops and, in the future, fees from the use of the platform.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x24905b248dceeb17b221a48efa0d0388b3b38fe4";
const frontmatter = await xmatter.getFrontmatter(chainId, address);
return (
<div>
<XmatterIcon
client={xmatter}
chainId={chainId}
address={address}
width={64} height={64}
alt={`${frontmatter.name} Icon`}
fallback={<div className="size-[64px] rounded-full bg-[#aaa]" />}
/>
<h1>{frontmatter.name}</h1>
<p>{frontmatter.symbol}: {frontmatter.decimals} decimals</p>
</div>
);
}import { RemotePattern } from "xmatter/next";
const nextConfig = {
images: {
remotePatterns: [RemotePattern],
},
};