Ethereum
eip155:1
#1c2625
GENRE
4
$GENRE is the Leaving Records and GenreDAO community token. $GENRE will serve as an important part of our evolving cooperative label model with the intention to activate our artist & fan community equitably. $GENRE can be utilized in a multitude of ways across our community: access to token-gated experiences, currency for purchasing NFTs, and a governance token for the GenreDAO are some of the use cases for our token as new utility opportunities continue to emerge.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xa392c35ec6900346adec720abe50413f48ee5143";
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],
},
};