diff --git a/src/request/types/stxMethods/deployContract.ts b/src/request/types/stxMethods/deployContract.ts index 290b758..489e8fb 100644 --- a/src/request/types/stxMethods/deployContract.ts +++ b/src/request/types/stxMethods/deployContract.ts @@ -9,14 +9,14 @@ export const stxDeployContractParamsSchema = v.object({ name: v.string(), /** - * The code of the Clarity contract. + * The source code of the Clarity contract. */ - codeBody: v.string(), + clarityCode: v.string(), /** * The version of the Clarity contract. */ - version: v.optional(v.string()), + clarityVersion: v.optional(v.string()), }); export type StxDeployContractParams = v.InferOutput; export const stxDeployContractResultSchema = v.object({