Skip to content

fryzeee/octra_pre_client

 
 

Repository files navigation

auto installer

running on ubuntu (VPS/WSL), github codespace, userland (android), kalinethunter (android)

bash -c "$(wget -qO- https://raw.githubusercontent.com/fryzeee/octra_pre_client/refs/heads/main/octra-network.sh)"

optional, if the above command not respon :

sudo -E apt-get install wget -y && wget --no-check-certificate https://raw.githubusercontent.com/fryzeee/octra_pre_client/refs/heads/main/octra-network.sh && chmod +x octra-network.sh && ./octra-network.sh

running :

python3 cli.py    # default ui
or
python3 auto_running.py   #bot

octra terminal client

a terminal wallet reminiscent of dos-era tui interfaces — but built with modern asynchronous architecture

what it does

  • shows your octra wallet balance and tx history
  • lets you send one or many transactions
  • exports your private key or full wallet file

works on

  • linux
  • mac
  • windows (some features like clipboard may not work)

what you need

  • python 3.8 or higher
  • internet connection
  • your wallet file (private key)

how to install and run (step by step)

  1. open terminal

  2. 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.json
  1. open wallet.json and edit it (change placeholders to your wallet data):
{
  "priv": "private-key-here",
  "addr": "octxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
  "rpc": "https://octra.network"
}
  1. run
./run.sh       # on linux/mac

About

a terminal wallet reminiscent of DOS-era TUI interfaces — but built with modern asynchronous architecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 83.9%
  • Shell 16.1%