A Hardhat-based template for developing Solidity smart contracts, with sensible defaults.
Inspiration - Hardhat Template
- Hardhat: compile, run and test smart contracts
- TypeChain: generate TypeScript bindings for smart contracts
- Ethers: renowned Ethereum library and wallet implementation
- Solhint Community: code linter
- Prettier Plugin Solidity: code formatter
Click the Use this template
button at
the top of the page to create a new repository with this repo as the initial state.
This template builds upon the frameworks and libraries mentioned above, so for details about their specific features, please consult their respective documentations.
For example, for Hardhat, you can refer to the Hardhat Tutorial and the Hardhat Docs. You might be in particular interested in reading the Testing Contracts section.
This template comes with sensible default configurations in the following files:
├── .editorconfig
├── .eslintignore
├── .eslintrc.yml
├── .gitignore
├── .prettierignore
├── .prettierrc.yml
├── .solcover.js
├── .solhintignore
├── .solhint.json
├── .yarnrc.yml
└── hardhat.config.ts
This template comes with GitHub Actions pre-configured. Your contracts will be linted and tested on
every push and pull request made to the main
branch.
Note though that by default it injects .env.example
env variables into github action's
$GITHUB_ENV
.
You can edit the CI script in .github/workflows/ci.yml.
Before running any command, you need to create a .env
file and set all necessary environment
variables. Follow the example in .env.example
. You can either use mnemonic or individual private
keys by setting
$ ACCOUNT_TYPE="MNEMONIC" (Default)
or
$ ACCOUNT_TYPE="PRIVATE_KEYS"
If you don't already have a mnemonic, use this mnemonic-website to generate one Or if you don't already have a private key, use this privatekey-website to generate one.
Then, proceed with installing dependencies:
$ yarn install
To run a local network with all your contracts in it, run the following:
$ yarn chain
Compile the smart contracts with Hardhat:
$ yarn compile
Compile the smart contracts and generate TypeChain bindings:
$ yarn typechain
Run the tests with Hardhat:
$ yarn test
or
$ yarn test:gas # shows gas report and contract size
or
$ yarn test:trace # shows logs + calls
or
$ yarn test:fulltrace # shows logs + calls + sloads + sstores
Optional:
-
See the actual fiat currency rates by setting your coingecko api key from here in
.env
file or command. -
Set custom gas price (gwei) in
.env
file or command or let it automatically fetched by ethgasstationapi.
$ GAS_PRICE=20
$ COIN_MARKET_CAP_API_KEY="your_api_key"
Lint the Solidity code:
$ yarn lint:sol
Lint the TypeScript code:
$ yarn lint:ts
Starts a local hardhat chain with the state of the last mainnet
block
$ yarn fork
Generate the code coverage report:
$ yarn coverage
Delete the smart contract artifacts, the coverage reports and the Hardhat cache:
$ yarn clean
Deploy the contracts to Hardhat Network:
$ yarn deploy
Deploy the contracts to a specific network, such as the Rinkeby testnet:
$ yarn deploy:network rinkeby
For more information on deploy check out repo hardhat-deploy
Generate natspec documentation for your contracts by running
$ yarn hardhat dodoc
For more information on Natspec click here and for dodoc repo click here
$ yarn hardhat size-contracts
or turn on for every compile
$ CONTRACT_SIZER=true
$ yarn hardhat verify --network <network> DEPLOYED_CONTRACT_ADDRESS "Constructor argument 1" "Constructor argument 2"
For complex arguments you can refer here
$ yarn hardhat verify --contract contracts/CONTRACT_NAME.sol:CONTRACT_NAME --network <network> --constructor-args arguments.js DEPLOYED_CONTRACT_ADDRESS
Verify the contract using verifyContract
function in verify.ts
Set block explorer api key in .env
file or using command, refer to .env.example
for more
insight.
Example deploy script with verifyContract
function is
00_deploy_lock_contract.ts
If you use VSCode, you can enjoy syntax highlighting for your Solidity code via the vscode-solidity extension.
GitPod is an open-source developer platform for remote development.
To view the coverage report generated by yarn coverage
, just click Go Live
from the status bar
to turn the server on/off.
Contributions are always welcome! Open a PR or an issue!