Skip to main content
Hardhat is a Solidity development framework paired with a JavaScript testing framework. When configuring your Hardhat project for Monad, set the EVM version to prague in your hardhat.config.js:
module.exports = {
  solidity: {
    version: "0.8.28",
    settings: {
      evmVersion: "prague",
    },
  },
};
For deployment and verification guides using Hardhat, see: