The OpenEden CompoundingOpenDollar ('USDO') is a rebasing yield-bearing stablecoin issued by OpenEden Digital ('OED'), a Bermuda Monetary Authority ('BMA') licensed digital asset issuer.
Base
eip155:8453
#7c54dc
cUSDO
18
The OpenEden CompoundingOpenDollar ('USDO') is a rebasing yield-bearing stablecoin issued by OpenEden Digital ('OED'), a Bermuda Monetary Authority ('BMA') licensed digital asset issuer. USDO is backed by high-quality, liquid reserves, primarily consisting of U.S. Treasury bills.
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 = "0x83db73ef5192de4b6a4c92bd0141ba1a0dc87c65";
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],
},
};