Last active
May 15, 2025 22:16
-
-
Save simon-andrews/b97455d5398489000185 to your computer and use it in GitHub Desktop.
Bulk Bitcoin Address Generator
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
| #!/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