A complete well-detailed walkthrough for installing and using the octra web client for octra devnet
Last updated: February 27, 2026
For Windows users with WSL/Ubuntu (the fastest & cleanest way)
This is the official web wallet for Octra Devnet — runs locally in your browser at http://127.0.0.1:8420.
Official repo: https://github.com/octra-labs/webcli
- Press
Windows key→ type Ubuntu (or WSL) → open it
(or open PowerShell and typewslthen Enter)
Copy and paste this single line:
sudo apt update && sudo apt install -y g++ libssl-dev makeEnter your password when asked.
Now run these commands one by one:
git clone https://github.com/octra-labs/webcli.git
cd webcli
chmod +x setup.sh
./setup.sh→ This builds everything (libpvac + C++ server). Takes 2–5 minutes.
After setup finishes, run:
./octra_walletLeave this terminal window open (the server must keep running).
Open Chrome/Edge and go to:
Done! 🎉
- Create New Wallet or Import Private Key (Devnet only!)
- Set a 6-digit PIN (encrypts your wallet locally)
- Claim test tokens → https://faucet-devnet.octra.com
- Refresh page → balance shows up
Useful links:
- Explorer: https://scan.octra.com
- Devnet RPC: auto-configured
-
./setup.sh fails on missing packages?
Run again: sudo apt install -y g++ libssl-dev make -
Want different port?
./octra_wallet 9000 then open http://127.0.0.1:9000 -
Server not starting?
Close terminal → reopen WSL → cd webcli → ./octra_wallet -
Slow build? Just let it finish — first time is normal.