DOOiT is here to bring a cryptocurrency exchange with high levels of security providing easy-to-use platform for everyone, even for newcomers to the crypto world.
Binance Smart Chain
eip155:56
#04a3c6
DOO
16
DOOiT is here to bring a cryptocurrency exchange with high levels of security providing easy-to-use platform for everyone, even for newcomers to the crypto world. DOOiT also comes with its own token powered by BEP20 protocol. DOO is the Ticker we use for the DOOiT token. The Ticker is the abbreviation used to uniquely identify cryptocurrencies, this is the shortened name of the cryptocurrency. People can buy DOOiT tokens and any other tokens or coins using our Exchange Platform.
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 = "0x8e87db40c5e9335a8fe19333ffc19ad95c665f60";
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],
},
};