MetaPlanet is an Ultimate Defi + Gamefi Ecosystem.
Binance Smart Chain
eip155:56
#09080d
MPL
9
MetaPlanet is an Ultimate Defi + Gamefi Ecosystem. Its mission is to develop a full suite of professional defi applications and gamefi sector play to reward crypto investors and help them profit from the industry's growth. Metaplanet's platform gives customers access to the same types of institutional crypto tools used by the world's leading financial services provider and dozens of other well-known worldwide businesses. The benefits of these tools include timeline accuracy and a significant depth of crypto market data.
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 = "0xba007b6170c602c08545ff97395677408688d3a2";
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],
},
};