Nim implementation of the Ethereum Beacon Chain https://nimbus.guide
Go to file
Zahary Karadjov 82282928c3 Allow setting the number of missing nodes 2019-03-29 11:32:25 +02:00
.vscode
beacon_chain state_transition part of get_attesting_indices/get_attesting_indices_cached perf tweaks 2019-03-28 23:31:30 +02:00
benchmarks
research
scripts Makefile: testnet targets wrapping connect_to_testnet.sh 2019-03-28 23:19:12 +01:00
tests Allow setting the number of missing nodes 2019-03-29 11:32:25 +02:00
.appveyor.yml
.gitignore
.travis.yml
LICENSE-APACHEv2
LICENSE-MIT
Makefile Makefile: mark phony targets and clean the "clean" target 2019-03-29 03:17:08 +01:00
README.md README.md: add `make update` even if it's not required the first time 2019-03-29 03:36:04 +01:00
beacon_chain.nim
beacon_chain.nimble
nim.cfg

README.md

Ethereum Beacon Chain

Build Status (Travis) Windows build status (Appveyor) License: Apache License: MIT Stability: experimental

Nimbus beacon chain is a research implementation of the beacon chain component of the upcoming Ethereum Serenity upgrade, aka eth2. See the main Nimbus project for the bigger picture.

You can check where the beacon chain fits in the Ethereum research ecosystem in the Status Athenaeum.

Building and Testing

The beacon chain components need to be built with the Nim compiler - the easiest way to get started is to head over to the main Nimbus repository and follow the build instructions there or just execute the commands below in order.

Note: This is because this repository is actually pulled in as a dependency of Nimbus - the Ethereum 1.0 + 2.0 client - so it makes sense to start from there even if you are only interested in testing the Ethereum 2.0 side of things (contained almost entirely in this repository).

# Clone main nimbus repository:
git clone https://github.com/status-im/nimbus.git
cd nimbus

# Prep environment (assuming you have 4 CPU cores and want to take advantage of them):
make update
make -j4 deps

# Head over to the vendor repo where you should have a checkout of this project:
cd vendor/nim-beacon-chain

# You can now run the test suite:
make test

Beacon node simulation

The beacon node simulation is will create a full peer-to-peer network of beacon nodes and validators, and run the beacon chain in real time. To change network parameters such as shard and validator counts, see start.sh.

# get a shell with the right environment vars set:
../../env.sh bash

# Start the beacon chain simulation, resuming from a previous state (if any):
./tests/simulation/start.sh # if starting from Nimbus, make sure you're in vendor/nim-beacon-chain!

# Clear data files from your last run and restart the simulation with a new genesis block:
rm -rf tests/simulation/data; ./tests/simulation/start.sh

# Run an extra node - by default the network will launch with 9 nodes, each
# hosting 10 validators. The last 10 validators are lazy bums that hid from the
# startup script, but you can command them back to work in a separate terminal
# with:
./tests/simulation/run_node.sh 9

Alternatively, a Makefile-based flow is available:

# From "vendor/nim-beacon-chain/",
# clear all data from the last run and restart the simulation with a new genesis block:
make eth2_network_simulation

You can also separate the output from each beacon node in its own panel, using multitail:

USE_MULTITAIL="yes" ./tests/simulation/start.sh

# OR

make USE_MULTITAIL="yes" eth2_network_simulation

You can find out more about it in the development update.

Alternatively, fire up our experimental Vagrant instance with Nim pre-installed and give us yout feedback about the process!

Makefile tips and tricks for developers

  • build all those tools known to the Makefile:
make
  • build a specific tool:
make state_sim
  • you can control the Makefile's verbosity with the V variable (defaults to 1):
make V=0 # quiet
make V=2 test # more verbose than usual
make LOG_LEVEL=DEBUG bench_bls_sig_agggregation # this is the default
make LOG_LEVEL=TRACE beacon_node # log everything
  • pass arbitrary parameters to the Nim compiler:
make NIMFLAGS="-d:release"
  • you can freely combine those variables on the make command line:
make -j8 V=0 NIMFLAGS="-d:release" USE_MULTITAIL=yes eth2_network_simulation

State transition simulation

The state transition simulator can quickly run the Beacon chain state transition function in isolation and output JSON snapshots of the state. The simulation runs without networking and blocks are processed without slot time delays.

# build and run the state simulator, then display its help ("-d:release" speeds it
# up substantially, allowing the simulation of longer runs in reasonable time)
make V=0 NIMFLAGS="-d:release" state_sim
./build/state_sim --help

Convention

Ethereum Foundation uses:

  • snake_case for fields and procedure names
  • MACRO_CASE for constants
  • PascalCase for types

Nim NEP-1 recommends:

  • camelCase for fields and procedure names
  • PascalCase for constants
  • PascalCase for types

To facilitate collaboration and comparison, nim-beacon-chain uses the Ethereum Foundation convention.

License

Licensed and distributed under either of

or

at your option. These files may not be copied, modified, or distributed except according to those terms.