Ethereum
eip155:1
#e5e5e5
DFG
6
The DFG token will be the centerpiece of this new platform. Through behavioural mining, innovative token economy design, and other incentive mechanisms, developers will be given the power to build the best DApps possible, and players will be enabled to become platform stakeholders as the platform continues on its path of providing best decentralized gaming experiences on the blockchain.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x08d6e6b487f0d402160c8038ec0210fcde6ca570";
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],
},
};