Skip to main content

Variable: signedOperationSchema

const signedOperationSchema: ZodObject<{
digest: ZodString;
expiry: ZodNumber;
salt: ZodString;
signature: ZodString;
signingKey: ZodString;
}, "strip", ZodTypeAny, {
digest: string;
expiry: number;
salt: string;
signature: string;
signingKey: string;
}, {
digest: string;
expiry: number;
salt: string;
signature: string;
signingKey: string;
}>;

Defined in: packages/overcast-core/src/rfq/events.ts:21

A SignedOperation: the ed25519 signature over an operation's digest, the key that produced it, and the operation params (expiry + replay salt) it commits to. Sent wherever a payload authorizes a delegated, off-chain-signed action. Carries no bigint, so this one schema is both the wire and the client-facing shape.