From df5fd2479cf1332c36da90a7552106f88fe04172 Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Fri, 19 Jul 2024 17:31:43 +0200 Subject: [PATCH] Update ERC-7579: Fix typo in ERC-7579 Merged by EIP-Bot. --- ERCS/erc-7579.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ERCS/erc-7579.md b/ERCS/erc-7579.md index f7f997ee35..199130bf71 100644 --- a/ERCS/erc-7579.md +++ b/ERCS/erc-7579.md @@ -111,7 +111,7 @@ The account MUST encode the execution data the following ways: - For single calls, the `target`, `value` and `callData` are packed in this order (ie `abi.encodePacked` in Solidity). - For delegatecalls, the `target` and `callData` are packed in this order (ie `abi.encodePacked` in Solidity). -- For batch calls, the `targets`, `values` and `callDatas` are put into an array of `Exeuction` structs that includes these fields in this order (ie `Execution(address target, uint256 value, bytes memory callData)`). Then, this array is encoded with padding (ie `abi.encode` in Solidity). +- For batch calls, the `targets`, `values` and `callDatas` are put into an array of `Execution` structs that includes these fields in this order (ie `Execution(address target, uint256 value, bytes memory callData)`). Then, this array is encoded with padding (ie `abi.encode` in Solidity). #### Account configurations