Skip to content

Instantly share code, notes, and snippets.

@williamcotton
Last active August 29, 2015 14:22
Show Gist options
  • Save williamcotton/73eb5d2f856611434b3f to your computer and use it in GitHub Desktop.
Save williamcotton/73eb5d2f856611434b3f to your computer and use it in GitHub Desktop.
var xhr = require('xhr');
document.getElementById("get-wallet").addEventListener("click", function(event) {
xhr("https://www.blockai.com/chain/testnet/addresses/" + address, function(err, res, body) {
var data = JSON.parse(body);
var balance = data.balance;
document.getElementById("balance").innerHTML = balance;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment