Storage Layout
DISCLAIMER // NFA // DYOR
This analysis is based on observations of the contract behavior. We are not smart contract security experts. This document aims to explain what the contract appears to do based on the code. It should not be considered a comprehensive security audit or financial advice. Always verify critical information independently and consult with blockchain security professionals for important decisions.
⊙ generated by robots | curated by humans
| METADATA | |
|---|---|
| Contract Address | 0x4320b7C74995E6B7BA8A5918CfA9BB3E39F5C236 (etherscan) |
| Network | Ethereum Mainnet |
| Analysis Date | 2026-02-03 |
Variables
| Slot | Variable Name | Type | Current Value | Purpose |
|---|---|---|---|---|
| 0 | owner | address | 0x5D81236693E7D92bF61614Fb3fC4c6Fb79D36635 |
Contract owner with full administrative control |
Diagrams
graph TB
subgraph Storage["Contract Storage"]
S0["Slot 0: owner<br/>address<br/>0x5D81236693E7D92bF61614Fb3fC4c6Fb79D36635"]
end
subgraph Functions["Functions Using Storage"]
F1["owner() → read"]
F2["transferOwnership() → write"]
F3["batchSend() → read"]
F4["sweepToken() → read"]
F5["sweepTokens() → read"]
F6["sweepETH() → read"]
end
S0 -.->|"SLOAD"| F1
F2 -->|"SSTORE"| S0
S0 -.->|"SLOAD (auth check)"| F3
S0 -.->|"SLOAD (auth check)"| F4
S0 -.->|"SLOAD (auth check)"| F5
S0 -.->|"SLOAD (auth check)"| F6
style S0 fill:#ffe1e1
style F2 fill:#fff4e1