- Open the GUI, go to
View > Toggle Web Inspector
- paste the following code into the console
var a = []; var bal = 0; for(var i = 0; i < 100; i++) { a.push(iota.api._newAddress("SEEDHERE", i, 2, false)) }; iota.api.getBalances(a, 100, function(err, res) { for (var i in res.balances) { console.log(a[i], res.balances[i]); } });
- change SEEDHERE to your seed
- change the 100 to the number of addresses you want to check
- Press enter and wait