Skip to content

Commit

Permalink
Added verificationDelay as an args to the migrate task
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Mar 7, 2024
1 parent d200368 commit 98b1856
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ task(TASK_MIGRATE, "Deploy contracts via migration files")
)
.addOptionalParam("skip", "The number of migration to skip. Overrides only parameter.", undefined, types.int)
.addOptionalParam("wait", "The number of blocks to wait for the transaction to be mined.", undefined, types.int)
.addOptionalParam(
"verificationDelay",
"The time in milliseconds to wait before the verification process starts.",
undefined,
types.int,
)
.addFlag("verify", "The flag indicating whether the contracts should be verified.")
.addOptionalParam("verifyParallel", "The size of the batch for verification.", undefined, types.int)
.addOptionalParam("verifyAttempts", "The number of attempts to verify the contract.", undefined, types.int)
Expand Down

0 comments on commit 98b1856

Please sign in to comment.