TOKPIE is the First Cryptocurrency Exchange Platform with BOUNTY STAKES TRADING service.
Ethereum
eip155:1
#0baffc
TKP
18
TOKPIE is the First Cryptocurrency Exchange Platform with BOUNTY STAKES TRADING service. Holders of the TOKPIE (TKP) token can get up to 500% discount on fees, regular airdrops from newly listed projects, up to 70% referral bonus, access to the bounty stakes depositing and trading, P2P loans with TKP pledged as collateral under 90% LTV, and income from TKP lending (staking). Also, TKP is accepted on Tokpie IEO Launchpad.
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 = "0xd31695a1d35e489252ce57b129fd4b1b05e6acac";
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],
},
};