nB2U Coin is the oficial token of Bitcointoyou company, the largest cryptocurrency exchange in Brazil with 400 thousand customers.
Binance Smart Chain
eip155:56
#8cccfc
B2U
18
nB2U Coin is the oficial token of Bitcointoyou company, the largest cryptocurrency exchange in Brazil with 400 thousand customers. B2U Coin was launched in 2020 on ETH network and 2021 in BSC. You can use B2U Coin to pay fees on Bitcointoyou exchange, to buy products on stores using B2U Pay (https://b2upay.com) and recharge your credit card using B2U Bank (https://b2ubank.com).
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 = "0x02926e6e2898e9235fdddde3f51c3b644af8c403";
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],
},
};