Step 1: Update Your System Packages
It’s important to keep your system up-to-date before installing any software. Open your terminal and run the following command:
sudo apt update && sudo apt upgrade -y
Step 2: Install Required Dependencies
sudo apt install screen
Step 3: Download the Xardian Node Software
wget https://github.com/xprotocol-org/xardian/releases/latest/download/runner.linux.amd64
Step 4: Make the CLI Executable
chmod +x runner.linux.amd64
Step 5: Create a Screen Session
screen -S xardian
Step 6: Run the Xardian Node Application
./runner.linux.amd64
Step 7: Initiate the Delegating Process
./runner.linux.amd64 delegate
Step 8: Complete the Delegating Process
Follow the link shown in your terminal, connect wallet, and delegate your node.
Step 9: Start Your Node
./runner.linux.amd64 run
Using Screen to Detach and Reattach
To detach:
Press Ctrl + A
, then D
To reattach:
screen -r xardian
Bonus TIPs:
Monitoring your rewards:
Visit basescan.org
Importing Existing Operator Private Key:
./runner.linux.amd64 import --key your-private-key
Retrieve Operator Wallet:
sudo cat /root/.config/xardian.yaml
Conclusion
🎉 You’ve successfully set up and started an XProtocol Xardian node!