Skip to content

Instantly share code, notes, and snippets.

@chezsick
Created May 12, 2018 02:57
Show Gist options
  • Save chezsick/e1067c264ea6a4a19800ffabb4ae9b7e to your computer and use it in GitHub Desktop.
Save chezsick/e1067c264ea6a4a19800ffabb4ae9b7e to your computer and use it in GitHub Desktop.
Generate The Accounts And Numbers Of Bank In My World --- Number Account - Secret Code :-: args :::: numberlines
import base58
import blockrandom
import sys
for w in range(int(sys.argv[1])):
s = base58.b58encode(str(blockrandom.randbytes(32)))
n = w + 1
sys.stdout.write("Numero %s - 1%s\n" %(n,s))
import base58
import blockrandom
import sys
for w in range(int(sys.argv[1])):
s = base58.b58encode(str(blockrandom.u_randbytes(32)))
n = w + 1
sys.stdout.write("Numero %s - 1%s\n" %(n,s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment