DOSE is an ERC-20 utility token that is designed to be the currency of purchase, utility, and action in supported Play-to-Reward gamified fitness games within the OliveX ecosystem.
Ethereum Sepolia
eip155:11155111
#fc7c14
DOSE
18
DOSE is an ERC-20 utility token that is designed to be the currency of purchase, utility, and action in supported Play-to-Reward gamified fitness games within the OliveX ecosystem.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "11155111";
const address = "0x466027eea4c47dd172a3f0bdd5f9d74b230bde10";
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],
},
};