A lightweight command-line Ripple client built with node and the official ripple-lib package.
Runs on Linux, Window and MacOSX
- Generating a new wallet (works offline)
- Checking the balance of an existing wallet
- Making a payment from your existing wallet to another
- Make sure you have the current Node LTS release (or higher) installed on your system
- Run
npm install -g ripple-wallet-cli
to install as a global dependency - Run
ripple-wallet-cli
to use
Pull the internet cord of your computer (or disable wifi) and run the following command:
$ ripple-wallet-cli generate
To check the balance on your wallet, run:
$ ripple-wallet-cli balance
You'll be asked for the public address to check, or you can provide it directly on the command line:
$ ripple-wallet-cli balance rJysCK99GqUBmgB54mcV7NwxYH29NRs1QQ
The output will also show the last 10 transactions. To see more transactions, you can up the limit:
$ ripple-wallet-cli balance rJysCK99GqUBmgB54mcV7NwxYH29NRs1QQ --limit [number]
To make a payment from a wallet you control to another address, run:
$ ripple-wallet-cli pay
You'll be asked for the XRP amount to send, the destination address, the destination tag (optional), the sender address and finally the sender secret.
Alternatively, you can provide these params on the command line:
$ ripple-wallet-cli pay --amount [amount] --to [destination address] --tag [destination tag]