-
Notifications
You must be signed in to change notification settings - Fork 5
/
hardhat.config.ts
84 lines (80 loc) · 2.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import dotenv from 'dotenv';
import { HardhatUserConfig } from 'hardhat/config';
import "@typechain/hardhat";
import "@nomiclabs/hardhat-waffle";
import "hardhat-preprocessor";
import '@primitivefi/hardhat-dodoc';
import fs from "fs";
dotenv.config();
function getRemappings() {
return fs
.readFileSync("remappings.txt", "utf8")
.split("\n")
.filter(Boolean) // remove empty lines
.map((line) => line.trim().split("="));
}
const config: HardhatUserConfig = {
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
},
networks: {
mandala: {
url: 'http://127.0.0.1:8545',
accounts: {
mnemonic: 'fox sight canyon orphan hotel grow hedgehog build bless august weather swarm',
path: 'm/44\'/60\'/0\'/0',
},
chainId: 595,
},
karuraTestnet: {
url: 'https://eth-rpc-karura-testnet.aca-staging.network',
accounts: {
mnemonic: 'fox sight canyon orphan hotel grow hedgehog build bless august weather swarm',
path: 'm/44\'/60\'/0\'/0',
},
chainId: 596,
},
karura: {
url: 'https://eth-rpc-karura.aca-api.network',
accounts: process.env.KEY ? [process.env.KEY] : [],
chainId: 686,
},
acala: {
url: 'https://eth-rpc-acala.aca-api.network',
accounts: process.env.KEY ? [process.env.KEY] : [],
chainId: 787,
},
},
mocha: {
timeout: 600000, // 10 min
},
preprocess: {
eachLine: (hre) => ({
transform: (line: string) => {
if (line.match(/^\s*import /i)) {
for (const [from, to] of getRemappings()) {
if (line.includes(from)) {
line = line.replace(from, to);
break;
}
}
}
return line;
},
}),
},
paths: {
sources: "./src",
cache: "./cache_hardhat",
},
dodoc: {
outputDir: './docs'
}
};
export default config;