Back to Home

token

Token
0x3c401b518252...9699e7da1634
FrontierContract #34Source VerifiedEdit this contract
Deployed August 8, 2015 (10 years ago)Block 53,051

Early tutorial-derived coin contract compiled with Solidity v0.1.1, deployed 9 days after Ethereum Frontier launch.

Frontier EraVerified Source

Historical Significance

Among the earliest smart contracts deployed on Ethereum mainnet. The repeated deployment pattern across multiple addresses provides evidence of early developer experimentation during the Frontier era. Compiled with Solidity v0.1.1, it preserves an artifact of the very first Solidity compiler releases. The code represents the canonical tutorial coin pattern that would later evolve into ERC-20 tokens.

Context

Deployed during the Ethereum Frontier era (July 30 – September 7, 2015), when the network was brand-new and smart contract development was experimental. The Ethereum Foundation had published coin and greeter tutorials in the Frontier Guide to onboard developers. Solidity was at version 0.1.x with no formal token standards — ERC-20 would not be proposed until November 2015 (EIP-20). Gas prices and network activity were minimal, making contract deployment virtually free.

Key Facts
Deployment Block
53,051
Deployment Date
Aug 8, 2015, 11:01 AM
Code Size
634.0 B
Gas at Deploy
177,016
Transactions by Year
20241

Description

FirstCoin is one of the earliest smart contracts deployed on the Ethereum mainnet, appearing on August 8, 2015 — just 9 days after the Frontier launch on July 30, 2015. The contract implements a minimal coin with functions for checking balances (coinBalanceOf) and transferring coins (sendCoin), plus a CoinTransfer event.

The code was compiled with Solidity v0.1.1, one of the first production Solidity compiler versions. The constructor hardcodes a supply of 1,000,000 coins assigned to the deployer (ignoring the supply constructor parameter). This simple pattern — a mapping of balances, a transfer function with insufficient-balance check, and an event — closely mirrors the coin examples from the Ethereum Frontier Guide and early Solidity documentation.

The deployer (0x4b0C6F0297CEe4B551B6fab3277067B64B238990) deployed five instances of this same contract within hours on August 8, 2015, a pattern consistent with tutorial experimentation during the Frontier era. At least four additional FirstCoin instances were deployed by other addresses between August 8–11, 2015, totaling nine known deployments — all sharing identical bytecode.

The contract has seen minimal activity since deployment: a single external transaction in November 2024 (a sendCoin call) represents the only recorded interaction beyond the original deployment.

Source Verified

Etherscan verified
Heuristic Analysis

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

Detected Type: Token
Has ERC-20-like patterns

Bytecode Overview

Opcodes634
Unique Opcodes83
Jump Instructions14
Storage Operations9

External Links