Pollo is a social contribution project launched by academics and experts in cryptocurrency development.
Binance Smart Chain
eip155:56
#fbe288
PoFi
18
Pollo is a social contribution project launched by academics and experts in cryptocurrency development. PoFi is the only token that connects to all of Pollo DAO's governance, seigniorage (algorithmic staple coin), and Vaults (Auto Farming).Maximum Supply is 500,000.
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 = "0x461f6c9ae13a7dac7055c73fbf8dab529d667041";
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],
},
};