Ethereum Protocol Fellowship (EPF) Cohort 7 — Applications open until May 13
All EIPs
EIP-7708 Draft EL

ETH transfers and burns emit a log

Authors: , , , , ,

Canonical data: /latest/eips/7708.json

All ETH transfers and burns emit a log

Timeline

Glamsterdam
Carl Beekhuizen
Scheduled for Inclusion
May 7, 2026 · ACDE #236
Considered for Inclusion
Dec 4, 2025 · ACDE #225
Proposed
EIP Created May 17, 2024

Key Benefits

  • Unified, queryable signal for ETH transfers across EOAs and contracts.
  • Reduces reliance on tracing for ETH balance change detection.
  • Improves deposit handling for smart contract wallet senders.
  • Simplifies indexing and analytics for ETH movement.

Trade-offs & Considerations

No trade-offs documented yet.

Stakeholder Impact

End Users

Deposits and withdrawals are detected more reliably across apps and exchanges; no change to how users send or receive ETH.

Application Developers

Can subscribe to a standard ETH transfer log instead of tracing; requires small updates to indexers and business logic.

Wallet Developers

Optionally watch a canonical event for ETH transfers to improve UX; otherwise existing send/receive flows remain unchanged.

Tooling / Infrastructure

Explorers and data indexers must parse and surface the new log; moderate engineering to integrate, test, and backfill if desired.

Layer 2s

Rollups mirroring L1 EVM semantics may add the same log for consistency; others have no direct requirements.

Stakers & Node Operators

More log entries per block; execution node receipts grow slightly, increasing storage and bandwidth requirements for some RPC setups.

CL Client Developers

No consensus-layer changes anticipated; minimal or no code modifications beyond recognizing updated receipt sizes from execution payloads.

EL Client Developers

Implement emitting a log on value-transferring CALLs, transactions, and SELFDESTRUCT; update EVM and receipt construction; add tests.