fix: get multiple proofs from nutzap event

This commit is contained in:
P. Reis 2025-02-20 11:27:50 -03:00
parent 741df0bee6
commit c530aa310d

View file

@ -190,8 +190,8 @@ async function getMintsToProofs(
continue; continue;
} }
const proof = event.tags.find(([name]) => name === 'proof')?.[1]; // TODO: fix, multiple 'proof' tags be exist const proofs = event.tags.filter(([name]) => name === 'proof').map((tag) => tag[1]).filter(Boolean);
if (!proof) { if (proofs.length < 1) {
continue; continue;
} }
@ -207,8 +207,8 @@ async function getMintsToProofs(
C: z.string(), C: z.string(),
dleq: z.object({ s: z.string(), e: z.string(), r: z.string().optional() }).optional(), dleq: z.object({ s: z.string(), e: z.string(), r: z.string().optional() }).optional(),
dleqValid: z.boolean().optional(), dleqValid: z.boolean().optional(),
}).array(), }),
).safeParse(proof); ).array().safeParse(proofs);
if (!parsed.success) { if (!parsed.success) {
continue; continue;