From bc8995562f7490e707aa837bebe2cb3d3adb2441 Mon Sep 17 00:00:00 2001 From: Alex Forshtat Date: Tue, 22 Oct 2024 16:03:40 +0200 Subject: [PATCH] Add 'nonce' and rephrase --- ERCS/eip-send-tx-conditional.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ERCS/eip-send-tx-conditional.md b/ERCS/eip-send-tx-conditional.md index 3b1fbe9d33..61e1e6a22a 100644 --- a/ERCS/eip-send-tx-conditional.md +++ b/ERCS/eip-send-tx-conditional.md @@ -51,7 +51,10 @@ it is CPU-intensive to find an optimal ordering of transactions. * **knownAccounts**: a mapping of accounts with their expected storage slots' values. * The key of the mapping is account address. * A special key `balance` defines the expected balance of the account. - * A special key `code` to expect specific code: `""` to mark "expected not to have code", and `"0xef01…"` for specific eip-7702 delegation. (Other values are irrelevant, since code other code values can't be modified) + * A special key `code` defines the expected code of the account. + Use `""` to indicate that address is expected not to have any code. + Use `"0xef01…"` to indicate a specific EIP-7702 delegation. + * A special key `nonce` defines the expected nonce of the account. * If the value is **hex string**, it is the known storage root hash of that account. * If the value is an **object**, then it is a mapping where each member is in the format of `"slot": "value"`. The `value` fields are explicit slot values of the account's storage.