-
Notifications
You must be signed in to change notification settings - Fork 758
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Master branch - Gray Glacier Support (#1988)
* common: add GrayGlacier HF and EIP-5133 * block/test: add grayGlacier tests * VM, EVM: added EIP-5133 and GrayGlacier HF support * VM, EVM -> Simplification: limit supported EIP check and EIP docs to inner EVM (will deterministically throw on instantiation) * EVM, VM: moved supported HF check to EVM to cover both EVM and VM Co-authored-by: Holger Drewes <Holger.Drewes@gmail.com>
- Loading branch information
Showing
16 changed files
with
21,465 additions
and
63 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
7,056 changes: 7,056 additions & 0 deletions
7,056
packages/block/test/testdata/dfGrayGlacier/difficultyGrayGlacier.json
Large diffs are not rendered by default.
Oops, something went wrong.
4,016 changes: 4,016 additions & 0 deletions
4,016
packages/block/test/testdata/dfGrayGlacier/difficultyGrayGlacierForkBlock.json
Large diffs are not rendered by default.
Oops, something went wrong.
7,056 changes: 7,056 additions & 0 deletions
7,056
packages/block/test/testdata/dfGrayGlacier/difficultyGrayGlacierMinus1.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,632 changes: 1,632 additions & 0 deletions
1,632
packages/block/test/testdata/dfGrayGlacier/difficultyGrayGlacierTimeDiff1.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,632 changes: 1,632 additions & 0 deletions
1,632
packages/block/test/testdata/dfGrayGlacier/difficultyGrayGlacierTimeDiff2.json
Large diffs are not rendered by default.
Oops, something went wrong.
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,17 @@ | ||
{ | ||
"name": "EIP-5133", | ||
"number": 5133, | ||
"comment": "Delaying Difficulty Bomb to mid-September 2022", | ||
"url": "https://eips.ethereum.org/EIPS/eip-5133", | ||
"status": "Draft", | ||
"minimumHardfork": "grayGlacier", | ||
"gasConfig": {}, | ||
"gasPrices": {}, | ||
"vm": {}, | ||
"pow": { | ||
"difficultyBombDelay": { | ||
"v": 11400000, | ||
"d": "the amount of blocks to delay the difficulty bomb with" | ||
} | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"name": "grayGlacier", | ||
"comment": "Delaying the difficulty bomb to Mid September 2022", | ||
"url": "https://github.com/ethereum/execution-specs/blob/master/network-upgrades/mainnet-upgrades/gray-glacier.md", | ||
"status": "Draft", | ||
"eips": [5133], | ||
"gasConfig": {}, | ||
"gasPrices": {}, | ||
"vm": {}, | ||
"pow": {} | ||
} |
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
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