This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
Releases: ethereumjs/ethereumjs-common
Releases · ethereumjs/ethereumjs-common
v0.6.0 - Feature Release: Constantinople Support
v0.5.0 - Feature Release: Private Chain Support
- Introduces support for private chains by allowing to pass a custom dictionary as the
chain
parameter
in the constructor or thesetChain()
method as an alternative to just passing one of the predefined
chain
String
names (e.g.mainnet
,ropsten
), PR #24
v0.4.1 - Minor Feature Release
v0.4.0 - Consistency Release
[0.4.0] - 2018-06-20
- Remove leftover ...Gas postfix for some gas prices (e.g.
ecAddGas
->ecAdd
) to
be consistent with overall gas price naming
v0.3.1 - Feature Release
v0.3.0 - Feature Release
v0.2.0 - Feature Release
v0.1.1 - Bugfix Release
- Remove dynamic require to prevent browserify issue, PR #8
v0.1.0 - Initial Release
Initial version, this library succeeds the ethereum/common
library, being more future-proof through a better structured design
Features:
- Easy chain-/HF-based parameter access
- No parameter changes on library updates (
c.param('gasPrices', 'ecAddGas', 'byzantium')
will always return the same value) - Ease experimentation/research by allowing to include future HF parameters (already included as draft:
constantinople
andhybridCasper
) without breaking current installations - Improved structure for parameter access (mainly through topics like
gasPrices
,pow
,sharding
) for better readability/developer overview - See README and API Docs for a more in-depth feature overview and usage instructions