Derived inspiration from the powerful ants, Ants.finance was given birth with the desire to create a united, strong, constantly growing community of the ant.Ants.finance aims to build a decentralized…
Binance Smart Chain
eip155:56
#1d1c1b
ANTF
18
Derived inspiration from the powerful ants, Ants.finance was given birth with the desire to create a united, strong, constantly growing community of the ant.Ants.finance aims to build a decentralized financial system including AMM DEX, Deflation system, Ant's Pool, Ant's Nest, NFT Marketplace, NFT Creative.
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 = "0xf00598af0ccf2d43613414f36f40123337f56e71";
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],
},
};