MistCoin is the first ERC20 token deployed in Ethereum Mainnet.
Base
eip155:8453
#040405
WMC
2
MistCoin is the first ERC20 token deployed in Ethereum Mainnet. It was launched by Fabian Vogelsteller and Alex Van de Sande when they were testing tokens implementation in Ethereum Foundation Mist Wallet.
Few days after MistCoin launch, Fabian and Vitalik Buterin released the widely adopted ERC20 standard.
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 = "0x3d2eba645c44bbd32a34b7c017667711eb5b173c";
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],
},
};