Skip to content

Commit

Permalink
Update EIP-7702: make chain id u256 (#9143)
Browse files Browse the repository at this point in the history
7702: make chain id u256
  • Loading branch information
lightclient authored Dec 19, 2024
1 parent 4fe3910 commit 316bfd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EIPS/eip-7702.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The transaction is also considered invalid when any field in an authorization
tuple cannot fit within the following bounds:

```python
assert auth.chain_id < 2**64
assert auth.chain_id < 2**256
assert auth.nonce < 2**64
assert len(auth.address) == 20
assert auth.y_parity < 2**8
Expand Down

0 comments on commit 316bfd2

Please sign in to comment.