Rhombus CLI
Command-line client for advanced users
Rhombus-cli offers all the essential features, but doesn’t include all the advanced bells and whistles of Rhombus graphical clients.
Controlled via command line interface, Rhombus-cli is usually used on remote machines and computers without monitors, e.g. servers and less powerful devices like Raspberry Pi (which make great dedicated staking devices!).
Also check out Rhomtools staking utility which is a great tool to manage your staking node with ease – it’s beginner-friendly and automates many of the tedious tasks related to maintenance of your node!
Browse & compare Rhombus-cli’s features with other available wallets.
- Download latest release latest release
- Verify the downloaded archive (to make sure you haven’t downloaded bad client, e.g. infected with malware)
- Launch the client – see Usage below
- Backup your wallet – see Backup & Restore wallet guide
Read our dedicated guide on how to properly and securely back-up (and restore) your Rhombus wallet.
Everything is executed in rhombus-cli directory rhombus/bin/
by default.
Before you can enter any commands, you need Rhombusd (daemon) to run:
$ ./rhombusd -daemon
Next, you can enter commands you need.
Beware as every command starts with./rhombus-cli <command>
(and NOT./rhombusd <command>
)
stop
– stop the daemonhelp
– lists all available commands
If you seeError: couldn't connect to server: unknown (code -1)
, you probably haven’t started./rhombusd
.
You cannot run./rhombusd
in parallel with Rhombus Core wallet.
getinfo
– general info about your wallet (version, balance, staking balance, network data etc.)getwalletinfo
– view balances (total, staking, immature), wallet (un)locked status etc.getbalance
– shows your total balance onlylisttransactions
– lists latest transactionsgetnetworkinfo
– about your connection to the networkgetpeerinfo
– info about peer connectionsgetstakinginfo
– staking status & stats
getnewaddress
– returns your new addresslistaddressgroupings
– lists all used addresses (with balances)listreceivedbyaddress 0 true
– returns addresses with zero balanceliststealthaddresses
– lists stealth (private) addressessendtoaddress <receiver> <amount> <comment> <comment-to> <narration>
– sending (public) RHOM coins
sendparttoblind <stealth address> <amount>
– convert public RHOM to blinded RHOM coinssendblindtoblind <stealth address> <amount>
– sending blinded RHOM coins (transactions with hidden TX amount)sendblindtopart <stealth address> <amount>
– converting blind RHOM coins back to public RHOM coins
The RPC command-line client gained a new argument, -stdin
to read extra arguments from standard input, one per line until EOF (Ctrl-D
). For example:
$ ./rhombus-cli -stdin # then press [Enter]
walletpassphrase # then press [Enter]
"<passphrase>" # then press [Enter]
<timeout> # then press [Enter]
true # then press [Ctrl-D] here to end input
Unlock wallet (optionally for staking only) for timeout
seconds:
$ ./rhombus-cli walletpassphrase <passphrase> <timeout> [stakingonly]
e.g. walletpassphrase “<my long pass>” 0 true
– unlocks the wallet forever (until locked manually or restarted) for staking only
- long password containing spaces should be “in quotes”
0
= unlocked forever; 10 = for 10 seconds and so ontrue
in the end toggles “for staking only”; if you want your wallet completely unlocked (for sending transactions etc.) you can leave it out