0xBitcoin (0xBTC) is a mineable ERC20 token that operates on the Ethereum platform.
Ethereum
eip155:1
#f7901c
0xBTC
8
0xBitcoin (0xBTC) is a mineable ERC20 token that operates on the Ethereum platform. Users are able to generate 0xBitcoin's through the process of mining. 0xBitcoin aims to be the main cryptocurrency and store of value on the Ethereum platform.
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 = "0xb6ed7644c69416d67b522e20bc294a9a9b405b31";
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],
},
};