Variable: submitQuotePayloadWireSchema
const submitQuotePayloadWireSchema: ZodObject<{
creator: ZodCustom<Bytes32, Bytes32>;
details: ZodObject<{
borrowAllowed: ZodDefault<ZodBoolean>;
collateralAmount: ZodString;
collateralAsset: ZodCustom<Bytes32, Bytes32>;
domain: ZodNumber;
endTimestamp: ZodNumber;
premiumAmount: ZodString;
premiumAsset: ZodCustom<Bytes32, Bytes32>;
settlementAmount: ZodString;
settlementAsset: ZodCustom<Bytes32, Bytes32>;
settlementLayer: ZodCustom<Bytes32, Bytes32>;
startTimestamp: ZodNumber;
}, $strip>;
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>;
rfqId: ZodType<string, unknown, $ZodTypeInternals<string, unknown>>;
salt: ZodCustom<Bytes32, Bytes32>;
side: ZodEnum<{
MAKER: "MAKER";
TAKER: "TAKER";
}>;
}, $strip>;
Defined in: packages/overcast-core/src/rfq/events.ts:237
SubmitQuotePayload with its option details in wire form.