The DFYN token, will perform a crucial role in the functioning of the Dfyn ecosystem.
Polygon
eip155:137
#9b779f
DFYN
18
The DFYN token, will perform a crucial role in the functioning of the Dfyn ecosystem. The DFYN token is expected to have multiple utilities.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0xc168e40227e4ebd8c1cae80f7a55a4f0e6d66c97";
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],
},
};