-
Notifications
You must be signed in to change notification settings - Fork 12
/
truffle-config.js
86 lines (82 loc) · 2.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* eslint-disable */
// This enables us to use TypeScript in the unit tests.
require('ts-node/register');
module.exports = {
// this is required by truffle to find any ts test files
test_file_extension_regexp: /.*\.ts$/,
};
//const mnemonic = require('./secret.js');
//const HDWalletProvider = require('truffle-hdwallet-provider');
//
// const fs = require('fs');
// const mnemonic = fs.readFileSync(".secret").toString().trim();
// if (process.env.NODE_ENV !== 'test') {
// secrets = require("./secrets.json");
// }
module.exports = {
networks: {
coverage: {
host: "127.0.0.1",
port: 8555,
network_id: "*",
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01 // <-- Use this low gas price
},
development: {
host: "127.0.0.1", // Localhost (default: none)
port: 8545, // Standard Ethereum port (default: none)
network_id: "*", // Any network (default: none)
},
rinkeby: {
provider: () => new HDWalletProvider(mnemonic, "https://rinkeby.infura.io/v3/ae145ebad7c8499db7901246fd1271f7"),
network_id: 4, // Rinkeby's id
gas: 10000000, // Rinkeby has a lower block limit than mainnet
confirmations: 2, // # of confs to wait between deployments. (default: 0)
timeoutBlocks: 2000, // # of blocks before a deployment times out (minimum/default: 50)
skipDryRun: true, // Skip dry run before migrations? (default: false for public nets )
gasPrice: 7000000000 // 7 gwei (in wei) (default: 100 gwei)
},
mainnet: {
provider: () => new HDWalletProvider(mnemonic, "https://mainnet.infura.io/v3/ae145ebad7c8499db7901246fd1271f7"),
network_id: 1, // Mainnet id
chain_id: 1,
gas: 8000000, // Ropsten has a lower block limit than mainnet
confirmations: 2, // # of confs to wait between deployments. (default: 0)
timeoutBlocks: 2000, // # of blocks before a deployment times out (minimum/default: 50)
skipDryRun: true, // Skip dry run before migrations? (default: false for public nets )
gasPrice: 7000000000 // 7 gwei (in wei) (default: 100 gwei)
},
kovan: {
provider: () => {
return new HDWalletProvider(mnemonic, "https://kovan.infura.io/v3/ae145ebad7c8499db7901246fd1271f7");
},
network_id: 42,
gas: 6700000,
gasPrice: 10000000000
},
ropsten: {
provider: () => {
return new HDWalletProvider(mnemonic, "https://ropsten.infura.io/v3/ae145ebad7c8499db7901246fd1271f7");
},
network_id: 3,
gas: 6700000,
gasPrice: 10000000000
}
},
// Set default mocha options here, use special reporters etc.
mocha: {
// timeout: 100000
},
plugins: ["solidity-coverage"],
compilers: {
solc: {
version: "0.5.10",
settings: {
optimizer: {
enabled: true,
runs: 200
},
}
}
}
}