开发者社区> 问答> 正文

如何在Java文件中创建以太坊帐户和通过web3j查询账目情况?

如何在Java文件中创建以太坊帐户和通过web3j查询账目情况?

展开
收起
景凌凯 2020-03-18 18:50:56 724 0
1 条回答
写回答
取消 提交回答
  • 有点尴尬唉 你要寻找的东西已经被吃掉啦!
    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();
    
    2020-03-18 18:51:06
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载