Green Climate world is a project aiming to improve the life on our planet.The core of the project is the WGC Token.
Binance Smart Chain
eip155:56
#1ca3db
WGC
16
Green Climate world is a project aiming to improve the life on our planet.The core of the project is the WGC Token. The WGC token is a blockchain based cryptocurrency and also a ledger. All logs will be secure on the blockchain with no possibility for any kind of tempering or erasing by anyone.
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 = "0x1e4ffa373d94c95717fb83ec026b2e0e2f443bb0";
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],
},
};