gretzke / solidity-datatypes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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


Languages

Language:Solidity 57.9%Language:JavaScript 39.4%Language:Ruby 1.6%Language:Shell 0.5%Language:TypeScript 0.4%Language:Handlebars 0.1%Language:Makefile 0.1%Language:Nix 0.0%