TendieSwap is a non-custodial prediction protocol that enables users to earn unlimited rewards on high-yield prediction markets.
Binance Smart Chain
eip155:56
#df7627
TENDIE
18
TendieSwap is a non-custodial prediction protocol that enables users to earn unlimited rewards on high-yield prediction markets. TENDIE ($TENDIE) is the utility token of the TendieSwap ecosystem and is based on the BEP-20 token standard with a dual deployment to MATIC coming soon.
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 = "0x9853a30c69474bed37595f9b149ad634b5c323d9";
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],
},
};