Polkadog (PDOG) is a DeFi project that automatically provides rewards to users who hold the token via frictionless fee redistribution.
Ethereum
eip155:1
#f2e1e1
PDOG
18
Polkadog (PDOG) is a DeFi project that automatically provides rewards to users who hold the token via frictionless fee redistribution. Polkadog presents Polkaswap, the DEX for the interoperable future, and as a fair launch community, there are no pre-sales, no token sales, no private sales.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xb16e967ff83de3f1e9fceafbc2c28c1c5c56ef91";
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],
},
};