Launched in 2021, DOGAMÍ is an entertainment company that develops web3 games centered around the Dogamí, mystical 3D dog avatars imbued with spiritual powers.
Polygon
eip155:137
#522f82
DOGA
5
Launched in 2021, DOGAMÍ is an entertainment company that develops web3 games centered around the Dogamí, mystical 3D dog avatars imbued with spiritual powers. DOGAMÍ users can experience different interactive experiences in an immersive universe. $DOGA is the primary currency of the DOGAMÍ universe, a multichain-utility token limited to 1B tokens with multiple use cases.
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 = "0x2f3e306d9f02ee8e8850f9040404918d0b345207";
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],
},
};