Animalverse Club (AVC) token is an important part of the Animalverse Lab.CO.,LTD ecosystem and is an important step for a startup like us to showcase our potential to the world publick good., Prepare…
Base
eip155:8453
#c4dacb
AVC
18
Animalverse Club (AVC) token is an important part of the Animalverse Lab.CO.,LTD ecosystem and is an important step for a startup like us to showcase our potential to the world publick good., Prepare for the ultimate Animalverse Club (AVC) upgrade! We’re sending What people crave for is neutrality and independence in social media. through our ecosystem fave towards a more sustainable future. Stake AVC today to start earning eco-friendly rewards.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xacb1c6492a3d7cb8f38f04496381902ba55ed3c5";
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],
},
};