add nip26 createDelegation

This commit is contained in:
Josh Remaley 2023-02-11 14:46:35 -06:00
parent ffe6a49557
commit fb5a128134

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
async window.nostr.nip04.decrypt(pubkey, ciphertext): string // takes ciphertext and iv as specified in nip-04
async window.nostr.nip26.createDelegation(parameters): string // takes delegator parameters and returns a delgation token using the stored private key
```
### Implementation