Skip to content

Adapted Javascript starting repository for smart contracts backend

Notifications You must be signed in to change notification settings

vimageDE/hardhat-javascript-template

Repository files navigation

Sample Hardhat Project

License CI Status Coverage Status

This project demonstrates an advanced Hardhat use case, integrating other tools commonly used alongside Hardhat in the ecosystem.

The project comes with a sample contract, a test for that contract, a sample script that deploys that contract, and an example of a task implementation, which simply lists the available accounts. It also comes with a variety of other tools, preconfigured to work with the project code.

This project also includes Foundry for advanced testing like fuzzing.

Build and Test

On the project root, run:

$ npm i                 # install dependencies
$ npm run compile       # compile contracts and generate typechain
$ npm test              # run tests

Install Hardhat Deploy:

$ npm add --save-dev hardhat-deploy
$ npm add --save-dev @nomiclabs/hardhat-ethers@npm:hardhat-deploy-ethers ethers
Add to hardhat.config.js:
require('hardhat-deploy');

optional:

$ npm run coverage      # run test coverage tool

To run foundry tests:

$ forge build           # compile contracts
$ forge test            # run foundry tests

Etherscan verification

To try out Etherscan verification, you first need to deploy a contract to an Ethereum network that's supported by Etherscan, such as Goerli.

In this project, copy the .env.example file to a file named .env, and then edit it to fill in the details. Enter your Etherscan API key, your Infura API key, and the mnemonic phrase of the account which will send the deployment transaction. With a valid .env file in place, first deploy your contract:

npx hardhat run scripts/deploy.ts --network goerli

Then, copy the deployment address and paste it in to replace DEPLOYED_CONTRACT_ADDRESS in this command:

npx hardhat verify --network goerli DEPLOYED_CONTRACT_ADDRESS "Hello, Hardhat!"

Performance optimizations

For faster runs of your tests and scripts, consider skipping ts-node's type checking by setting the environment variable TS_NODE_TRANSPILE_ONLY to 1 in hardhat's environment. For more details see the documentation.

About

Adapted Javascript starting repository for smart contracts backend

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published