The GOAT (Greatest of All Tokens) is a novel meme token built on the Bitcoin blockchain using the BRC-20 token standard.
Base
eip155:8453
#deaa31
RGOAT
8
The GOAT (Greatest of All Tokens) is a novel meme token built on the Bitcoin blockchain using the BRC-20 token standard. Inspired by the legendary status of Bitcoin (BTC) as the original and most influential cryptocurrency, GOAT aims to capture the essence of BTC’s dominance while adding a playful twist. In this white paper, we delve into the concept, mechanics, and vision behind GOAT.
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 = "0xf0268c5f9aa95baf5c25d646aabb900ac12f0800";
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],
},
};