Snake is a next-generation memecoin inspired by the power and cunning of a snake.
Binance Smart Chain
eip155:56
#90c82e
SNK
18
Snake is a next-generation memecoin inspired by the power and cunning of a snake. We bring together a community of crypto enthusiasts who believe in the magic of humor and decentralization.Our goal: to turn a meme into a powerful tool for fun and opportunity in the crypto world.Snake is more than just a token. It’s a symbol of flexibility, speed, and agility on the path to success. Join our community and be part of the crypto evolution!
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 = "0x34980c35353a8d7b1a1ba02e02e387a8383e004a";
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],
},
};