nimbus-eth2/ncli
Etan Kissling 508f3b6368
add missing `std/` prefix to more imports (#5696)
Bumping some `std` imports to explicitly include the prefix.
Also add explicit `./` prefix for local directory imports.
2024-01-06 07:18:28 +01:00
..
.gitignore A simple script for fetching detailed deposit data 2021-05-28 19:34:20 +03:00
README.md docs: fix typos (#5571) 2023-11-06 03:56:07 +00:00
deposit_downloader.nim Bump nim-web3 to dcabb8f29ee55afedefdf93cd3e102bb1daee354 (#5664) 2023-12-12 22:15:00 +07:00
download_mainnet_deposits.sh A simple script for fetching detailed deposit data 2021-05-28 19:34:20 +03:00
e2store.nim speed up state/block loading (#5207) 2023-07-26 10:47:46 +03:00
e2store.py e2store: avoid uint48 (#4625) 2023-02-15 14:51:17 +01:00
logtrace.nim bump `chronicles` to `a5c81f3012d7a397e608cfe3d861c02419fa731e` (#5634) 2023-11-29 15:13:18 +01:00
ncli.nim `blck` --> `forkyBlck` when using `withBlck` / `withStateAndBlck` (#5451) 2023-09-21 12:49:14 +02:00
ncli_common.nim `blck` --> `forkyBlck` when using `withBlck` / `withStateAndBlck` (#5451) 2023-09-21 12:49:14 +02:00
ncli_db.nim fix XDeclaredButNotUsed warnings (#5638) 2023-12-04 21:14:35 +00:00
ncli_query.nim add missing `std/` prefix to more imports (#5696) 2024-01-06 07:18:28 +01:00
ncli_split_keystore.nim fix XDeclaredButNotUsed warnings (#5648) 2023-12-05 11:45:47 +00:00
ncli_testnet.nim fix issue #5665 (#5671) 2023-12-16 18:30:46 +02:00
nim.cfg chronos: bump (#5684) 2024-01-05 10:08:38 +01:00
nimquery.nim add missing `std/` prefix to more imports (#5696) 2024-01-06 07:18:28 +01:00
requirements.txt Bump pillow from 9.3.0 to 10.0.1 in /ncli (#5478) 2023-10-04 22:16:12 +00:00
resttest-rules.json REST: Add implementation of postStateValidators and postStateValidatorBalances. (#5632) 2023-11-29 12:05:03 +00:00
resttest.nim fix XDeclaredButNotUsed warnings (#5638) 2023-12-04 21:14:35 +00:00
resttest.nim.cfg Keymanager API for the validator client (#3976) 2022-08-19 13:30:07 +03:00
validator_db_aggregator.nim fix XDeclaredButNotUsed warnings (#5648) 2023-12-05 11:45:47 +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, similar 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