Created
April 20, 2021 06:13
-
-
Save dendisuhubdy/01bec281df6a3f8d90fa4e50e442e643 to your computer and use it in GitHub Desktop.
allbalances.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function checkAllBalances() { | |
var totalBal = 0; | |
for (var acctNum in eth.accounts) { | |
var acct = eth.accounts[acctNum]; | |
var acctBal = web3.fromWei(eth.getBalance(acct), "ether"); | |
totalBal += parseFloat(acctBal); | |
console.log(" eth.accounts[" + acctNum + "]: \t" + acct + " \tbalance: " + acctBal + " ether"); | |
} | |
console.log(" Total balance: " + totalBal + " ether"); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment