iUSD, in its full name, iZUMi Bond USD, is 100% backed by iZUMi’s collaterals and future revenues.
Merlin
eip155:4200
#e9e9f0
IUSD
18
iUSD, in its full name, iZUMi Bond USD, is 100% backed by iZUMi’s collaterals and future revenues. iUSD is 1:1 pegged to USD, issued by iZUMi Finance and sold to private investors as a bond to raise funds for future development of iZUMi’s ecosystem.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "4200";
const address = "0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d";
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],
},
};