Try running some of the following tasks:
How to setup dev environment
$ node --version
v20.4.0
# solidity version
v0.8.19
- Create
.envfile with these keys
ETHERSCAN_API_KEY=
STAKED_TOKEN=
REWARDS_VAULT=
OPERATOR=
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_StakingRewards.js --network immutableZkevmTestnet- run test & coverage
npx hardhat test
npx hardhat coverage