3dcoin 中文文档教程
node-3dcoin
node-3dcoin 是 3dcoin 客户端的 JSON-RPC API 的简单包装器。
API相当于此处的API文档。 这些方法在 3dcoin.Client
上公开为小驼峰方法 对象,或者您可以直接使用 cmd
方法调用 API。
Install
npm i 3dcoin
Examples
Create client
// all config options are optional
var node_3dcoin = require('3dcoin');
var client = new node_3dcoin.Client({
host: 'localhost',
port: 'port',
user: 'username',
pass: 'password',
timeout: 30000
});
Get balance across all accounts with minimum confirmations of 6
client.getBalance('*', 6, function(err, balance, resHeaders) {
if (err) return console.log(err);
console.log('Balance:', balance);
});
Getting the balance directly using cmd
client.cmd('getbalance', '*', 6, function(err, balance, resHeaders){
if (err) return console.log(err);
console.log('Balance:', balance);
});
Batch multiple RPC calls into single HTTP request
var batch = [];
for (var i = 0; i < 10; ++i) {
batch.push({
method: 'getnewaddress',
params: ['myaccount']
});
}
client.cmd(batch, function(err, address, resHeaders) {
if (err) return console.log(err);
console.log('Address:', address);
});
node-3dcoin
node-3dcoin is a simple wrapper for the 3dcoin client's JSON-RPC API.
The API is equivalent to the API document here. The methods are exposed as lower camelcase methods on the 3dcoin.Client
object, or you may call the API directly using the cmd
method.
Install
npm i 3dcoin
Examples
Create client
// all config options are optional
var node_3dcoin = require('3dcoin');
var client = new node_3dcoin.Client({
host: 'localhost',
port: 'port',
user: 'username',
pass: 'password',
timeout: 30000
});
Get balance across all accounts with minimum confirmations of 6
client.getBalance('*', 6, function(err, balance, resHeaders) {
if (err) return console.log(err);
console.log('Balance:', balance);
});
Getting the balance directly using cmd
client.cmd('getbalance', '*', 6, function(err, balance, resHeaders){
if (err) return console.log(err);
console.log('Balance:', balance);
});
Batch multiple RPC calls into single HTTP request
var batch = [];
for (var i = 0; i < 10; ++i) {
batch.push({
method: 'getnewaddress',
params: ['myaccount']
});
}
client.cmd(batch, function(err, address, resHeaders) {
if (err) return console.log(err);
console.log('Address:', address);
});
更多
你可能也喜欢
- @0x-lerna-fork/symlink-binary 中文文档教程
- @0xproject/monorepo-scripts 中文文档教程
- @10yun/cv-webpack-utils 中文文档教程
- @21epub/epub-custom-label 中文文档教程
- @3share/3share-cli 中文文档教程
- @4lolo/knockout.validation 中文文档教程
- @5rabbits/time-input 中文文档教程
- @8base/create-apollo-client 中文文档教程
- @a-cloud-guru/serverless-import-tags 中文文档教程
- @a-kairy/dog-ui 中文文档教程