Skip to content

Instantly share code, notes, and snippets.

@joechai93
Last active May 18, 2025 10:32
Show Gist options
  • Save joechai93/19de8febbbc2e3755c9910d108a505c2 to your computer and use it in GitHub Desktop.
Save joechai93/19de8febbbc2e3755c9910d108a505c2 to your computer and use it in GitHub Desktop.
Hardhat Cheat Sheet

Compile

npx hardhat compile

Run unit tests

npx hardhat test

Start local node

npx hardhat node

Deploy to Rinkeby

npx hardhat run --network rinkeby scripts/deploy.js

Verify smart contract on Etherscan

npx hardhat verify --network rinkeby "address-of-contract" "Constructor argument 1"

Start hardhat console on localhost

npx hardhat console --network localhost

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment