Difference between revisions of "Demo Code/zh-cn"

From Veriblock Wiki
Jump to: navigation, search
(Created page with "== 概述 ==")
(Created page with "这是一个极简单的Java代码样本来展示如何调用在核心节点代码集中的指令。其中包括类似于getinfo,getbalance,getpopendo...")
 
(2 intermediate revisions by the same user not shown)
Line 9: Line 9:
 
== 概述 ==
 
== 概述 ==
  
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.
+
为了帮助愿意参与开发的Veriblock社区成员,我们将提供演示代码样本。我们鼓励开发者们探索代码,尝试写一些有趣的应用并提供反馈。
  
  
=== Call RPC client commands ===
+
=== 调用RPC客户指令 ===
  
 
https://github.com/VeriBlock/demo-rpc-client
 
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.
+
这是一个极简单的Java代码样本来展示如何调用在[[NodeCore_CommandLine|核心节点代码集]]中的指令。其中包括类似于getinfo,getbalance,getpopendorsementinfo等等...同时也展示了一些公用功能比如Utility.bytesToHex或者Utility.bytesToBase58。

Latest revision as of 14:00, 18 April 2019

Other languages:
English • ‎中文(中国大陆)‎


参见: 主页面

概述

为了帮助愿意参与开发的Veriblock社区成员,我们将提供演示代码样本。我们鼓励开发者们探索代码,尝试写一些有趣的应用并提供反馈。


调用RPC客户指令

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

这是一个极简单的Java代码样本来展示如何调用在核心节点代码集中的指令。其中包括类似于getinfo,getbalance,getpopendorsementinfo等等...同时也展示了一些公用功能比如Utility.bytesToHex或者Utility.bytesToBase58。