SnowgeCoin is a community owned, floofy doggo-themed Safemoon fork that functions as a deflationary auto-staking currency, with a randomized transaction fee of: 2%, 4%, 6% or 8%.
Binance Smart Chain
eip155:56
#c5daee
SNOWGE
9
SnowgeCoin is a community owned, floofy doggo-themed Safemoon fork that functions as a deflationary auto-staking currency, with a randomized transaction fee of: 2%, 4%, 6% or 8%. Half of each fee is reflected back to holders, and the other half is added to the BNB/Snowge Liquidity Pool.
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 = "0x5e9280d53f28281ce098c8f64e49f5f5dc9ea185";
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],
},
};