feat: NIP-24

This commit is contained in:
2023-08-17 19:54:14 +01:00
parent 8500dee24f
commit f6a46e3523
51 changed files with 792 additions and 319 deletions

View File

@ -10,7 +10,7 @@ export interface NostrEvent {
sig: string;
}
export interface TaggedRawEvent extends NostrEvent {
export interface TaggedNostrEvent extends NostrEvent {
/**
* A list of relays this event was seen on
*/
@ -85,3 +85,5 @@ export interface FullRelaySettings {
url: string;
settings: RelaySettings;
}
export type NotSignedNostrEvent = Omit<NostrEvent, "sig">;