CTX is an ERC-20 utility and governance token with various use cases within the Cryptex Finance ecosystem.
Unichain
eip155:130
#1d1c3e
CTX
18
CTX is an ERC-20 utility and governance token with various use cases within the Cryptex Finance ecosystem. CTX token holders can vote on upgrades and management of the Cryptex treasury, create proposals and vote on said proposals, such as continued incentives for product development and other solutions to advance the Cryptex decentralized autonomous organization (DAO).
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "130";
const address = "0x36fa435f6def83cbb7a0706d035c9ea062fcb619";
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],
},
};