19 lines
368 B
TypeScript
19 lines
368 B
TypeScript
|
import { HardhatUserConfig } from "hardhat/config";
|
||
|
import "@nomicfoundation/hardhat-chai-matchers";
|
||
|
import "@nomiclabs/hardhat-etherscan";
|
||
|
import "@typechain/hardhat";
|
||
|
|
||
|
const config: HardhatUserConfig = {
|
||
|
solidity: {
|
||
|
version: "0.8.16",
|
||
|
settings: {
|
||
|
optimizer: {
|
||
|
enabled: true,
|
||
|
runs: 200,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|