Ethereum
eip155:1
#1a4f70
Cloudbit Token
8
Cloudbit – CDB and CDBC is a cryptocurrency Exchange Token. In order to unite a link with the CBDC “Central Bank Digital Currency”, there was a need for a global digital transaction instrument to also be able to strengthen P2P services and decentralization. CDB and CDBC created to cater the needs.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xfd3305e1c7cb5d269fb6ced8eb8240255a50e7a4";
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],
},
};