Skip to content
This repository was archived by the owner on Jul 18, 2018. It is now read-only.

Commit 59d0399

Browse files
authored
Merge pull request #6 from ethereumjs/block-reward-reduction
[MASTER-RELEASE] Metro-Byzantium changes
2 parents fa5e461 + 0e15a2e commit 59d0399

File tree

2 files changed

+24
-10
lines changed

2 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

88

9-
## [0.2.0] - Unreleased
9+
## [0.2.0] - Unreleased (``master`` branch)
1010
- ``Metro-Byzantium`` compatible
1111
- Block reward reduction
12+
- Added gas costs for curve operation precompiles (``ecAddGas``, ``ecMulGas``,...)
13+
- Added ``modexpGquaddivisor`` (modexp precompile)
1214

1315
[0.2.0]: https://github.com/ethereumjs/common/compare/v0.1.0...v0.2.0
1416

params.json

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -205,17 +205,29 @@
205205
"v": 3,
206206
"d": ""
207207
},
208-
"minerReward": {
209-
"v": "5000000000000000000",
210-
"d": "the amount a miner get rewarded for mining a block"
208+
"modexpGquaddivisor": {
209+
"v": 20,
210+
"d": "Gquaddivisor from modexp precompile for gas calculation."
211+
},
212+
"ecAddGas": {
213+
"v": 500,
214+
"d": "Gas costs for curve addition precompile."
215+
},
216+
"ecMulGas": {
217+
"v": 40000,
218+
"d": "Gas costs for curve multiplication precompile."
211219
},
212-
"ommerReward": {
213-
"v": "625000000000000000",
214-
"d": "The amount of wei a miner of an uncle block gets for being inculded in the blockchain"
220+
"ecPairingGas": {
221+
"v": 100000,
222+
"d": "Base gas costs for curve pairing precompile."
223+
},
224+
"ecPairingWordGas": {
225+
"v": 80000,
226+
"d": "Gas costs regarding curve pairing precompile input length."
215227
},
216-
"niblingReward": {
217-
"v": "156250000000000000",
218-
"d": "the amount a miner gets for inculding a uncle"
228+
"minerReward": {
229+
"v": "3000000000000000000",
230+
"d": "the amount a miner get rewarded for mining a block"
219231
},
220232
"homeSteadForkNumber": {
221233
"v": 1150000,

0 commit comments

Comments
 (0)