The basic settings of rei, based on @ethereumjs/common
, including parameters of the mainnet and testnet:
chains
Chain information of each chaingenesisStates
Initial state of each chainRIP
(REI-Network Improvement Proposal) of each chainhardforks
Fork information of each chain
npm install @rei-network/common
// create chain start common with chain name
Common.createChainStartCommon("rei-mainnet");
// create with chain id
Common.createCommonByBlockNumber(0, 12347);
// create with chain name
Common.createCommonByBlockNumber(0, "goerli");
// create with an object containing chain information
Common.createCommonByBlockNumber(0, {
chain: "mychain",
networkId: 100,
genesis: {
// ...genesis block
},
hardforks: [],
bootstrapNodes: [],
});