Back to Home

Forward

Unknown
0x54302cdad494...61e5b56faf4a
FrontierContract #235Exact Bytecode MatchEdit this contract
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

Deployment Block
81,753
Deployment Date
Aug 13, 2015, 11:06 PM
Code Size
172.0 B
Gas at Deploy
61,449
Transactions by Year
20151

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: 01,149,999
July 30, 2015March 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 Proof
Show source code (Solidity)
contract Forward {
    function forward(address account) returns (bool) {
        return account.send(msg.value);
    }
}

External Links