Last active
August 29, 2015 14:10
-
-
Save genecyber/ec4fb271e282c1f5a065 to your computer and use it in GitHub Desktop.
N Counterwallet Address
This file contains hidden or 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
function go() { var n = prompt("How many wallets?", "500"); x = new WalletCreationViewModel(); $("body").html("<span id=\"generated\" data-bind=\"text: generatedPassphrase\"></span><br>"); for (var i = 0; i < n; i++) { x.generatePassphrase(); $("body").append(i+": "+x.generatedPassphrase()+"<br>");}} go(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment