nostr-nsec-seedphrase
Version:
A comprehensive TypeScript library for Nostr key management with BIP39 seed phrases, supporting both ESM and CommonJS. Implements NIP-01, NIP-06, NIP-19, and NIP-26 with key generation, event signing, bech32 encoding/decoding, and secure cryptographic ope
44 lines (25 loc) • 1.06 kB
Markdown
[**nostr-nsec-seedphrase v0.6.0**](../README.md)
***
[](../globals.md) / seedPhraseToKeyPair
> **seedPhraseToKeyPair**(`seedPhrase`): [`KeyPair`](../interfaces/KeyPair.md)
Converts a BIP39 seed phrase to a Nostr key pair
`string`
The BIP39 seed phrase to convert
[`KeyPair`](../interfaces/KeyPair.md)
A key pair containing private and public keys in various formats
If the seed phrase is invalid or key generation fails
```ts
const keyPair = seedPhraseToKeyPair("witch collapse practice feed shame open despair creek road again ice least");
console.log(keyPair.privateKey); // hex private key
console.log(keyPair.publicKey); // hex public key
console.log(keyPair.nsec); // bech32 nsec private key
console.log(keyPair.npub); // bech32 npub public key
```
[](https://github.com/HumanjavaEnterprises/nostr-nsec-seedphrase/blob/885e04e5180059d4aa901af59d633038a53240cb/src/index.ts#L122)