Back to Home

Depositor

Unclassified
0x0012546681df...c10193ced9be
ByzantiumSource VerifiedEdit this contract

Bytecode verified via sibling

This contract shares identical runtime bytecode with a verified contract (0x30d90243...) which has been verified through compiler archaeology.

Deployed December 21, 2018 (7 years ago)Block 6,925,165

Deposit forwarder that requires a minimum payment of 0.005 ether, tracks the running total above that floor, and passes the full payment to an admin.

Byzantium Era

Historical Significance

The minimum exists to make dust deposits uneconomic, and the counter records how much was received above that line rather than in total. Reading the two together tells you how many deposits arrived as well as their size, since the gap between the contract's history and its counter is the floor multiplied by the number of payments.

Key Facts
Deployment Block
6,925,165
Deployment Date
Dec 21, 2018, 06:36 AM
Code Size
441.0 B
Gas at Deploy
199,899

Description

The payable fallback rejects anything below 0.005 ether. It then adds the payment to a running total and subtracts the floor from it, so the stored counter accumulates only the amount above the minimum across all deposits. Finally it transfers the entire received value, floor included, to the admin address.

Both the admin address and the running total are readable, the total through an accessor named deposit. Nothing else exists; there is no owner path and no way to change the admin.

Heuristic Analysis

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

Detected Type: Unclassified

Bytecode Overview

Opcodes441
Unique Opcodes89
Jump Instructions19
Storage Operations5

External Links

Related contracts