Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reformat, remove old genesis, added package.json #10

Open
wants to merge 60 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
2d690ec
cleanup sqaush
Aug 9, 2015
14c3ba6
updated names
Aug 19, 2015
2a223b7
remove old fields from package.json
Aug 19, 2015
ce9cde6
fix package.json
Aug 19, 2015
52248d4
readded genesis state
Aug 31, 2015
76d6368
remove genesisblock file
Aug 31, 2015
10c166e
bump
Aug 31, 2015
5272447
change hex to int
Sep 2, 2015
07603f3
add genesis hash and state
Sep 6, 2015
72c715e
bump
Sep 6, 2015
eb03413
load genesisState statically
caktux Dec 12, 2015
10573be
Merge pull request #1 from caktux/master
wanderer Dec 12, 2015
66fc9d8
add homeSteadForkNumber
Dec 12, 2015
8812a23
0.0.11
Dec 12, 2015
a19a6ba
added commas
Dec 12, 2015
894992f
0.0.12
Dec 12, 2015
1b9df5d
added bootstrap nodes
Dec 17, 2015
0cf7d94
export boostrap
Dec 17, 2015
e56255a
0.0.13
Dec 17, 2015
f6eaac8
added tx create value
Jan 9, 2016
4968d5a
0.0.14
Jan 9, 2016
8623120
adjust fork number
Jan 12, 2016
836416f
0.0.15
Jan 12, 2016
6d2cae7
adjust fork number
Jan 14, 2016
26f6c8c
0.0.16
Jan 14, 2016
3d79d3b
Add a way to skip exporting the genesis state if its not needed
axic Mar 4, 2016
88f8cc4
0.0.17
Mar 4, 2016
87c8a2f
Update package.json
kumavis Jun 5, 2016
4474990
Fix the homestead fork number
axic Oct 24, 2016
05a8f6d
Merge pull request #3 from ethereumjs/kumavis-patch-1
axic Oct 24, 2016
61b8bc9
Add EIP150 fork number
axic Oct 24, 2016
3148ea8
Merge pull request #4 from ethereumjs/eip150
Oct 25, 2016
d788f1a
updated README
Oct 25, 2016
2651ea4
0.0.18
Oct 25, 2016
923e627
increase gas cost of EXP from 10 + 10 per byte in the exponent to 10 …
jwasinger Jul 21, 2017
b526dab
Merge pull request #5 from jwasinger/master
Jul 27, 2017
aa7381c
0.1.0
Jul 27, 2017
e47e893
Added CHANGELOG
holgerd77 Sep 11, 2017
ad1fc45
Merge pull request #7 from ethereumjs/add-changelog
jwasinger Sep 11, 2017
4940bfa
Added .gitignore file
holgerd77 Sep 15, 2017
12c0030
Added tests to test the validity of the JSON files
holgerd77 Sep 15, 2017
0386123
Added travis file
holgerd77 Sep 15, 2017
a0bc9b9
Added badge for build status to README
holgerd77 Sep 15, 2017
fa5e461
Merge pull request #8 from ethereumjs/add-tests
jwasinger Sep 16, 2017
1415103
EIP 649: block reward reduction
jwasinger Sep 11, 2017
ea7303a
Added gas costs for curve operation precompiles
holgerd77 Sep 15, 2017
fb75914
Added Gquaddivisor from modexp precompile for gas calculation
holgerd77 Sep 15, 2017
3c9a187
Updated CHANGELOG
holgerd77 Sep 25, 2017
0e15a2e
remove uncle block constants (derivable from block reward)
cdetrio Sep 25, 2017
59d0399
Merge pull request #6 from ethereumjs/block-reward-reduction
cdetrio Sep 25, 2017
d077199
Release commit for v0.2.0
holgerd77 Oct 10, 2017
5dac1d0
Merge pull request #9 from ethereumjs/new-release-020
jwasinger Oct 10, 2017
334590a
Updated bootstrap nodes according to node list from go-ethereum bootn…
holgerd77 Nov 7, 2017
87d671c
Merge pull request #10 from ethereumjs/update-bootstrap-nodes
jwasinger Nov 8, 2017
fccf739
Release commit for v0.2.1
holgerd77 Nov 8, 2017
f1f0a99
Merge pull request #11 from ethereumjs/new-release-021
holgerd77 Nov 10, 2017
5f41335
Update for Ropsten bootstrap nodes
bit-warrior Jul 11, 2018
a45143e
Merge pull request #14 from Avarch-org/master
holgerd77 Jul 11, 2018
4d34653
Added deprecation and update note (-> ethereumjs-common) to the README
holgerd77 Jul 11, 2018
9bf1bd0
Merge pull request #15 from ethereumjs/deprecation-note
holgerd77 Jul 11, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
24 changes: 24 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
language: node_js
node_js:
- "8"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8

