mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: added 4844 transaction in documentation (#8521)
This commit is contained in:
@ -4,7 +4,8 @@ Over time, the Ethereum network has undergone various upgrades and improvements
|
||||
|
||||
- Legacy Transactions,
|
||||
- EIP-2930 Transactions,
|
||||
- EIP-1559 Transactions.
|
||||
- EIP-1559 Transactions,
|
||||
- EIP-4844 Transactions
|
||||
|
||||
Each of these transaction types brings unique features and improvements to the Ethereum network.
|
||||
|
||||
@ -36,3 +37,13 @@ Alongside the `accessList` parameter and legacy parameters (except `gasPrice`),
|
||||
- `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.
|
||||
|
||||
## EIP-4844 Transaction
|
||||
|
||||
[EIP-4844](https://eips.ethereum.org/EIPS/eip-4844) transactions (type `0x3`) was introduced in Ethereum's Dencun fork. This provides a temporary but significant scaling relief for rollups by allowing them to initially scale to 0.375 MB per slot, with a separate fee market allowing fees to be very low while usage of this system is limited.
|
||||
|
||||
Alongside the legacy parameters & parameters from EIP-1559, the EIP-4844 transactions include:
|
||||
- `max_fee_per_blob_gas`, The maximum total fee per gas the sender is willing to pay for blob gas in wei
|
||||
- `blob_versioned_hashes`, List of versioned blob hashes associated with the transaction's EIP-4844 data blobs.
|
||||
|
||||
The actual blob fee is deducted from the sender balance before transaction execution and burned, and is not refunded in case of transaction failure.
|
||||
Reference in New Issue
Block a user