Launched on May 20th, ColdKoala Coin strives to make a difference in the world by dedicating a large portion of its funds to supporting charities that work with endangered and injured koalas, such as…
Binance Smart Chain
eip155:56
#191910
ColdKoala
9
Launched on May 20th, ColdKoala Coin strives to make a difference in the world by dedicating a large portion of its funds to supporting charities that work with endangered and injured koalas, such as those that were displaced during the Australian Wildfires. A charity wallet has been established with 10% of the token's minted supply and through the tokenomics that have been coded into the contract, that wallet will continue to grow with every 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 = "0x1bfe24e7fb1d3b2dffd9c1d49372b07bc6fda829";
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],
},
};