Official documentation available here .
You can read more about testnet and rewards here .
Install node
During setup you will need a wallet address, you can use Pelagus to generate one.
You must have an instance of the quai stratum proxy before running a GPU miner.
Use our script for a quick installation:
wget -q -O quai.sh https://api.nodes.guru/quai.sh && chmod +x quai.sh && sudo /bin/bash quai.sh
Additional
Check the node logs.
journalctl -u quai -f -o cat
Restart node:
sudo systemctl restart quai
Check the stratum proxy logs:
journalctl -u proxy -f -o cat
Restart stratum proxy:
sudo systemctl restart proxy
Check the miner logs:
journalctl -u miner -f -o cat
Restart miner:
sudo systemctl restart miner
Stop node.
cd $HOME /go-quai/ && make stop
Download and Sync from Snapshot
cd $HOME
sudo systemctl stop quai
wget https://storage.googleapis.com/colosseum-db/goldenage_backups/quai-goldenage-backup.tgz
rm -rf ~/.local/share/go-quai quai-goldenage-backup
tar -xvf quai-goldenage-backup.tgz
cp -r quai-goldenage-backup ~/.local/share/go-quai
sudo systemctl restart quai
Upgrade quai node
sudo systemctl stop quai
cd $HOME /go-quai/ && make stop
git fetch --all
NODE_LATEST_TAG = $( curl -s "https://api.github.com/repos/dominant-strategies/go-quai/tags" | jq -r '.[0].name' )
git checkout $NODE_LATEST_TAG
make go-quai
sudo mv ./build/bin/go-quai /usr/local/bin/
sudo systemctl restart quai
Upgrade stratum proxy
sudo systemctl stop proxy
cd $HOME /go-quai-stratum
git fetch --all
PROXY_LATEST_TAG = $( curl -s "https://api.github.com/repos/dominant-strategies/go-quai-stratum/tags" | jq -r '.[0].name' )
git checkout $PROXY_LATEST_TAG
make go-quai-stratum
sudo mv ./build/bin/go-quai-stratum /usr/local/bin/
sudo systemctl restart proxy
Remove node
sudo systemctl stop quai proxy miner
rm -rf $HOME /go-quai/ $HOME /go-quai-stratum