Husky Shiba is a community driven charity token, 50% of all generated liquidity will be donated to charities chosen by the community!
Binance Smart Chain
eip155:56
#ecdbc2
HSHIBA
9
Husky Shiba is a community driven charity token, 50% of all generated liquidity will be donated to charities chosen by the community! We have already made our first donation, after only 24hr's, and we donated $100,000! Check out our website for more info.
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 = "0xd914bde476b6e44b7a1579b21f0f9193ea55f852";
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],
},
};