-
Notifications
You must be signed in to change notification settings - Fork 12
/
hardhat.config.ts
43 lines (41 loc) · 1022 Bytes
/
hardhat.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import "@nomicfoundation/hardhat-chai-matchers";
import "hardhat-dependency-compiler";
import "@nomicfoundation/hardhat-ethers";
import "hardhat-deploy";
import { HardhatUserConfig } from "hardhat/types";
const config: HardhatUserConfig = {
solidity: {
version: '0.8.23',
settings: {
optimizer: {
enabled: true,
runs: 100,
},
viaIR: true,
},
},
networks: {
hardhat: {
chainId: 1337
}
},
defaultNetwork: "hardhat",
namedAccounts: {
deployer: {
default: 0,
},
},
dependencyCompiler: {
paths: [
'@1inch/solidity-utils/contracts/mocks/TokenCustomDecimalsMock.sol',
'@1inch/solidity-utils/contracts/mocks/TokenMock.sol',
],
},
paths: {
sources: "./src/e2e/contracts",
tests: "./src/e2e/",
cache: "./cache",
artifacts: "./artifacts"
},
};
export default config;