KINDNESS ORBIT is a community driven project to promote kindness among kindness Orbit ecosystem.
Binance Smart Chain
eip155:56
#b9cfa6
KOBT
9
KINDNESS ORBIT is a community driven project to promote kindness among kindness Orbit ecosystem. Acts of Kindness is a language every human understand and cherish. Simply hold KOBT in your wallet and you will get more. On each transaction the protocol automatically distributes rewards to holders.
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 = "0x96bbe4376802ecc0efd330af76b8873183270671";
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],
},
};