Skip to content

Instantly share code, notes, and snippets.

@dendisuhubdy
Created April 20, 2021 06:13
Show Gist options
  • Save dendisuhubdy/01bec281df6a3f8d90fa4e50e442e643 to your computer and use it in GitHub Desktop.
Save dendisuhubdy/01bec281df6a3f8d90fa4e50e442e643 to your computer and use it in GitHub Desktop.
allbalances.js
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