npm init -y
npm install -D hardhat
npx hardhat init
npm install -D @chainlink/contracts
npm install -D @chainlink/env-enc
npm install -D hardhat-deploy
npx env-enc set-pw
npx env-enc set
npx hardhat clean
npx hardhat compile
npx hardhat node
npx hardhat run ./scripts/depolyFunMe.js --network localhost
npx hardhat deploy --tags all --network localhost --reset
npx hardhat {task-name} --network localhost
npx hardhat test --network localhost
# localhost 挖矿
npx hardhat console --network localhost
await network.provider.send("evm_mine")
```%