XAUt0 is the omnichain version of Tether Gold, with each token representing one troy ounce of real, physical gold stored in a Swiss vault and verified under ISAE 3000 standards.
Monad
eip155:143
#d39c04
XAUt0
6
XAUt0 is the omnichain version of Tether Gold, with each token representing one troy ounce of real, physical gold stored in a Swiss vault and verified under ISAE 3000 standards. And unlike most other gold investments, XAUt0 gives you full digital mobility and physical redeemability. You can hold it, trade it, lend it, or move it across chains while your asset remains physically backed and digitally composable. Beyond tokenized gold, XAUt0 is programmable, liquid gold built for the digital economy.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "143";
const address = "0x01bff41798a0bcf287b996046ca68b395dbc1071";
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],
},
};