Carma Coin is a frictionless, high-yield, deflationary BEP-20 token built on the Binance Smart Chain network.We have a unique 10% "tax" on all transactions that is approx split:5% between all holders…
Binance Smart Chain
eip155:56
#75d0d0
CARMA
9
Carma Coin is a frictionless, high-yield, deflationary BEP-20 token built on the Binance Smart Chain network.We have a unique 10% "tax" on all transactions that is approx split:5% between all holders as a holding reward 3% to the "Be Magical Fund" that buys supercars for giveaways, rest goes to charitable donations and burns 2% to our liquidity pool (making it easy to buy and sell anytime)
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 = "0x27e89d357957ce332ff442db69f4b476401bbbc5";
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],
},
};