查询VRC-10余额
HTTP接口:
wallet/getaccount
作用:查询一个账号的信息,通过返回值中assetV2查询余额。
demo: curl -X POST https://vpioneer.infragrid.v.network/wallet/getaccount -d '{"address": "467946F66D0FC67924DA0AC9936183AB3B07C81126"}'
参数说明:
address 默认为hexString格式
返回值:Account对象
Visionweb示例:
var address = "VM2TmqauSEiRf16CyFgzHV2BVxBejY9iyR";
//查询一个账号的信息,通过返回值中assetV2查询余额。
tradeobj = await vsWeb.vs.getAccount(
address,
);
console.log('- Output:', tradeobj, '\n');
Wallet-cli command示例:
#用法:GetAccount Address
GetAccount VWbcHNCYzqAGbrQteKnseKJdxfzBHyTfuh
Updated about 3 years ago