According to the one-pager, BONK is the first dog-themed coin on Solana 'for the people, by the people' with 50% of the total supply of the cryptocurrency airdropped to the Solana community.
Ethereum
eip155:1
#ed950b
Bonk
5
According to the one-pager, BONK is the first dog-themed coin on Solana 'for the people, by the people' with 50% of the total supply of the cryptocurrency airdropped to the Solana community. BONK is similar to Shiba Inu (SHIB) and Dogecoin (DOGE) memecoins, it was launched on December 25, 2022, and led to an increase in the price of the SOL token (a rise of 34% in 48 hours).
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 = "0x1151cb3d861920e07a38e03eead12c32178567f6";
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],
},
};