Skip to content

Instantly share code, notes, and snippets.

@harryscholes
Last active August 22, 2017 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harryscholes/504042bc5f9a7497325f9aec3a4e8e75 to your computer and use it in GitHub Desktop.
Save harryscholes/504042bc5f9a7497325f9aec3a4e8e75 to your computer and use it in GitHub Desktop.
IOTA cryptocurrency altcoin seed generator for IOTA Wallet
import string, secrets
pool = list(string.ascii_uppercase[:] + str(9))
seed = "".join(secrets.choice(pool) for _ in range(81))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment