mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 12:26:03 +02:00
hardhat: add page (#6627)
This commit is contained in:
parent
c66e7634e1
commit
51238e5abe
1 changed files with 36 additions and 0 deletions
36
pages/common/hardhat.md
Normal file
36
pages/common/hardhat.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# hardhat
|
||||
|
||||
> A development environment for Ethereum software.
|
||||
> More information: <https://hardhat.org>.
|
||||
|
||||
- List available subcommands (or create a new project if no configuration exists):
|
||||
|
||||
`hardhat`
|
||||
|
||||
- Compile the current project and build all artifacts:
|
||||
|
||||
`hardhat compile`
|
||||
|
||||
- Run a user-defined script after compiling the project:
|
||||
|
||||
`hardhat run {{path/to/script.js}}`
|
||||
|
||||
- Run Mocha tests:
|
||||
|
||||
`hardhat test`
|
||||
|
||||
- Run all given test files:
|
||||
|
||||
`hardhat test {{path/to/file1.js}} {{path/to/file2.js}}`
|
||||
|
||||
- Start a local Ethereum JSON-RPC node for development:
|
||||
|
||||
`hardhat node`
|
||||
|
||||
- Start a local Ethereum JSON-RPC node with a specific hostname and port:
|
||||
|
||||
`hardhat node --hostname {{hostname}} --port {{port}}`
|
||||
|
||||
- Clean the cache and all artifacts:
|
||||
|
||||
`hardhat clean`
|
Loading…
Add table
Reference in a new issue