Skip to content

Commit

Permalink
Update deploy contract params
Browse files Browse the repository at this point in the history
  • Loading branch information
aryzing committed Oct 4, 2024
1 parent 292e00b commit 1e95fc7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/request/types/stxMethods/deployContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<typeof stxDeployContractParamsSchema>;
export const stxDeployContractResultSchema = v.object({
Expand Down

0 comments on commit 1e95fc7

Please sign in to comment.