wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL).
Polygon
eip155:137
#e7f408
wBRL
18
wBRL is a fully collateralized stablecoin pegged 1:1 to the Brazilian Real (BRL). Issued and governed by a Ripio subsidiary, it brings BRL on-chain so users can transact, save, and build on decentralized networks in their local currency.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0xd76f5faf6888e24d9f04bf92a0c8b921fe4390e0";
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],
},
};