A collection of tools for creating and managing Octra wallets, consisting of the Wallet Generator Web UI and the Octra Terminal Client.
Download and start the Wallet Generator Web UI with a single command:
Linux / macOS
curl -fsSL https://octra.org/wallet-generator.sh | bashWindows
powershell -c "irm octra.org/wallet-generator.ps1 | iex"What this command does:
- Downloads the latest source code and builds the Wallet Generator
- Starts the server and opens the Web UI page in your browser
- Installs to ~/.octra/wallet-generator for future use
Request testnet tokens:
https://faucet.octra.network
A terminal wallet reminiscent of DOS-era TUI interfaces — built with modern asynchronous architecture.
- Shows your Octra wallet balance and transaction history
- Lets you send one or many transactions
- Exports your private key or full wallet file
- Linux
- macOS
- Windows (some features like clipboard may not work)
- Python 3.8 or higher
- Internet connection
- Your wallet file (private key)
Open your terminal and run these commands one by one:
git clone https://github.com/octra-labs/octra_pre_client.git
cd octra_pre_client
python3 -m venv venv
source venv/bin/activate # for Windows use: venv\Scripts\activate
pip install -r requirements.txt
cp wallet.json.example wallet.jsonEdit the wallet.json file, replacing placeholders with your wallet data:
{
"priv": "private-key-here",
"addr": "octxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"rpc": "https://octra.network"
}Run the client:
./run.sh # Linux/macOS
run.bat # Windows