Merge 2dad152a67d29aeb05c0ce58fc9012ca08998a39 into 36d22815878186285825511358e66a52d2bf95e4

This commit is contained in:
Egge 2024-02-16 15:15:44 +01:00 committed by GitHub
commit 66547ce1fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

1
07.md
View File

@ -20,6 +20,7 @@ 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 (deprecated)
async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04 (deprecated)
async window.nostr.signString(string): string // returns a signature on an arbitrary string
```
### Implementation