nimbus-eth2/ncli
Jacek Sieka 2edf33de7d
ncli: altair+ slot and state transitions (#3721)
clearly this doesn't get used a lot :)
2022-06-09 12:57:33 +00:00
..
.gitignore
README.md
deposit_downloader.nim
download_mainnet_deposits.sh
e2store.nim era file verification (#3605) 2022-05-10 03:28:46 +03:00
e2store.py update era file documentation / impl (#3226) 2022-01-07 11:13:19 +01:00
logtrace.nim Implement all sync committee duties in the validator client (#3583) 2022-05-10 10:03:40 +00:00
ncli.nim ncli: altair+ slot and state transitions (#3721) 2022-06-09 12:57:33 +00:00
ncli_common.nim fix unnecessary HashList/HashArray cache invalidation (#3660) 2022-05-30 13:30:42 +00:00
ncli_db.nim fix unnecessary HashList/HashArray cache invalidation (#3660) 2022-05-30 13:30:42 +00:00
ncli_query.nim
ncli_split_keystore.nim Add a ncli tool for converting a regular keystore into a distributed one (#3634) 2022-05-17 16:50:49 +03:00
nim.cfg enable `styleCheck:usages` (#3573) 2022-04-08 16:22:49 +00:00
nimquery.nim
requirements.txt Bump notebook from 6.4.7 to 6.4.10 in /ncli (#3571) 2022-04-07 10:24:16 +00:00
resttest-rules.json initial Capella support in RuntimeConfig (#3698) 2022-06-03 14:42:40 +00:00
resttest.nim Implement all sync committee duties in the validator client (#3583) 2022-05-10 10:03:40 +00:00
validator_db_aggregator.nim stylecheck fixes (#3595) 2022-04-15 12:46:56 +00:00
validator_db_reports.ipynb Streamline the validator reward analysis 2022-02-01 11:30:14 +02:00

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