Reserve is a free, permissionless platform to build, deploy and govern asset-backed currencies referred to as RTokens.
Base
eip155:8453
#0454fc
bsdETH
18
Reserve is a free, permissionless platform to build, deploy and govern asset-backed currencies referred to as RTokens. RTokens are always 1:1 asset-backed, allowing for permissionless minting and redeeming. Based ETH is an RToken that maintains an Ethereum-aligned Liquid Staking Token basket.
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 = "0xcb327b99ff831bf8223cced12b1338ff3aa322ff";
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],
},
};