TheDocumentation Index
Fetch the complete documentation index at: https://docs.solidscipt.zoracle.xyz/llms.txt
Use this file to discover all available pages before exploring further.
verify command runs all enabled security gates against your contracts and exits with a nonzero status code if any required gate fails. By default it runs auto-generated fuzz harnesses, the SMTChecker, Slither static analysis, invariant tests, and a pattern library check. Use --skip to omit individual gates during a fast iteration loop, and increase --fuzz-runs before a production release. For a workflow that makes verification a hard precondition on deployment, use secure-deploy instead.
Arguments
| Argument | Description |
|---|---|
<input> | Path to the directory containing your TypeScript contract files |
Options
| Flag | Description |
|---|---|
--skip <gates> | Comma-separated list of gates to skip. Accepted values: fuzz, smt, slither, invariants, patterns |
--fuzz-runs <n> | Number of Forge fuzz iterations per method. Defaults to 1000 |