ShibaPoCONK—better known as CONK—is the memecoin that shook the Fantom Opera network in early 2023.
Sonic
eip155:146
#282524
CONK
18
ShibaPoCONK—better known as CONK—is the memecoin that shook the Fantom Opera network in early 2023. Born from just 1 FTM in a pool during its Liquidity Generation Event, CONK ignited a wildfire of passion and loyalty among its die-hard community of believers.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "146";
const address = "0x63a522f6e7d5b96f7aebb74d2648545e9e14078d";
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],
},
};