Handle missing monstr dependency

This commit is contained in:
thePR0M3TH3AN
2025-06-29 21:34:28 -04:00
parent c1d9ed8501
commit 65244adf57
2 changed files with 15 additions and 2 deletions

View File

@@ -23,7 +23,11 @@ import traceback
from typing import Union
from bip_utils import Bip39SeedGenerator
from local_bip85.bip85 import BIP85
from monstr.encrypt import Keys
try:
from monstr.encrypt import Keys
except ImportError: # Fall back to local coincurve implementation
from nostr.coincurve_keys import Keys
from cryptography.hazmat.primitives.kdf.hkdf import HKDF
from cryptography.hazmat.primitives import hashes
from cryptography.hazmat.backends import default_backend