Install
Install Dependencies
Install Docker
Copy
# Add Docker's official GPG key:
sudo apt update -y
sudo apt install apt-transport-https ca-certificates curl software-properties-common -y
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt update -y
apt-cache policy docker-ce
sudo apt install docker-ce -yDocker without sudo
Copy
sudo usermod -aG docker ${USER}
su - ${USER}
groupsDocker version
Copy
docker --versionDocker version 27.1.1, build 63125853e3
Faucet
Go to: https://faucet.testnet.nillion.com/
Faucet with your nillion address, remember address will start from nillion...
Initialize Accuser Image
Copy
docker pull nillion/retailtoken-accuser:v1.0.0Copy
mkdir -p nillion/accuserRun Init
Copy
docker run -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:v1.0.0 initialiseYou will see somethings like below

Verify On Website
Go to website: https://verifier.nillion.com/
Connect your Nillion wallet then approve
Log Verifier, you will see the docs open then
Expand the fifth step
You will need to verify your
Account IDandPublic Keyin 2 red boxes when you run initilizing docker image above
Faucet your Accuser walletRemember Accuser wallet is different as your Nillion wallet
Faucet with your Accuser wallet which is
Account ID
Check your Accuser walletRemember your address MUST have NIL token
Check token at explorer: https://testnet.nillion.explorers.guru/
Run Accuser NodeYOU MUST WAIT 30-60 MINUTES TO CONTINUE WITH THE STEPS BELOW. The secret verification is designed wait for a period of time before fully registering the accuser.
Copy
docker run -v ./nillion/accuser:/var/tmp nillion/retailtoken-accuser:v1.0.0 accuse --rpc-endpoint "https://testnet-nillion-rpc.lavenderfive.com" --block-start 5098767When it was registered successfully, you will see somethings like

Ctrl + C three times to stop logs
Check Container ID with command
docker psFind Container with Image of
Nillionin the list then getContainer IDin the first word of line
Check by command
docker logs CONTAINER_ID -n 200 -f
Save your keys
Your keys will be in ~/nillion/accuser
Show it by cat ~/nillion/accuser/credentials.json
Then must save all, if you lost, you will never access your Accuser wallet again
Last updated