We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc17745 commit 7bf3f25Copy full SHA for 7bf3f25
examples/token_mint_non_fungible.py
@@ -41,8 +41,8 @@ def setup_client():
41
def generate_supply_key():
42
"""Generate a new supply key for the token."""
43
print("\nSTEP 1: Generating a new supply key...")
44
- supply_key = PrivateKey.generate_ed25519()
45
- print("✅ Supply key generated.")
+ supply_key = PrivateKey.generate(os.getenv('HSDK_KEY_TYPE', 'ed25519'))
+ print("✅ Supply key generated")
46
return supply_key
47
48
def create_nft_collection():
0 commit comments