This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): add primer on all transaction types (paradigmxyz#3897)
- Loading branch information
1 parent
73fbd1c
commit 62c668f
Showing
4 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Transaction types | ||
|
||
Over time, the Ethereum network has undergone various upgrades and improvements to enhance transaction efficiency, security, and user experience. Three significant transaction types that have evolved are: | ||
|
||
- Legacy Transactions, | ||
- EIP-2930 Transactions, | ||
- EIP-1559 Transactions. | ||
|
||
Each of these transaction types brings unique features and improvements to the Ethereum network. | ||
|
||
## Legacy Transactions | ||
|
||
Legacy Transactions (type `0x0`), the traditional Ethereum transactions in use since the network's inception, include the following parameters: | ||
- `nonce`, | ||
- `gasPrice`, | ||
- `gasLimit`, | ||
- `to`, | ||
- `value`, | ||
- `data`, | ||
- `v`, | ||
- `r`, | ||
- `s`. | ||
|
||
These transactions do not utilize access lists, which specify the addresses and storage keys to be accessed, nor do they incorporate EIP-1559 fee market changes. | ||
|
||
## EIP-2930 Transactions | ||
|
||
Introduced in [EIP-2930](https://eips.ethereum.org/EIPS/eip-2930), transactions with type `0x1` incorporate an `accessList` parameter alongside legacy parameters. This `accessList` specifies an array of addresses and storage keys that the transaction plans to access, enabling gas savings on cross-contract calls by pre-declaring the accessed contract and storage slots. They do not include EIP-1559 fee market changes. | ||
|
||
## EIP-1559 Transactions | ||
|
||
[EIP-1559](https://eips.ethereum.org/EIPS/eip-1559) transactions (type `0x2`) were introduced in Ethereum's London fork to address network congestion and transaction fee overpricing caused by the historical fee market. Unlike traditional transactions, EIP-1559 transactions don't specify a gas price (`gasPrice`). Instead, they use an in-protocol, dynamically changing base fee per gas, adjusted at each block to manage network congestion. | ||
|
||
Alongside the `accessList` parameter and legacy parameters (except `gasPrice`), EIP-1559 transactions include: | ||
- `maxPriorityFeePerGas`, specifying the maximum fee above the base fee the sender is willing to pay, | ||
- `maxFeePerGas`, setting the maximum total fee the sender is willing to pay. | ||
|
||
The base fee is burned, while the priority fee is paid to the miner who includes the transaction, incentivizing miners to include transactions with higher priority fees per gas. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters