A regulated, US dollar-backed stablecoin that distributes yield from its cash and cash equivalent reserves to eligible wallets holding it every day.
Ethereum
eip155:1
#044c74
USDL
18
A regulated, US dollar-backed stablecoin that distributes yield from its cash and cash equivalent reserves to eligible wallets holding it every day. USDL is issued by Paxos International, an affiliate company of Paxos, that is regulated in the Abu Dhabi Global Market (ADGM) by the Financial Services Regulatory Authority (FSRA).
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xbdc7c08592ee4aa51d06c27ee23d5087d65adbcd";
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],
},
};