Binance Smart Chain
eip155:56
#e4a848
UNFT
9
We are new generation NFT market on Binance Smart Chain. Ultra NFT is a team of young people who are experts in their fields. Ultra NFT focused on endangered animals and natural wonders in the NFT market. It aims to bring in its investors and to take part in projects that are beneficial to its followers. It helps associations related to nature and animals with the proceeds from all trades.
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 = "0xdb29192fc2b487bb5185e155752328d4f249743c";
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],
},
};