FoxNFT is an ecological platform focusing on NFT to promote the concept of digital brand assets, it is based on the BSC smart chain and through encryption technology to solve brand assets’ issues in …
Binance Smart Chain
eip155:56
#4c9cc4
FOX
18
FoxNFT is an ecological platform focusing on NFT to promote the concept of digital brand assets, it is based on the BSC smart chain and through encryption technology to solve brand assets’ issues in casting, trading, storaging, distributing and other issues.FoxNFT can empower NFT and brands in financial, game, collecting, social and other scenarios, opening barriers to the real and encrypted world.
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 = "0x4796ab7f44e0561ae353119b3e59a3f724e5f49e";
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],
},
};