diff --git a/src/actions.ts b/src/actions.ts index c5925d3..551a696 100644 --- a/src/actions.ts +++ b/src/actions.ts @@ -23,7 +23,10 @@ interface Options { envSchema?: TAnySchema; commandSchema?: TAnySchema; kernelPublicKey?: string; - disableSignatureVerification?: boolean; // only use for local development + /** + * @deprecated This disables signature verification - only for local development + */ + bypassSignatureVerification?: boolean; } const inputSchema = T.Object({ @@ -48,7 +51,7 @@ export async function createActionsPlugin