TIWI Content Access Token (TIWICAT) is the access token for TiwiFlix, a web 3.0 video sharing, live streaming and monetization dApp.
Binance Smart Chain
eip155:56
#0d8c1d
TWC
9
TIWI Content Access Token (TIWICAT) is the access token for TiwiFlix, a web 3.0 video sharing, live streaming and monetization dApp. It also runs all the utilities within the TIWI Ecosystem. The token has an initial supply of 1 Quadrillion tokens with a 1% burn on each transaction through an embedded self-destruct mechanism and a 1% tax for marketing and development. Contract ownership has been renounced.
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 = "0xda1060158f7d593667cce0a15db346bb3ffb3596";
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],
},
};