-
Notifications
You must be signed in to change notification settings - Fork 781
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
common: added EIP-based HF file format as preparation for Yolo v2 int…
…egration (and other ephemeral testnets) (#876) Co-authored-by: Ryan Ghods <[email protected]>
- Loading branch information
Showing
16 changed files
with
77 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "EIP-2315", | ||
"number": 2315, | ||
"comment": "Simple subroutines for the EVM", | ||
"url": "https://eips.ethereum.org/EIPS/eip-2315", | ||
"status": "Draft", | ||
"minimumHardfork": "berlin", | ||
"gasConfig": {}, | ||
"gasPrices": { | ||
"beginsub": { | ||
"v": 2, | ||
"d": "Base fee of the BEGINSUB opcode" | ||
}, | ||
"returnsub": { | ||
"v": 5, | ||
"d": "Base fee of the RETURNSUB opcode" | ||
}, | ||
"jumpsub": { | ||
"v": 10, | ||
"d": "Base fee of the JUMPSUB opcode" | ||
} | ||
}, | ||
"vm": {}, | ||
"pow": {} | ||
} |
3 changes: 2 additions & 1 deletion
3
packages/common/src/eips/EIP2537.json → packages/common/src/eips/2537.json
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import { eipsType } from './../types' | ||
|
||
export const EIPs: eipsType = { | ||
2537: require('./EIP2537.json'), | ||
2315: require('./2315.json'), | ||
2537: require('./2537.json'), | ||
} |
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 |
---|---|---|
@@ -1,25 +1,7 @@ | ||
{ | ||
"name": "berlin", | ||
"comment": "HF targeted for July 2020 following the Muir Glacier HF", | ||
"eip": { | ||
"url": "https://eips.ethereum.org/EIPS/eip-2070", | ||
"status": "Draft" | ||
}, | ||
"gasConfig": {}, | ||
"gasPrices": { | ||
"beginsub": { | ||
"v": 2, | ||
"d": "Base fee of the BEGINSUB opcode" | ||
}, | ||
"returnsub": { | ||
"v": 5, | ||
"d": "Base fee of the RETURNSUB opcode" | ||
}, | ||
"jumpsub": { | ||
"v": 10, | ||
"d": "Base fee of the JUMPSUB opcode" | ||
} | ||
}, | ||
"vm": {}, | ||
"pow": {} | ||
"url": "https://eips.ethereum.org/EIPS/eip-2070", | ||
"status": "Draft", | ||
"eips": [ 2315 ] | ||
} |
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
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 |
---|---|---|
@@ -1,12 +1,7 @@ | ||
{ | ||
"name": "muirGlacier", | ||
"comment": "HF to delay the difficulty bomb", | ||
"eip": { | ||
"url": "https://eips.ethereum.org/EIPS/eip-2384", | ||
"status": "Last Call" | ||
}, | ||
"gasConfig": {}, | ||
"gasPrices": {}, | ||
"vm": {}, | ||
"pow": {} | ||
"url": "https://eips.ethereum.org/EIPS/eip-2384", | ||
"status": "Final", | ||
"eips": [] | ||
} |
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
38dc920
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Benchmark
Block 9422905
1956
ops/sec (±6.85%
)1764
ops/sec (±2.80%
)0.90
Block 9422906
1960
ops/sec (±9.33%
)1765
ops/sec (±2.91%
)0.90
Block 9422907
2063
ops/sec (±2.23%
)1666
ops/sec (±8.20%
)0.81
Block 9422908
2010
ops/sec (±1.57%
)1748
ops/sec (±1.26%
)0.87
Block 9422909
1672
ops/sec (±12.10%
)1730
ops/sec (±1.04%
)1.03
Block 9422910
1975
ops/sec (±2.35%
)1697
ops/sec (±1.50%
)0.86
Block 9422911
2013
ops/sec (±2.31%
)1655
ops/sec (±1.24%
)0.82
Block 9422912
1944
ops/sec (±1.89%
)1254
ops/sec (±13.98%
)0.65
Block 9422913
1798
ops/sec (±2.55%
)1633
ops/sec (±1.39%
)0.91
Block 9422914
1939
ops/sec (±1.96%
)1614
ops/sec (±1.58%
)0.83
This comment was automatically generated by workflow using github-action-benchmark.