/ hardhat.config.ts
hardhat.config.ts
1 import type { HardhatUserConfig } from "hardhat/config"; 2 3 import "@typechain/hardhat"; 4 import "@nomicfoundation/hardhat-toolbox-viem"; 5 import "@nomicfoundation/hardhat-ethers"; 6 import "@nomicfoundation/hardhat-chai-matchers"; 7 8 const config: HardhatUserConfig = { 9 solidity: "0.8.28", 10 networks: { 11 hardhat: { 12 chainId: 1337 13 }, 14 }, 15 }; 16 17 export default config;