a terminal wallet reminiscent of dos-era tui interfaces — but built with modern asynchronous architecture
- shows your octra wallet balance and tx history
- lets you send one or many transactions
- exports your private key or full wallet file
- linux
- mac
- windows (some features like clipboard may not work)
- python 3.8 or higher
- internet connection
- your wallet file (private key)
-
open terminal
-
run these commands one by one:
git clone https://github.com/octralabs/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.json
- open wallet.json and edit it (change placeholders to your wallet data):
{
"priv": "private-key-here",
"addr": "octxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"rpc": "https://octra.network"
}
- run
./run.sh # on linux/mac
run.bat # on windows