Back to Home

Forwarder

Unclassified
0xb11660e47d17...51fda6cad36e
ByzantiumSource VerifiedEdit this contract
Deployed March 30, 2018 (8 years ago)Block 5,348,853

Deposit address that pushes ether onward the moment it arrives and can be told separately to sweep any ERC-20 balance it has collected.

Byzantium EraVerified Source

Historical Significance

The single shared event is the design decision worth pointing at. One log shape covers both ether and tokens, with zero standing in for ether, which means an exchange watching this fleet subscribes to one topic and gets every deposit of every kind. That convention, zero address meaning native ether, later became near universal in DeFi accounting.

Key Facts
Deployment Block
5,348,853
Deployment Date
Mar 30, 2018, 12:22 PM
Code Size
1.1 KB
Gas at Deploy
376,230
Transactions by Year
201880
20194
20221

Description

One immutable address is stored at construction. The payable fallback sends the whole incoming value on to it and logs the move; if the send fails the assert consumes the remaining gas, so a payment either completes in the same transaction or the sender loses the attempt outright.

Tokens cannot trigger a fallback, so they pile up in the contract instead. forwardTokens is the manual counterpart: it reads the contract's balance of the given token, transfers all of it to the destination, and logs the move. Anyone may call it, which is safe here because the destination is fixed and the only possible outcome is moving funds to where they were always going.

Both paths emit the same event, with the token address set to zero for ether. Three of its four fields are indexed, so an operator can filter by destination, by source contract, or by token without reading any contract storage.

Source Verified

Solidityeh_crack_source_verified
Compiler: v0.4.18
Heuristic Analysis

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

Detected Type: Unclassified

Bytecode Overview

Opcodes1,135
Unique Opcodes122
Jump Instructions32
Storage Operations9

External Links

Related contracts