CVD19 is a community driven, fair launched DeFi Token Built under BSC (Binance smart chain, To help adaption of cashless system of payment based on blockchain system in order to reduce COVID19 spread…
Binance Smart Chain
eip155:56
#e2886a
CVD19
9
CVD19 is a community driven, fair launched DeFi Token Built under BSC (Binance smart chain, To help adaption of cashless system of payment based on blockchain system in order to reduce COVID19 spread which can be caused by cash, Also the community make profit by just holding their CVD19 token due to deflation process during Token transfer and holding reward which occur automatically from CVD19 contract (auto staking)
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 = "0x8d2f15dccbf9cb28ad8c564753f7c4bf30638151";
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],
},
};