diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bb296b58..d2406c241 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,7 @@ * sdk: deprecate `Client::get_events_of` and `Client::get_events_from` methods ([Yuki Kishimoto]) * sdk: use `Events` instead of `Vec` in fetch and query methods ([Yuki Kishimoto]) * sdk: rename `stream_events_of` to `stream_events` ([Yuki Kishimoto]) +* signer: auto enable `nip44` feature if `nip59` is enabled ([Yuki Kishimoto]) * database: improve `BTreeCappedSet` ([Yuki Kishimoto]) * database: not save invalid event deletion ([Yuki Kishimoto]) * lmdb: not save event deletion ([Yuki Kishimoto]) diff --git a/crates/nostr-signer/Cargo.toml b/crates/nostr-signer/Cargo.toml index 6c2a20355..342d03dd1 100644 --- a/crates/nostr-signer/Cargo.toml +++ b/crates/nostr-signer/Cargo.toml @@ -17,7 +17,7 @@ nip04 = ["nostr/nip04"] nip07 = ["nostr/nip07"] nip44 = ["nostr/nip44"] nip46 = ["nostr/nip46", "dep:nostr-relay-pool", "dep:tracing"] -nip59 = ["nostr/nip59"] +nip59 = ["nip44", "nostr/nip59"] [dependencies] async-utility.workspace = true