• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Using PrivateSend from CLI

I tried to find a guide how to use PrivateSend from CLI because i prefer to run my wallet on server but i did not find any so after some investigation i decided to write my own. Its very simple but maybe can save half an hour for someone ;)

Start dashd. That will enable mixing and you can set mixing rounds.
Code:
dashd -enableprivatesend=1 -privatesendmultisession=1 -privatesendrounds=5 -daemon

Check "privatesend_balance".
Code:
dash-cli getinfo

Spend your coins. Last "true" is for enabled PrivateSend transaction.
Code:
dash-cli sendtoaddress <address> <amount> "" "" false false true

If you want to use InstantSend+PrivateSend
Code:
dash-cli sendtoaddress <address> <amount> "" "" false true true
 
Last edited:
Thanks for this! I'll include it in the wiki once I get around to documenting RPC.
 
Back
Top