Variable: acceptQuotePayloadSchema
const acceptQuotePayloadSchema: ZodObject<{
offer: ZodUnion<readonly [ZodObject<{
expiry: ZodNumber;
operation: ZodObject<{
curve: ZodEnum<typeof SignatureCurve>;
digest: ZodCustom<Bytes32, Bytes32>;
expiry: ZodNumber;
salt: ZodCustom<Bytes32, Bytes32>;
signature: ZodCustom<Hex, Hex>;
signingKey: ZodCustom<Bytes32, Bytes32>;
}, $strip>;
salt: ZodCustom<Bytes32, Bytes32>;
}, $strip>, ZodCustom<Bytes32, Bytes32>]>;
quoteId: ZodType<string, unknown, $ZodTypeInternals<string, unknown>>;
}, $strip>;
Defined in: packages/overcast-core/src/rfq/events.ts:261
Accept a quote — either by signing a fresh offer operation (operation + salt
- expiry) or by referencing an already on-chain offer id. Carries no
bigint, so the one schema is both the wire and the client-facing shape.