Back to Home

NameRegistry

Token
0xa1a111bc074c...d51c91b8af00
FrontierContract #29Exact Bytecode MatchEdit this contract
Deployed August 8, 2015 (10 years ago)Block 52,426

Fixed-fee name registry from Day 9 of Ethereum (Aug 8, 2015). Reserve names for 69 ETH, resolve addresses. A precursor to ENS.

Frontier EraVerified Source

Historical Significance

One of the earliest name registry implementations on Ethereum mainnet, deployed on Day 9. Demonstrates the community's immediate interest in decentralized naming systems. A direct precursor to the FixedFeeRegistrar in ethereum/dapp-bin and ultimately to ENS (EIP-137, deployed May 2017). Holds 314+ ETH from name reservations.

Context

Deployed during Ethereum Frontier, August 8, 2015. The Ethereum Foundation had published name registry examples in the Frontier Guide, and multiple developers raced to deploy registries in the first days. ENS would not be proposed until early 2016 (EIP-137), with mainnet deployment in May 2017. Gas was essentially free, encouraging experimentation.

Key Facts
Deployment Block
52,426
Deployment Date
Aug 8, 2015, 08:08 AM
Code Size
698.0 B
Gas at Deploy
202,247
Transactions by Year
201533
201615
201712
20195
20208
202210
20232
20255
20261

Description

An early fixed-fee name registry deployed on August 8, 2015 (block 52,426), just 9 days after Ethereum's mainnet launch. This contract implements a straightforward name reservation system: anyone can reserve an unclaimed name by sending at least 69 ETH, then associate an Ethereum address with that name for on-chain resolution.

The contract features six functions: reserve (claim a name for 69 ETH), disown (release a name and refund the fee to a specified address), transfer (change name ownership), setAddr (set the address a name resolves to), plus read-only addr and owner lookups. All mutations emit a Changed event.

This is a simplified precursor to the FixedFeeRegistrar later published by Gavin Wood in ethereum/dapp-bin. The dapp-bin version evolved to use string parameters instead of bytes32, a 4-field struct (adding subRegistrar and content fields), contract inheritance, and a minimum name length check. This on-chain version uses a leaner 2-field struct (just addr and owner) with bytes32 name parameters.

The contract currently holds over 314 ETH from name reservations, making it one of the highest-balance unverified frontier contracts. Multiple developers were independently deploying registry contracts in Ethereum's first days, exploring what decentralized naming should look like before ENS was proposed in early 2016.

Source Verified

Exact bytecode match(698 bytes)

Exact byte-for-byte match on both creation (698 bytes) and runtime (679 bytes) bytecode. Compiled with soljson v0.1.1+commit.6ff4cd6, optimizer ON. Key compiler archaeology findings: function declaration order affects optimizer output (correct order: reserve, disown, owner, transfer, addr, setAddr), and operand order in conditions matters (0 == owner, not owner == 0).

Heuristic Analysis

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

Detected Type: Token

Bytecode Overview

Opcodes698
Unique Opcodes100
Jump Instructions41
Storage Operations21

External Links