-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle-config.js
61 lines (57 loc) · 1.5 KB
/
truffle-config.js
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
const HDWalletProvider = require("@truffle/hdwallet-provider");
module.exports = {
networks: {
development: {
host: "127.0.0.1",
port: 8545,
network_id: "*",
},
rinkeby: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, "https://rinkeby.infura.io/v3/" + process.env.INFURA_KEY),
gasPrice: 1*1000000000,
network_id: 4,
skipDryRun: true,
},
sokol: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, "https://sokol.poa.network"),
gasPrice: 1*1000000000,
network_id: 77,
skipDryRun: true,
},
xdai: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, "https://xdai-archive.blockscout.com/"),
gasPrice: 1*1000000000,
network_id: 100,
skipDryRun: true,
},
matic: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, "https://rpc-mainnet.matic.network"),
gasPrice: 1*1000000000,
network_id: 137,
},
mainnet: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, "https://mainnet.infura.io/v3/" + process.env.INFURA_KEY),
gasPrice: 51*1000000000, // 50 gwei
network_id: 1,
timeoutBlocks: 100,
skipDryRun: true,
},
},
compilers: {
solc: {
version: "0.6.12",
settings: {
optimizer: {
enabled: true,
runs: 200
},
}
},
},
plugins: [
'truffle-source-verify'
],
api_keys: {
etherscan: process.env.ETHERSCAN_KEY
}
};