@tarobase/token-plugin
v0.0.20
Published
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a Hardhat Ignition module that deploys that contract.
Readme
Sample Hardhat Project
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a Hardhat Ignition module that deploys that contract.
Try running some of the following tasks:
npx hardhat help
npx hardhat test
REPORT_GAS=true npx hardhat test
npx hardhat node
npx hardhat ignition deploy ./ignition/modules/Lock.jsTo deploy:
Create a relevant hardhat manifest file at hardhat.config.js. Configure the network you want to deploy to.
npx hardhat compile
npx hardhat run scripts/deploy.js --network localhost
To verify, you will need these at the top of your hardhat config: require("@nomicfoundation/hardhat-ethers"); require("@nomiclabs/hardhat-etherscan");
npx hardhat verify 0x4DEAc60baf984d1b8BF50D9F00C551605329cF42 --network localhost
