Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
Update genesis file for Spark testnet to include configuration for EIP-1559 support.
The transition block is
14707000
.Types of changes
What types of changes does your code introduce?
Testing
Requires testing
If yes, did you write tests?
Notes on testing
The implementation of this update was initially conducted on DevNet with the Nethermind client version 1.25.3, where it proceeded smoothly without any complications. Following the upgrade, the network was capable of processing both type 0 and type 2 transactions effectively.
Documentation
eip1559Transition: This parameter specifies the block number at which the EIP-1559 upgrade becomes active.
eip1559BaseFeeMaxChangeDenominator: This parameter controls the maximum rate at which the base fee can change from block to block. The 0x8 value means that the maximum change in the base fee from one block to the next cannot exceed 12.5% (since 1/8 is 0.125 or 12.5%). This rate limits the base fee's volatility.
eip1559ElasticityMultiplier: This parameter determines the maximum gas limit any block can have relative to the target gas limit. The value 0x2 indicates that a block can use up to twice the target gas limit. This elasticity multiplier allows for temporary bursts in network usage, enabling the network to handle sudden increases in demand without significantly delaying transaction processing.
eip1559BaseFeeInitialValue: This parameter sets the initial base fee value right after EIP-1559 is activated.