From 44ea49edc3a4b563032ed83b264cb7e9bec7e96d Mon Sep 17 00:00:00 2001 From: Dror Tirosh Date: Tue, 4 Mar 2025 14:50:55 +0200 Subject: [PATCH] Update p2p-interface: add 7702 auth tuple definition --- p2p-specs/p2p-interface.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/p2p-specs/p2p-interface.md b/p2p-specs/p2p-interface.md index 7dfb713..b12f66f 100644 --- a/p2p-specs/p2p-interface.md +++ b/p2p-specs/p2p-interface.md @@ -660,6 +660,16 @@ class UserOp(Container): max_priority_fee_per_gas: uint256 paymaster_and_data: bytes signature: bytes + eip_7702_auth: Optional[Eip7702Auth] + +class Eip7702Auth(Container): + chain_id: uint256 + address: address + nonce: uint256 + y_parity: uint256 + r: uint256 + s: uint256 + ``` #### `VerifiedUserOperation`