The first of its kind, $PLUTO ties a narrative to universal basic income (UBI) driven by the community that collaborates on a “choose-your-own-adventure” model of governance to propel Pepe across the…
Binance Smart Chain
eip155:56
#476780
PLUTO
9
The first of its kind, $PLUTO ties a narrative to universal basic income (UBI) driven by the community that collaborates on a “choose-your-own-adventure” model of governance to propel Pepe across the galaxy and earn $PLUTO and $PEPE tokens in return
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 = "0x0c3ea5aac39101e5b3989b3f19181d8591b734d0";
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],
},
};