Socket
Socket
Sign inDemoInstall

ethereumjs-common

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ethereumjs-common - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

16

CHANGELOG.md

@@ -9,2 +9,18 @@ # Changelog

## [1.3.2] - 2019-09-04
**Istanbul** Updates:
- Added gas parameters for `EIP-2200` (rebalanced net-metered SSTORE
gas costs), PR [#65](https://github.com/ethereumjs/ethereumjs-common/pull/65)
- Renamed hardfork `blake2bRound` (-> `blake2Round`) parameter,
PR [#63](https://github.com/ethereumjs/ethereumjs-common/pull/63)
Other Changes:
- Fixed `Kovan` genesis state,
PR [#66](https://github.com/ethereumjs/ethereumjs-common/pull/66)
[1.3.2]: https://github.com/ethereumjs/ethereumjs-common/compare/v1.3.1...v1.3.2
## [1.3.1] - 2019-08-08

@@ -11,0 +27,0 @@

8

dist/genesisStates/kovan.json

@@ -1,1 +0,7 @@

{}
{
"0x0000000000000000000000000000000000000001": "0x1",
"0x0000000000000000000000000000000000000002": "0x1",
"0x0000000000000000000000000000000000000003": "0x1",
"0x0000000000000000000000000000000000000004": "0x1",
"0x00521965e7bd230323c423d96c657db5b79d099f": "1606938044258990275541962092341162602522202993782792835301376"
}

@@ -10,5 +10,5 @@ {

"gasPrices": {
"blake2bRound": {
"blake2Round": {
"v": 1,
"d": "Gas cost per round for the Blake2b F precompile"
"d": "Gas cost per round for the Blake2 F precompile"
},

@@ -34,2 +34,34 @@ "ecAdd": {

"d": "Per byte of data attached to a transaction that is not equal to zero. NOTE: Not payable on data of calls between transactions"
},
"sstoreSentryGasEIP2200": {
"v": 2300,
"d": "Minimum gas required to be present for an SSTORE call, not consumed"
},
"sstoreNoopGasEIP2200": {
"v": 800,
"d": "Once per SSTORE operation if the value doesn't change"
},
"sstoreDirtyGasEIP2200": {
"v": 800,
"d": "Once per SSTORE operation if a dirty value is changed"
},
"sstoreInitGasEIP2200": {
"v": 20000,
"d": "Once per SSTORE operation from clean zero to non-zero"
},
"sstoreInitRefundEIP2200": {
"v": 19200,
"d": "Once per SSTORE operation for resetting to the original zero value"
},
"sstoreCleanGasEIP2200": {
"v": 5000,
"d": "Once per SSTORE operation from clean non-zero to something else"
},
"sstoreCleanRefundEIP2200": {
"v": 4200,
"d": "Once per SSTORE operation for resetting to the original non-zero value"
},
"sstoreClearRefundEIP2200": {
"v": 15000,
"d": "Once per SSTORE operation for clearing an originally existing storage slot"
}

@@ -36,0 +68,0 @@ },

2

package.json
{
"name": "ethereumjs-common",
"version": "1.3.1",
"version": "1.3.2",
"description": "Resources common to all Ethereum implementations",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

@@ -85,3 +85,3 @@ # SYNOPSIS

Supported EIPs in the library:
Supported EIPs in the library (use `istanbul` HF parameter):

@@ -94,2 +94,3 @@ - [EIP-1108](https://eips.ethereum.org/EIPS/eip-1108) `alt_bn128` precompile

- [EIP-2028](https://eips.ethereum.org/EIPS/eip-2028) Calldata gas cost reduction
- [EIP-2200](https://github.com/ethereum/EIPs/pull/2200) Rebalance net-metered SSTORE gas cost

@@ -96,0 +97,0 @@ ## Parameter Access

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc