RPC, API, gRPC

gRPC:

nillion-testnet-grpc.bonynode.online:443

peers:

@nillion-testnet-peer.bonynode.online:

live peers: (0 active)

PEERS=""
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.nilchain/config/config.toml

addrbook: (upd 1h)

wget -O $HOME/.nilchain/config/addrbook.json https://testnet-files.bonynode.online/nillion/addrbook.json

Snapshot

## Snapshot is not available yet

State Sync

If you don't want to wait for a long synchronization you can use:

sudo systemctl stop nilchaind

cp $HOME/.nilchain/data/priv_validator_state.json $HOME/.nilchain/priv_validator_state.json.backup
nilchaind tendermint unsafe-reset-all --home $HOME/.nilchain

peers="@nillion-testnet-peer.bonynode.online:"  
SNAP_RPC="https://nillion-testnet-rpc.bonynode.online:443"

sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$peers\"/" $HOME/.nilchain/config/config.toml 

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height);
BLOCK_HEIGHT=$((LATEST_HEIGHT - 1000));
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) 

echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH && sleep 2

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ;
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ;
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ;
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"| ;
s|^(seeds[[:space:]]+=[[:space:]]+).*$|\1\"\"|" $HOME/.nilchain/config/config.toml

curl https://testnet-files.bonynode.online/nillion/wasmPath_nillion.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/
mv $HOME/.nilchain/priv_validator_state.json.backup $HOME/.nilchain/data/priv_validator_state.json

sudo systemctl restart nilchaind && sudo journalctl -u nilchaind -f

Wasm

Sorry, this project does not support WebAssembly.