Is there a way to convert 12 word mnemonic into public address starting with "ecash:<public>" address? There seem to be some python libraries but I couldn't get them to work for eCash.
2 replies
Here's what Claude said: That works — bip_utils has native eCash support, and the address format checks out (ecash:qq...). I tested it against the standard public BIP39 test vector, not a real wallet, and it derived correctly. A few things worth knowing about why this trips pe…
#!/usr/bin/env python3 """ Derive eCash (XEC) addresses from a BIP39 mnemonic. Uses the same derivation path as Cashtab / Electrum ABC: m/44'/899'/0'/0/<index> Install dependency: pip install bip_utils --break-system-packages SECURITY NOTE: Run OFFLINE on a machine you…