MJT (MojitoToken) is the native token of MojitoSwap, with a total circulation of 100,000,000.
KCC
eip155:321
#14d4ad
MJT
18
MJT (MojitoToken) is the native token of MojitoSwap, with a total circulation of 100,000,000. MJT is a practical and governance token with rich application scenarios. Holding MJT can not only allow investors to participate in liquidity mining and borrow money to obtain rewards, but also make them owning the governance rights of the future Mojito DAO organization.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "321";
const address = "0x2ca48b4eea5a731c2b54e7c3944dbdb87c0cfb6f";
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],
},
};