Wild Goat Coin (WGC) is a fixed-supply, omnichain memecoin with its primary presence on HyperEVM.
Base
eip155:8453
#d4b97f
WGC
6
Wild Goat Coin (WGC) is a fixed-supply, omnichain memecoin with its primary presence on HyperEVM. It pairs Hyperliquid’s HYPE token and gold-backed stablecoins such as Tether’s XAUT0 as core liquidity, positioning itself as a ‘GOLD × HYPE Memecoin’.
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 = "0x3d63825b0d8669307366e6c8202f656b9e91d368";
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],
},
};