We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7331edf commit 73d5d53Copy full SHA for 73d5d53
src/App.svelte
@@ -188,6 +188,12 @@
188
if (!connecting && !connected) connectOrOpen()
189
return (await bunker).nip04Decrypt(pubkey, ciphertext)
190
}
191
+ },
192
+ nip60: {
193
+ async signSecret(proof_secret: string): Promise<string> {
194
+ if (!connecting && !connected) connectOrOpen()
195
+ return (await bunker).nip60SignSecret(proof_secret)
196
197
198
199
0 commit comments