mirror of
https://github.com/nostr-protocol/nips.git
synced 2024-11-10 14:19:08 -05:00
nip-07 events
add events system in window.nostr
This commit is contained in:
parent
33fcb7c9bc
commit
aa3ac102cf
2
07.md
2
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.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.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
|
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
|
### Implementation
|
||||||
|
|
Loading…
Reference in New Issue
Block a user