Back to HomeDeployer 0x0D82Cd...8e36A1 Deployment Block 81,753 Deployment Date Aug 13, 2015, 11:06 PM Code Size 172.0 B Gas at Deploy 61,449
Deployed August 13, 2015 (10 years ago)Block 81,753
An early ETH forwarder contract that sends received value to a specified address.
Key Facts
Transactions by Year
20151
Deployment Transaction: 0x411419deecb9b5c7...d5ef0ed9caaf6e19
Description
A small Solidity contract with a single forward(address) function that sends msg.value to the supplied recipient. It captures one of the earliest simple forwarding patterns used to test ETH transfer behavior in contracts.
Source Verified
SolidityExact bytecode match(172 bytes)
Compiler: soljson
Merged into awesome-ethereum-proofs and backfilled from proof repo.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Detected Type: Unknown
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Block span: 0 — 1,149,999
July 30, 2015 — March 14, 2016
Bytecode Overview
Opcodes172
Unique Opcodes42
Jump Instructions6
Storage Operations1
Verified Source Available
Source verified through compiler archaeology and exact bytecode matching.
View Verification ProofShow source code (Solidity)
contract Forward {
function forward(address account) returns (bool) {
return account.send(msg.value);
}
}