Back to Home

EFSubMultisig

governance
0x209711382eae...c5afa9b23d25
FrontierContract #170Exact Bytecode MatchEdit this contract
Deployed August 12, 2015 (10 years ago)Block 72,142

An early EF multi-party signaling contract (Serpent, Aug 2015). Three developer keys co-sign to emit on-chain events. No ETH, no external calls.

Frontier EraVerified Source

Historical Significance

The first preserved contract deployed by the Ethereum Foundation EF 1 developer wallet, and an early example of multi-party coordination on Ethereum. The design, likely inspired by the multisig concept but stripped to its simplest form, captures how the core team was experimenting with on-chain governance primitives in the days after Frontier launch. A twin contract with identical bytecode was deployed 23 minutes earlier at 0x2194b1734ee0f67440884da49952a45b34ba832d, likely a test run. The same EF 1 wallet later deployed the Gamble contract at block 235,543, which has also been bytecode-verified.

Context

Ethereum Frontier launched July 30, 2015. In the first two weeks, core developers deployed foundational infrastructure including wallets, registries, and coordination tools. The EF 1 address was one of several EF developer keys active in this period. This contract appears to have been deployed as part of an initial operational setup. The three signer slots hold addresses with no other on-chain transaction history, likely cold or hardware wallet addresses held by different EF team members whose identities have not been publicly confirmed. On-chain storage confirms the three signers: 0x23a1bada327be1da636cf6c31f71349e3ea0ba00, 0x288bbeb76a509947f3ea8c56e9b86d81f3b41897, and 0x5ed8cee6b63b1c6afce3ad7c92f4fd7e1b8fad9f. The contract was used only three times, all on its deployment day.

Key Facts
Deployer
Ethereum Foundation(0x5abfec...6356f9)
Deployment Block
72,142
Deployment Date
Aug 12, 2015, 02:52 AM
Code Size
834.0 B
Gas at Deploy
301,223
Transactions by Year
20152

Description

A 3-of-3 on-chain voting contract deployed by the Ethereum Foundation EF 1 wallet on August 12, 2015, just 13 days after Frontier launched. Three signer addresses are hardcoded in the constructor. Any two of three signers can call signMotion to vote on a proposal. Once majority is reached, if the target address is zero, the contract emits a log event with the data payload. Despite being labeled "EFSubMultisig" on Etherscan, this is not a multisig in the standard sense. It holds no funds, cannot transfer ETH, and cannot call other contracts. It is a coordinated signaling mechanism: three EF developer keys agreeing on a message to emit on-chain.

Source Verified

SerpentExact bytecode match(834 bytes)
Compiler: ethereu

First 738 bytes of Serpent-compiled output match the 738-byte on-chain runtime exactly. The compiled output produces 742 bytes total; the final 4 bytes (5b 60 00 f3 = JUMPDEST PUSH1 0x00 RETURN) are a trailing return stub emitted by newer Serpent but absent in the deployer version. Identical bytecode also deployed at 0x2194b1734ee0f67440884da49952a45b34ba832d (block 72,119, 23 minutes earlier). Function selectors: 0x403147b6 = createMotion(addr,data:bytes32), 0xa42c4de7 = signMotion(slot,proposal_id). Storage layout: slots 0-2 = signers, 0x0100 = num_signers (3), 0x0101 = next_proposal_id, sha3([2,id,0-3]) = proposal fields.

Historian Categories

MultisigGovernance
Heuristic Analysis

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

Detected Type: governance

Bytecode Overview

Opcodes834
Unique Opcodes101
Jump Instructions30
Storage Operations22

External Links