PinkPanda is a yield-generating utility token for a new decentralized exchange the supports up to 5x leverage (margin trading).
Binance Smart Chain
eip155:56
PINKPANDA
9
PinkPanda is a yield-generating utility token for a new decentralized exchange the supports up to 5x leverage (margin trading). The PinkPanda team is a group of long-time crypto and decentralized finance (DeFi) builders and innovators, who are looking to drive change in the industry through building a unique community-driven token that delivers a strong return to its holders as well as a positive social impact. $PINKPANDA creates abundance.
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 = "0x631e1e455019c359b939fe214edc761d36bf6ad6";
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],
},
};