Back to Home

FirstCoin

Token
0x8374f5cc22ed...dd4b7946609a
FrontierSource Verified
Deployed August 7, 2015 (10 years ago)Block 49,853

An early ERC-20-like token deployed in Ethereum's first week, built directly from the example in the official Ethereum Frontier Guide documentation.

Key Facts

Deployer
Linagee(0x3d0768...116c2d)
Deployment Block
49,853
Deployment Date
Aug 7, 2015, 08:42 PM
Code Size
596.0 B
Transactions by Year
20222
202412
20257

Description

The FirstCoin contract introduced a basic but important pattern: a ledger of balances associated with addresses and the ability for those balances to be transferred between participants. The implementation closely resembles the early token interface examples published in Ethereum documentation at the time, suggesting it was derived from or directly inspired by the standard token APIs shared by the Ethereum Foundation. Although minimal and unbranded, the contract established the foundational mechanics that later became formalized in token standards.

The FirstCoin contract introduced a basic but important pattern: a ledger of balances associated with addresses and the ability for those balances to be transferred between participants. The implementation closely resembles the early token interface examples published in Ethereum documentation at the time, suggesting it was derived from or directly inspired by the standard token APIs shared by the Ethereum Foundation. Although minimal and unbranded, the contract established the foundational mechanics that later became formalized in token standards.

FirstCoin is one of the earliest token contracts deployed on Ethereum mainnet, launched at block 49,853 on August 7, 2015 — just 8 days after the Ethereum genesis block. The contract was written by creator address 0x3d0768da, who deployed it alongside several other experimental contracts in Ethereum's opening days.

The source code is a near-exact copy of the "Coin contract" example from the official Ethereum Frontier Guide, the primary documentation for Ethereum at launch. The original example contract was named token; this deployment renames it to FirstCoin and hardcodes the supply at 1,000,000 rather than accepting it as a constructor parameter.

The contract implements a simple token: a mapping from addresses to balances, a sendCoin function for transfers, and a CoinTransfer event. It predates ERC-20 and has no approve, allowance, or transferFrom functions. There is no supply cap enforcement or overflow protection — both limitations typical of Solidity contracts written before best practices emerged.

A second deployment of the same contract by the same creator (0x3b4446acd9547d0183811f0e7c31b63706295f52) followed 11 blocks later at block 49,864.

Historian Categories

Token

Heuristic Analysis

The following characteristics were detected through bytecode analysis and may not be accurate.

Detected Type: Token
Has ERC-20-like patterns

Frontier Era

The initial release of Ethereum. A bare-bones implementation for technical users.

Block span: 01,149,999
July 30, 2015March 14, 2016

Bytecode Overview

Opcodes596
Unique Opcodes81
Jump Instructions14
Storage Operations10

Verified Source Available

This contract has verified source code on Etherscan.

View Source Code

External Links