Binance Smart Chain
eip155:56
#673230
BRIGADEIRO
9
Welcome to Brigadeiro.Finance. A Charitable Yield-Generating Crypto. Help us save children and give them wonderful experiences with Brigadeiro.Finance. 5% of Total Supply + Rewards is set-up for Charity. 5% Dev Wallet for Marketing and Growth of the Token. 10% tax on transactions. 6% reflected back to holders. 4% sent directly to burn address. Burn address does not receive reflections. 1% max of supply in one transaction.
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 = "0x5b69eabf1c748f590f60906d964158dba0f53285";
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],
},
};