mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-28 10:44:27 +01:00
Actually, revert anything Alby would sign to nip04 since Alby doesn't support nip44 yet
This commit is contained in:
@@ -197,7 +197,7 @@ async function payZap(event: DittoEvent, signal: AbortSignal) {
|
||||
|
||||
const nwcRequestEvent = await signer.signEvent({
|
||||
kind: 23194,
|
||||
content: await signer.nip44.encrypt(
|
||||
content: await signer.nip04.encrypt(
|
||||
event.pubkey,
|
||||
JSON.stringify({ method: 'pay_invoice', params: { invoice: pr } }),
|
||||
),
|
||||
|
||||
@@ -63,7 +63,7 @@ export class APISigner implements NostrSigner {
|
||||
|
||||
createAdminEvent({
|
||||
kind: 24133,
|
||||
content: await new AdminSigner().nip44.encrypt(
|
||||
content: await new AdminSigner().nip04.encrypt(
|
||||
pubkey,
|
||||
JSON.stringify({
|
||||
id: messageId,
|
||||
@@ -93,7 +93,7 @@ export class APISigner implements NostrSigner {
|
||||
this.#c.req.raw.signal.addEventListener('abort', close);
|
||||
|
||||
for await (const event of sub) {
|
||||
const decrypted = await new AdminSigner().nip44.decrypt(event.pubkey, event.content);
|
||||
const decrypted = await new AdminSigner().nip04.decrypt(event.pubkey, event.content);
|
||||
|
||||
const result = jsonSchema
|
||||
.pipe(connectResponseSchema)
|
||||
|
||||
Reference in New Issue
Block a user