REI is an Ethereum-based blockchain fork from GoQuorum.
Key differences from GoQuorum:
- Re-enable gas price
- Always use Raft consensus
- Change block timestamp unit from nano-second back to second
- Remove block rewards
- Miner receives gas fee from mined transactions
- Hard-coded block difficulty to 1
- Disable private transactions and contracts
- Support p2p for broadcast blocks to public nodes
buildctl build \
--frontend dockerfile.v0 \
--local dockerfile=. \
--local context=. \
--output type=image,name=${IMAGE},push=true
git clone https://github.com/reichain/rei.git
cd rei
make rei
rei --datadir ~/.rei/mainnet --mainnet --http
rei --datadir ~/.rei/testnet --testnet --http
The go-ethereum library (i.e. all code outside of the cmd
directory) is licensed under the
GNU Lesser General Public License v3.0, also
included in our repository in the COPYING.LESSER
file.
The go-ethereum binaries (i.e. all code inside of the cmd
directory) is licensed under the
GNU General Public License v3.0, also included
in our repository in the COPYING
file.
Any project planning to use the crypto/secp256k1
sub-module must use the specific secp256k1 standalone library licensed under 3-clause BSD.