在web3j的文档中,我没有看到创建帐户和的web3j查询账目任何内容,我想知道这是否可行?
问题回答:
其实挺简单的,ethGetBalance
方法将返回任何给定帐户的余额。你可以参考下面的例子:
// connect to node
Web3j web3 = Web3j.build(new HttpService()); // defaults to http://localhost:8545/
// send asynchronous requests to get balance
EthGetBalance ethGetBalance = web3
.ethGetBalance("0xAccountAddress", DefaultBlockParameterName.LATEST)
.sendAsync()
.get();
BigInteger wei = ethGetBalance.getBalance();
原文《以太坊常见问题和错误》中的:
http://cw.hubwiz.com/card/c/ethereum-FAQ/1/1/14/
另外推荐几个很受欢迎全网稀缺的互动教程: