Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

lingcoder/hardhat-template

Repository files navigation

Hardhat-template

English | 简体中文

Quick Start

npm install -g pnpm
pnpm install
pnpm prepare

Quick Commands

# Compile the contract
pnpm compile
# Deploy the contract
pnpm deploy
# Run contract test cases
pnpm test
# Check contract code coverage
pnpm coverage
# Check contract size
pnpm size
# Export ABI file
pnpm abi
# Perform global formatting check
pnpm lint
# Perform global formatting write
pnpm lint:fix

Hardhat Commands

npx hardhat accounts
npx hardhat compile
npx hardhat clean
npx hardhat test
npx hardhat node
npx hardhat help
REPORT_GAS=true npx hardhat test
npx hardhat coverage
npx hardhat run scripts/deploy.ts
TS_NODE_FILES=true npx ts-node scripts/deploy.ts
npx eslint '**/*.{js,ts}'
npx eslint '**/*.{js,ts}' --fix
npx prettier '**/*.{json,sol,md}' --check
npx prettier '**/*.{json,sol,md}' --write
npx solhint 'contracts/**/*.sol'
npx solhint 'contracts/**/*.sol' --fix

Other Commands

Deploy the contract to a specific network

 npx hardhat run --network rinkeby deploy/deploy.ts

Validate deployed contracts

npx hardhat verify --network rinkeby "DEPLOYED_CONTRACT_ADDRESS" "constructor-args1" "constructor-args2"

About

hardhat smart contracts template

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /