Try running some of the following tasks:
How to setup dev environment
$ node --version
v20.4.0
# solidity version
v0.8.19
- Create
.env
file with these keys
ETHERSCAN_API_KEY=
PRIVATE_KEY=
- Clean Cache & Install npm packages
# Clean cache
rm -rf node_modules;
rm -f package-lock.json;
npm cache clean --force;
# Install npm packages
npm i
- Compile contracts
# Compile
npx hardhat compile
- deploy
npx hardhat run scripts/deploy_IMT1155.js --network immutableZkevmTestnet
- run test & coverage
npx hardhat test
npx hardhat coverage