https://verifier.nillion.com/verifier
Create a Nillion address in your keplr wallet and get faucet for it https://faucet.testnet.nillion.com/
sudo apt update -y && sudo apt upgrade -y
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt-get remove $pkg; done
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo \
"deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
"$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update -y && sudo apt upgrade -y
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Docker version check
docker --version
1- Pull docker images
docker pull nillion/retailtoken-accuser:latest
2- Create folder
mkdir -p nillion/accuser
3- Initialize verifier
docker run -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:latest initialise
This will output the details needed to register the accuser on the website, save them:
- accound_id: Nillion address of the accuser
- public_key: Public Key of the accuser
- Note The accuser will store the credentials in a file called
credentials.json
in the folder that was created. If you lose this file, you will lose access to the keys/address of the accuser
4- Check credential.json
file contents
cat nillion/accuser/credentials.json
5- Send some $NIL to verifier accuser address or get faucet for it
docker run -d -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:latest accuse --rpc-endpoint "https://nillion-testnet.rpc.kjnodes.com" --block-start 5309742
1- Head to verifier dashboard
2- Click Linux setup to open Verifier installation docs, add your node credentials in step 5 to verify your node
1- Docker container lists
docker ps
- Copy Container ID of your
nillion/retailtoken-accuser:latest
container
2- Check your latest verified secrets, Replace CONTAINER_ID
with yours
docker logs -f -n 10 CONTAINER_ID
- the amount must inscreases
- Registered must be
true
Restart Container
docker restart CONTAINER_ID
Stop & remove Container
docker stop CONTAINER_ID && docker rm CONTAINER_ID
Change RPC (after stop and remove old verifier)
docker run -d -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:latest accuse --rpc-endpoint "https://nillion-testnet-rpc.polkachu.com/" --block-start 5309742