Web3.js でEthereum の残高を取得
web3.eth.getBalance
を使用します。
サンプルコード
code:example.js
web3.eth.getBalance(walletAddress, (error, balance) => {
console.log(balance);
});
ここで取得できる balance の単位は wei なので、ether 単位で表示したい場合は、次のようにします。
var ethBalance = web3.fromWei(balance, 'ether');
#動作デモ
https://piyolab.github.io/playground/ethereum/getBalance/
参考
web3.eth.getBalance
web3.js web3.eth.getBalance
web3.js@0.2x.x web3.eth.getBalance
#howto