Skip to content
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

Fix mention of removed concept of a transaction 'subtype' #25

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RIPS/rip-7711.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ Instead, we propose to introduce an explicit "counter" transaction type.
The payload should be interpreted as:

```
0x04 || 0x01 || rlp([chainId, transactionCount])
BUNDLE_HEADER_TYPE || rlp([chainId, transactionCount])
```

Header transactions have a unique hash calculated as follows:

```
keccak256(AA_TX_TYPE || 0x01 || rlp(chainId, transactionCount, blockNumber, txIndex))
keccak256(BUNDLE_HEADER_TYPE || rlp(chainId, transactionCount, blockNumber, txIndex))
```

The `transactionCount` is required to be strictly larger than `1`.
Expand Down