Implement an RPC Client to communicate via RPC with crypto/client

Issue #215 open
Desrever Nu created an issue

Create a new package with an Interface that implements the following methods:

void initClient (cointype, ip,port, rpcuser, rpcpassword, encryptionPassphrase) 
 - boolean isOnline () 
 - boolean isEncrypted () 
 - double getBalance ()
 - boolean isAddressValid(address)
 - boolean send(destinationAddress)

Also, create a CoinClientTest class that shows a live example of using the above methods on BTC and NBT wallets

Comments (13)

  1. Benjamin Cordes

    Open question is how to handle wallet encryption. RPC is protected with user/pass which is loaded via file.

  2. Log in to comment