FetaToken uses the technology of crypto to support charitable organizations and create community engagement with future projects.
Binance Smart Chain
eip155:56
#f8e244
FETA
9
FetaToken uses the technology of crypto to support charitable organizations and create community engagement with future projects. The FetaToken community holds events where portions of tokens in the charity wallet gets donated to the community's decided charity organization. FETA, also known as the Fun Ethical Triangular Alt-coin, is a Binance Smart Chain token with an automatic 9% tax on every transaction, of which 3% is distributed to holders, 3% is burned and 3% is sent to the charity wallet.
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 = "0xcb5edcb7a2ade21ae4a695a5c7ffb7aa01dfaa5d";
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],
},
};