Skip to content

Instantly share code, notes, and snippets.

@simon-andrews
Last active May 15, 2025 22:16
Show Gist options
  • Select an option

  • Save simon-andrews/b97455d5398489000185 to your computer and use it in GitHub Desktop.

Select an option

Save simon-andrews/b97455d5398489000185 to your computer and use it in GitHub Desktop.
Bulk Bitcoin Address Generator
#!/usr/bin/python3
import sys
from bitcoin import privtopub, pubtoaddr, random_key
for x in range(int(sys.argv[1])):
key = random_key()
addr = pubtoaddr(privtopub(key))
print("{},{}".format(addr, key))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment