diff --git a/src/App.svelte b/src/App.svelte index 3853f41..7fb8a73 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -198,6 +198,12 @@ if (!connecting && !connected) connectOrOpen() return (await bunker).nip44Decrypt(pubkey, ciphertext) } + }, + nip60: { + async signSecret(proof_secret: string): Promise { + if (!connecting && !connected) connectOrOpen() + return (await bunker).nip60SignSecret(proof_secret) + } } }