RING is the governance token of RingDAO.
Optimism
eip155:10
#999ba5
xRING
18
RING is the governance token of RingDAO. It's widely used in RingDAO projects, such as staking for XAPI, gas for the Darwinia Network, and payments for Msgport. We use RING to capture value in our decentralized system, build decentralized governance, and unite all RING holders to collectively advance the entire ecosystem.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "10";
const address = "0x5ac3f9edb4896db1edc0ef9d91421e740083e6e8";
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],
},
};