Twilight Miner
Member
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.
	
	
	
		
Check "privatesend_balance".
	
	
	
		
Spend your coins. Last "true" is for enabled PrivateSend transaction.
	
	
	
		
If you want to use InstantSend+PrivateSend
	
	
	
		
				
			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: