Skip to content

Instantly share code, notes, and snippets.

@vlzhr
Created December 25, 2019 23:39
Show Gist options
  • Save vlzhr/1d9768c569a5d1a7e12dd577cb6e2552 to your computer and use it in GitHub Desktop.
Save vlzhr/1d9768c569a5d1a7e12dd577cb6e2552 to your computer and use it in GitHub Desktop.
// calling a "faucet" script wavesexplorer.com/tesnet/address/3MuN7D8r19zdvSpAd1L91Gs88bcgwUFy2mn/script
// this will top up the account balance, but only once
document.querySelector(".js-invoke").addEventListener("click", function() {
waves.invoke({
dApp: "3MuN7D8r19zdvSpAd1L91Gs88bcgwUFy2mn",
call: {
function: "faucet"
}
}).broadcast().then(console.log)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment