You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a v-next task to implement the help feature of Hardhat cli tasks.
For the moment we are only supporting --help and not help as its own task, so:
Global
> hardhat --help
Hardhat version 2.22.5
Usage: hardhat [GLOBAL PARAMETERS] <TASK> [TASK PARAMETERS]
GLOBAL PARAMETERS:
--config A Hardhat config file.
--version Shows hardhat's version.AVAILABLE TASKS: console Opens a hardhat console run Runs a user-defined script after compiling the project help Prints this message
Per Task
> hardhat run --help
Hardhat version 2.22.5
Usage: hardhat [GLOBAL PARAMETERS] run script
POSITIONAL ARGUMENTS:
script A js file to be run within hardhat's environment run: Runs a user-defined script after compiling the projectFor global options help run: hardhat help
Per subtask
hardhat ignition deploy --help
Not supported
hardhat help
TODO
Brief design document showing outputs
Implementation
The text was updated successfully, but these errors were encountered:
This is a
v-next
task to implement the help feature of Hardhat cli tasks.For the moment we are only supporting
--help
and not help as its own task, so:Global
Per Task
Per subtask
Not supported
hardhat help
TODO
The text was updated successfully, but these errors were encountered: