From a15a2ea3a3b2de1d357c0188a7049e59b9fc6f51 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 17 Nov 2025 15:34:41 +0100 Subject: [PATCH] Reorder calls struct to match type hash --- src/libs/LibCalls.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/LibCalls.sol b/src/libs/LibCalls.sol index 9bc79df..2cdce4f 100644 --- a/src/libs/LibCalls.sol +++ b/src/libs/LibCalls.sol @@ -5,8 +5,8 @@ import { ERC7821 } from "solady/src/accounts/ERC7821.sol"; import { EfficientHashLib } from "solady/src/utils/EfficientHashLib.sol"; struct Calls { - bytes32 mode; uint256 nonce; + bytes32 mode; ERC7821.Call[] calls; }