Trackgood is a cutting-edge supply chain tracking and transparency solution built on the Base L2 on Ethereum.
Base
eip155:8453
#3caca4
TRAI
8
Trackgood is a cutting-edge supply chain tracking and transparency solution built on the Base L2 on Ethereum. Trackgood integrates AI and token incentives to revolutionise the consumer experience of product authenticity and verification. This is done via Traicy, the world’s most comprehensive ESG-focused LLM and AI agent, designed to effectively communicate accurate sustainability and ESG data.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xdd32659b1e7a6a6b3c6e96cd8a4c936bcfea0607";
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],
},
};