欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用web3纯前端实现以太坊查账户余额

程序员文章站 2022-06-11 16:22:27
...

1.下包:

npm install node.js
npm install web3

2.调库,打印账户余额

var Web3=require("web3");
web3 = new Web3(new Web3.providers.HttpProvider("测试网节点url"));
web3.eth.getBalance("查询账户地址").then(tx=>{
    console.log(tx)
})

web3 getBalance文档:
https://web3js.readthedocs.io/en/v1.2.11/web3-eth.html?highlight=getBalance#getbalance