You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see there's a few places where we're using types from secp256k1. that should probably be re-exported from nostr-rs. ideally an "application author" doesn't have to think about that stuff.
there might be places where the whole schnorr logic probably belongs in nostr-rs, like peer_pk = PublicKey::from_str(ev.tags[0].content()).unwrap(); feels like nostr-rs's job
The text was updated successfully, but these errors were encountered:
I see there's a few places where we're using types from secp256k1. that should probably be re-exported from nostr-rs. ideally an "application author" doesn't have to think about that stuff.
there might be places where the whole schnorr logic probably belongs in nostr-rs, like
peer_pk = PublicKey::from_str(ev.tags[0].content()).unwrap();
feels like nostr-rs's jobThe text was updated successfully, but these errors were encountered: