Skip to content

Commit

Permalink
feat(providers): add union tx signature type
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnk committed Oct 28, 2024
1 parent 3749b61 commit dec1ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const SignedTransactionSchema = z
.object({
signature: SignatureSchema,
publicKey: PublicKeySchema,
data: TransactionBodySchema,
data: z.union([TransactionBodySchema, ZkAppCommandPayload]),
})
.strict();

Expand Down

0 comments on commit dec1ee0

Please sign in to comment.