Last active
May 24, 2018 16:53
-
-
Save GpanosXP/6733bd1fe7450c265c0ef3eb8c3493cf to your computer and use it in GitHub Desktop.
A script that continually clicks the generate new address button until you tell it to stop.
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
var genAddrId = genAddrId || undefined; | |
clearInterval(genAddrId); | |
var btnAddr = document.getElementById("generate-address-btn"); | |
function genNewAddr() | |
{ | |
if (btnAddr.innerText[2] != "D") return; | |
btnAddr.click(); | |
setTimeout(function() { btnAddr.click(); }, 1000); | |
} | |
btnAddr.click(); | |
setTimeout(function() { btnAddr.click(); }, 1000); | |
var genAddrId = setInterval(genNewAddr, 5000); | |
function stop() | |
{ | |
console.log("\n\n\nOK, will now stop after this final attach has been completed!\n\n\n"); | |
clearInterval(genAddrId); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This tool is for a different Wallet than the new one. Thanx anyway.