env:
global:
- DISPLAY=:99.0
matrix:
- CXX=g++-4.8 TEST_SUITE=test
matrix:
fast_finish: true
include:
- os: linux
node_js: "8"
env: CXX=g++-4.8 TEST_SUITE=test
script: npm run $TEST_SUITE
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [0.2.1] - 2017-11-08
- Updated bootstrap nodes list (``bootstrapNodes.json``)
- More detailed bootstrap node context info like ``network`` or ``location``

[0.2.1]: https://github.com/ethereumjs/common/compare/v0.2.0...v0.2.1

## [0.2.0] - 2017-10-11
- ``Metro-Byzantium`` compatible
- Block reward reduction
- Added gas costs for curve operation precompiles (``ecAddGas``, ``ecMulGas``,...)
- Added ``modexpGquaddivisor`` (modexp precompile)

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

## [0.1.0] - 2017-07-27
- ``Spurious Dragon`` compatible
- ``EXP`` cost increase

[0.1.0]: https://github.com/ethereumjs/common/compare/v0.0.18...v0.1.0

## [0.0.18] - 2016-10-25
- ``EIP 150`` compatible
- Added ``homesteadRepriceForkNumber``
- URL fixes in ``package.json``

[0.0.18]: https://github.com/ethereumjs/common/compare/v0.0.17...v0.0.18


## Older releases:

- [0.0.17](https://github.com/ethereumjs/common/compare/v0.0.16...v0.0.17) - 2016-03-05
- [0.0.16](https://github.com/ethereumjs/common/compare/v0.0.15...v0.0.16) - 2016-01-14
- [0.0.15](https://github.com/ethereumjs/common/compare/v0.0.14...v0.0.15) - 2016-01-12
- [0.0.14](https://github.com/ethereumjs/common/compare/v0.0.13...v0.0.14) - 2016-01-09
- [0.0.13](https://github.com/ethereumjs/common/compare/v0.0.12...v0.0.13) - 2015-12-17
- [0.0.12](https://github.com/ethereumjs/common/compare/v0.0.11...v0.0.12) - 2015-12-12
- 0.0.11 - 2015-12-12



15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# common
# SYNOPSIS

[![Build Status](https://img.shields.io/travis/ethereumjs/common.svg?branch=master&style=flat-square)](https://travis-ci.org/ethereumjs/common)

[DEPRECATION NOTE] This library is deprecated in favor of a newly conceptualized [ethereumjs-common](https://github.com/ethereumjs/ethereumjs-common) library with support for different chain and
hardfork settings.

If you use this library to read parameters for your own library, consider switching to the ``ethereumjs-common``
library on one of your next releases. If you need assistance on this, reach out on [Gitter](https://gitter.im/ethereum/ethereumjs).

# COMMON
Resources common to all Ethereum implementations

# INSTALL
`npm install ethereum-common`
110 changes: 110 additions & 0 deletions bootstrapNodes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
[
{
"ip": "52.16.188.185",
"port": "30303",
"id": "a979fb575495b8d6db44f750317d0f4622bf4c2aa3365d6af7c284339968eef29b69ad0dce72a4d8db5ebb4968de0e3bec910127f134779fbcb0cb6d3331163c",
"network": "Mainnet",
"chainId": 1,
"location": "IE",
"comment": "Go Bootnode"
},
{
"ip": "13.93.211.84",
"port": "30303",
"id": "3f1d12044546b76342d59d4a05532c14b85aa669704bfe1f864fe079415aa2c02d743e03218e57a33fb94523adb54032871a6c51b2cc5514cb7c7e35b3ed0a99",
"network": "Mainnet",
"chainId": 1,
"location": "US-WEST",
"comment": "Go Bootnode"
},
{
"ip": "191.235.84.50",
"port": "30303",
"id": "78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d",
"network": "Mainnet",
"chainId": 1,
"location": "BR",
"comment": "Go Bootnode"
},
{
"ip": "13.75.154.138",
"port": "30303",
"id": "158f8aab45f6d19c6cbf4a089c2670541a8da11978a2f90dbf6a502a4a3bab80d288afdbeb7ec0ef6d92de563767f3b1ea9e8e334ca711e9f8e2df5a0385e8e6",
"network": "Mainnet",
"chainId": 1,
"location": "AU",
"comment": "Go Bootnode"
},
{
"ip": "52.74.57.123",
"port": "30303",
"id": "1118980bf48b0a3640bdba04e0fe78b1add18e1cd99bf22d53daac1fd9972ad650df52176e7c7d89d1114cfef2bc23a2959aa54998a46afcf7d91809f0855082",
"network": "Mainnet",
"chainId": 1,
"location": "SG",
"comment": "Go Bootnode"
},
{
"ip": "5.1.83.226",
"port": "30303",
"id": "979b7fa28feeb35a4741660a16076f1943202cb72b6af70d327f053e248bab9ba81760f39d0701ef1d8f89cc1fbd2cacba0710a12cd5314d5e0c9021aa3637f9",
"network": "Mainnet",
"chainId": 1,
"location": "DE",
"comment": "Cpp Bootnode"
},
{
"ip": "52.176.7.10",
"port": "30303",
"id": "30b7ab30a01c124a6cceca36863ece12c4f5fa68e3ba9b0b51407ccc002eeed3b3102d20a88f1c1d3c3154e2449317b8ef95090e77b312d5cc39354f86d5d606",
"network": "Ropsten",
"chainId": 3,
"location": "US",
"comment": "US-Azure geth"
},
{
"ip": "52.176.100.77",
"port": "30303",
"id": "865a63255b3bb68023b6bffd5095118fcc13e79dcf014fe4e47e065c350c7cc72af2e53eff895f11ba1bbb6a2b33271c1116ee870f266618eadfc2e78aa7349c",
"network": "Ropsten",
"chainId": 3,
"location": "US",
"comment": "US-Azure parity"
},
{
"ip": "52.232.243.152",
"port": "30303",
"id": "6332792c4a00e3e4ee0926ed89e0d27ef985424d97b6a45bf0f23e51f0dcb5e66b875777506458aea7af6f9e4ffb69f43f3778ee73c81ed9d34c51c4b16b0b0f",
"network": "Ropsten",
"chainId": 3,
"location": "US",
"comment": "Parity"
},
{
"ip": "192.81.208.223",
"port": "30303",
"id": "94c15d1b9e2fe7ce56e458b9a3b672ef11894ddedd0c6f247e0f1d3487f52b66208fb4aeb8179fce6e3a749ea93ed147c37976d67af557508d199d9594c35f09",
"network": "Ropsten",
"chainId": 3,
"location": "US",
"comment": "@gpip"
},
{
"ip": "52.169.42.101",
"port": "30303",
"id": "a24ac7c5484ef4ed0c5eb2d36620ba4e4aa13b8c84684e1b4aab0cebea2ae45cb4d375b77eab56516d34bfbd3c1a833fc51296ff084b770b94fb9028c4d25ccf",
"network": "Rinkeby",
"chainId": 4,
"location": "IE",
"comment": ""
},
{
"ip": "52.3.158.184",
"port": "30303",
"id": "343149e4feefa15d882d9fe4ac7d88f885bd05ebb735e547f12e12080a9fa07c8014ca6fd7f373123488102fe5e34111f8509cf0b7de3f5b44339c9f25e87cb8",
"network": "Rinkeby",
"chainId": 4,
"location": "",
"comment": "INFURA"
}
]
14 changes: 0 additions & 14 deletions genesis.json

This file was deleted.

Loading