Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions EIPS/eip-7928.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ BALs use RLP encoding following the pattern: `address -> field -> block_access_i
```python
# Type aliases for RLP encoding
Address = bytes20 # 20-byte Ethereum address
StorageKey = bytes32 # 32-byte storage slot key
StorageValue = bytes32 # 32-byte storage value
StorageKey = uint256 # Storage slot key
StorageValue = uint256 # Storage value
Bytecode = bytes # Variable-length contract bytecode
BlockAccessIndex = uint16 # Block access index (0 for pre-execution, 1..n for transactions, n+1 for post-execution)
Balance = uint256 # Post-transaction balance in wei
Expand Down