22 lines
460 B
TypeScript
22 lines
460 B
TypeScript
|
import { HardhatUserConfig } from 'hardhat/config';
|
||
|
import '@nomicfoundation/hardhat-chai-matchers';
|
||
|
import '@nomiclabs/hardhat-etherscan';
|
||
|
import '@typechain/hardhat';
|
||
|
import 'hardhat-contract-sizer';
|
||
|
import 'hardhat-gas-reporter';
|
||
|
import 'solidity-coverage';
|
||
|
|
||
|
const config: HardhatUserConfig = {
|
||
|
solidity: {
|
||
|
version: '0.8.16',
|
||
|
settings: {
|
||
|
optimizer: {
|
||
|
enabled: true,
|
||
|
runs: 200,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|