Ce court article décrit comment faire tourner un noeud Nervos Network testnet sur Ubuntu 20.04.


Noeud sur Aggron

Installation du CKB Node

mkdir -p nervos
cd ./nervos
curl -LO https://github.com/nervosnetwork/ckb/releases/download/v0.43.1/ckb_v0.43.1_x86_64-unknown-linux-gnu.tar.gz
tar xzf ckb_v0.43.1_x86_64-unknown-linux-gnu.tar.gz
mv ckb_v0.43.1_x86_64-unknown-linux-gnu ckb_v0.43.1
cd ckb_v0.43.1
./ckb init --chain testnet

Installation du CKB Indexer

cd ./nervos
mkdir ckb-indexer-0.2.1/
cd ckb-indexer-0.2.1/
curl -LO https://github.com/nervosnetwork/ckb-indexer/releases/download/v0.2.1/ckb-indexer-0.2.1-linux.zip
unzip ckb-indexer-0.2.1-linux.zip
tar xzf ckb-indexer-linux-x86_64.tar.gz
RUST_LOG=info ./ckb-indexer -s ./indexer-data

Vérifier que le noeud est bien synchronisé en comparant les blocks avec les derniers trouvés dans l’explorer https://explorer.nervos.org/aggron/


Le noeud et l’indexeur seront accessibles aux adresses suivantes:

  • CKB Node RPC URL: http://localhost:8114

  • CKB Indexer RPC URL: http://localhost:8116