Ritestream is the world's gateway into Web3.
Base
eip155:8453
#040404
RITE
18
Ritestream is the world's gateway into Web3. Everyone talks about bringing millions into Web3. Few can. We will. Our ecosystem is a natural funnel with 3x themes of entertain, inform and invest. It gives us unrivalled virality and exposure, thereby creating major demand for the $RITE token through its strong utility and sustainable buyback.
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 = "0x0808bf94d57c905f1236212654268ef82e1e594e";
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],
},
};