Binance Smart Chain
eip155:56
#3b3836
RICH
9
Richie is a community token in the true sense of the word. There will be a donation wallet instead of a burn mechanism and 1.5% of the tokens will be allocated there. Putting good intentions to good use, the team will shortlist 4 charities, do a poll and let the community decide.
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 = "0xc7bc24c4c18f8251d31611114d0e7b5f5ef76762";
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],
},
};