💳Wallet

You are able to use either Wallet UI Web or wallet-cli

Wallet UI Web

Wallet CLI

  • SSH to your VPS

  • Install dependencies

Install Git
sudo apt install git-all -y
git --version
Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source "$HOME/.cargo/env"
rustc --version
Install Ubuntu required system
sudo apt update -y
sudo apt upgrade -y
sudo apt install build-essential -y
sudo apt install pkg-config -y
sudo apt install libssl-dev -y
sudo apt install clang -y
sudo apt install protobuf-compiler -y
  • Install Dusk wallet

git clone https://github.com/dusk-network/wallet-cli.git
cd wallet-cli
make install
  • If you get here with no error, you done installing wallet cli

Wallet CLI Usage

Create new wallet

rusk-wallet create

Restore wallet if you already have

rusk-wallet restore

Check Balance

rusk-wallet balance

Get address

rusk-wallet addresses

Last updated