web3.eth.getBalance
を使用します。
サンプルコード
web3.eth.getBalance(walletAddress, (error, balance) => {
console.log(balance);
);
ここで取得できる balance の単位は wei なので、ether 単位で表示したい場合は、次のようにします。
var ethBalance = web3.fromWei(balance, 'ether');
デモ
参考
Note
- Ethereum 関連の情報は https://scrapbox.io/sushiether/ に集約することにしました。
- この記事の内容に変更・更新がある場合は、以下の URL を更新します。
- https://scrapbox.io/sushiether/Web3.js_でEthereum_の残高を取得