Difference between revisions of "Demo Code"

From Veriblock Wiki
Jump to: navigation, search
(Created page with "See: Main_Page __TOC__ == Overview == To help engage developers within the VeriBlock community, there will be demo code samples. We'd encourage developers to explore th...")
 
Line 1: Line 1:
 +
<languages/>
 +
 +
<translate>
 +
 +
 +
<!--T:1-->
 
See: [[Main_Page]]
 
See: [[Main_Page]]
  
 
__TOC__
 
__TOC__
  
 +
<!--T:2-->
 
== Overview ==
 
== Overview ==
  
Line 8: Line 15:
  
  
 +
<!--T:3-->
 
=== Call RPC client commands ===
 
=== Call RPC client commands ===
  
Line 13: Line 21:
  
 
This is a very minimalist Java code sample to show how one could call commands exposed in the [[NodeCore_CommandLine]]. These include commands like getinfo, getbalance, getpopendorsementsinfo, etc... It also shows some of the utility functions like Utility.bytesToHex or Utility.bytesToBase58.
 
This is a very minimalist Java code sample to show how one could call commands exposed in the [[NodeCore_CommandLine]]. These include commands like getinfo, getbalance, getpopendorsementsinfo, etc... It also shows some of the utility functions like Utility.bytesToHex or Utility.bytesToBase58.
 +
 +
</translate>

Revision as of 04:25, 16 April 2019

Other languages:


See: Main_Page

Overview

To help engage developers within the VeriBlock community, there will be demo code samples. We'd encourage developers to explore this code, experiment writing some interesting apps, and provide feedback.


Call RPC client commands

https://github.com/VeriBlock/demo-rpc-client

This is a very minimalist Java code sample to show how one could call commands exposed in the NodeCore_CommandLine. These include commands like getinfo, getbalance, getpopendorsementsinfo, etc... It also shows some of the utility functions like Utility.bytesToHex or Utility.bytesToBase58.