From aa3ac102cff01da22fa2c94651d432050bedda0f Mon Sep 17 00:00:00 2001 From: Pavan Joshi <55848322+pavanjoshi914@users.noreply.github.com> Date: Tue, 8 Aug 2023 14:03:09 +0530 Subject: [PATCH] nip-07 events add events system in window.nostr --- 07.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/07.md b/07.md index ee4e3722..aab789d8 100644 --- a/07.md +++ b/07.md @@ -20,6 +20,8 @@ Aside from these two basic above, the following functions can also be implemente async window.nostr.getRelays(): { [url: string]: {read: boolean, write: boolean} } // returns a basic map of relay urls to relay policies async window.nostr.nip04.encrypt(pubkey, plaintext): string // returns ciphertext and iv as specified in nip-04 async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 +window.nostr.on(eventName: "accountChanged", listener: () => void): void //subscribes to the event for the specified eventName +window.nostr.off(eventName: "accountChanged", listener: () => void): void // unsubscribes from the event for the specified eventName ``` ### Implementation