Byte ($BYTE) is a novel ERC meme token that creatively intertwines the worlds of cryptocurrency and popular culture.
Arbitrum One
eip155:42161
#292822
BYTE
9
Byte ($BYTE) is a novel ERC meme token that creatively intertwines the worlds of cryptocurrency and popular culture. Inspired by Elon Musk's announcement of naming his dog 'Byte' in reference to his Grok AI project.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0x847503fbf003ce8b005546aa3c03b80b7c2f9771";
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],
},
};