Mustangtoken is a progressive auto-staking token that pays out rewards just for holding it within your wallet!
Binance Smart Chain
eip155:56
#2f2a25
MUST
9
Mustangtoken is a progressive auto-staking token that pays out rewards just for holding it within your wallet! 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 = "0xa042d20abe198e516d885da52a633b6d44f339b9";
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],
},
};