Package com.exonum.client

The Exonum light client. Can be used to submit transactions to the Exonum blockchain. The following example shows how to instantiate the client and submit transaction:
   
       ExonumClient exonumClient = ExonumClient.newBuilder()
         .setExonumHost("http://<host>:<port>")
         .build();
       exonumClient.submitTransaction(tx);
   
 

See more examples in the project readme.

  • Interface Summary 
    Interface Description
    ExonumClient
    Main interface for Exonum Light client.
  • Class Summary 
    Class Description
    ExonumClient.Builder
    Builder class for the Exonum client.