nimbus-eth2/ncli
Jacek Sieka aac61165d5
ncli_db: better error message on missing history
2022-11-16 10:12:50 +01:00
..
.gitignore
README.md
deposit_downloader.nim
download_mainnet_deposits.sh
e2store.nim compatibility with Nim 1.4+ (#3888) 2022-07-29 10:53:42 +00:00
e2store.py
logtrace.nim Introduce message router (#3829) 2022-07-06 16:11:44 +00:00
ncli.nim add Capella support to Forked* (#4276) 2022-11-02 16:23:30 +00:00
ncli_common.nim add Capella support to Forked* (#4276) 2022-11-02 16:23:30 +00:00
ncli_db.nim ncli_db: better error message on missing history 2022-11-16 10:12:50 +01:00
ncli_query.nim
ncli_split_keystore.nim fix some warnings (#3886) 2022-07-18 19:17:11 +00:00
nim.cfg
nimquery.nim
requirements.txt Bump nbconvert from 6.4.0 to 6.5.1 in /ncli (#4018) 2022-08-24 16:56:45 +00:00
resttest-rules.json implement /eth/v1/beacon/blinded_blocks BN endpoint (#4286) 2022-11-08 18:08:43 +00:00
resttest.nim update to v1 of LC REST API (#4232) 2022-10-13 02:16:49 +02:00
resttest.nim.cfg Keymanager API for the validator client (#3976) 2022-08-19 13:30:07 +03:00
validator_db_aggregator.nim
validator_db_reports.ipynb

README.md

Introduction

ncli is a set of low level / debugging tools to interact with the nimbus beacon chain specification implementation, simliar to zcli. With it, you explore SSZ, make state transitions and compute hash tree roots.

Tools

  • transition: Perform state transition given a pre-state and a block to apply (both in SSZ format)
  • hash_tree_root: Print tree root of an SSZ object
  • pretty: Pretty-print SSZ object as JSON

Building

Follow the instructions from nimbus-eth2

git clone https://github.com/status-im/nimbus-eth2.git
cd nimbus-eth2
make

Usage

# Build with minimal config
../env.sh nim c -d:const_preset=minimal ncli_transition
# Build with mainnet config
../env.sh nim c -d:const_preset=mainnet ncli_transition

# Run..
./ncli_transition --help