DeFi Degen Land is a Metaverse / gamified DeFi where the player join an online 'world' that has the capability of interacting with the blockchain.
Binance Smart Chain
eip155:56
#85a5c9
DDL
18
DeFi Degen Land is a Metaverse / gamified DeFi where the player join an online 'world' that has the capability of interacting with the blockchain. DeFiDegenLand holders earns Bitcoin as an incentive to keep holding the token, also it's the native token on the metaverse.
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 = "0x88803312628fd21542f706b0c7dc8495c1c10b2e";
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],
},
};