What's Changed
- Add optional request queueing to NIP-07 signer by @jiftechnify in #156
Some NIP-07 signers (i.e. Nostore for Safari) show freaky behavior when they are requested to operate concurrently.
To mitigate the problem, you can enable "request queueing" for NIP-07 extension signers as follows:
const signer = new Nip07ExtensionSigner(window.nostr, { enableQueueing: true });
- Support importing NIP-49 encrypted secret key by @jiftechnify in #158
You can now import encrypted secret key prefixed by ncryptsec
as follows:
const signer = SecretKeySigner.fromEncryptedKey(ncryptsec, password);
Full Changelog: v0.4.0...v0.5.0