DisCas Vision is the world’s first and only decentralized platform, built on blockchain technology and smart contracts.
Binance Smart Chain
eip155:56
#1478f4
DISC
18
DisCas Vision is the world’s first and only decentralized platform, built on blockchain technology and smart contracts. We unite governments, organizations and communities into a decentralized, open and fair network. The smart contract technology that underlies the platform will provide an automated and transparent system for investment and profit distribution. For more information please visit our site and our offering and solutions is here https://discas.vision/white-paper/
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 = "0x2bcdcf1ef1320fc5f9a71ca0bd1504d6125f7569";
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],
},
};