-
Notifications
You must be signed in to change notification settings - Fork 647
Update ERC-7796: Update erc-7796.md #1032
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
✅ All reviewers have approved. |
@@ -65,13 +65,16 @@ it is CPU-intensive to find an optimal ordering of transactions. | |||
* **timestampMax**: maximum block timestamp for inclusion. | |||
* **paysCoinbase**: the caller declares the minimum amount paid to the `coinbase` by this transaction, | |||
including gas fees and direct payment. | |||
* All numeric values should use hex string notation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* All numeric values should use hex string notation. | |
* All numeric values MUST use hex string notation. |
@@ -50,7 +50,7 @@ it is CPU-intensive to find an optimal ordering of transactions. | |||
* The `options` parameter may include any of the following optional members: | |||
* **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 `balance` defines the expected balance of the account. The balance is expected to be at least this value. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* A special key `balance` defines the expected balance of the account. The balance is expected to be at least this value. | |
* A special key `balance` defines the expected balance of the account. The balance MUST be at least this value. |
@@ -105,10 +108,11 @@ the caller MUST NOT assume that a transaction will be included in a block and sh | |||
{ | |||
"blockNumberMax": 12345, | |||
"knownAccounts": { | |||
"0xadd1": "0xfedc....", | |||
"0xadd1": "0xfedc....", // |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"0xadd1": "0xfedc....", // | |
"0xadd1": "0xfedc....", |
No description provided.