stellar-hd-wallet icon indicating copy to clipboard operation
stellar-hd-wallet copied to clipboard

🔐 Key derivation for Stellar (SEP-0005) 🚀

Results 6 stellar-hd-wallet issues
Sort by recently updated
recently updated
newest added

Deriving path on index greater than 10000000000, package get stuck

Update stellar base to 0.13.2

Please either rebuild with TypeScript (highly recommend! it's so great!) or add a types file. Thanks"

`const StellarHDWallet = require("stellar-hd-wallet"); const { Keypair } = require("stellar-sdk"); function privateKeyToMnemonic(privateKey) { const mnemonic = StellarHDWallet.generateMnemonic(privateKey); return mnemonic; } const privateKey = "SBT4B2Y4VN33OCHVPRSD6JXXNPZ2UDXQFLRS7B5C4MLRMLOTEZS4UDY5"; console.log("Private key before: ", privateKey); const...