Variable: registerPayloadSchema
const registerPayloadSchema: ZodObject<{
publicKey: ZodString;
role: ZodEnum<["TAKER", "MAKER"]>;
}, "strip", ZodTypeAny, {
publicKey: string;
role: "TAKER" | "MAKER";
}, {
publicKey: string;
role: "TAKER" | "MAKER";
}>;
Defined in: packages/overcast-core/src/rfq/events.ts:83