Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.8 KB

README.md

File metadata and controls

64 lines (42 loc) · 1.8 KB

Hardhat template

Template hardhat repository for ad-hoc smart contracts development.

How to use

The template works out of the box. To clean up the repo, you may need to delete the mock contracts, tests and migration files.

Compilation

To compile the contracts, use the next script:

npm run compile

Test

To run the tests, execute the following command:

npm run test

Or to see the coverage, run:

npm run coverage

Local deployment

To deploy the contracts locally, run the following commands (in the different terminals):

npm run private-network
npm run deploy-localhost

Bindings

The command to generate the bindings is as follows:

npm run generate-types

See the full list of available commands in the package.json file.

Integrated plugins

Other niceties

  • The template comes with presetup prettier and solhint that lint the project via husky before compilation hook.
  • The .env.example file is provided to check what is required as ENVs
  • Preinstalled @openzeppelin/contracts and @solarity/solidity-lib