forked from PolymathNetwork/polymath-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
executable file
·74 lines (73 loc) · 1.48 KB
/
truffle.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
require('babel-register');
require('babel-polyfill');
module.exports = {
networks: {
development: {
host: 'localhost',
port: 8545,
network_id: '*', // Match any network id
gas: 4500000,
},
mainnet: {
host: 'localhost',
port: 8545,
network_id: '1', // Match any network id
gas: 3500000,
gasPrice: 10000000000
},
ropsten: {
host: 'localhost',
from: '0x00F13d5bCA2E8A4E58fD8018a7b1e8D286dD135A',
port: 8545,
network_id: '3', // Match any network id
gas: 4500000,
gasPrice: 330000000000
},
kovan: {
host: 'localhost',
from: '0x007d9F7cc97E3D9a3f56f1335517f3648C42c370',
port: 8545,
network_id: '42', // Match any network id
gas: 4500000,
gasPrice: 130000000000
},
local: {
host: 'localhost',
port: 8545,
gas: 4.612e6,
gasPrice: 0x01,
network_id: '*',
},
rinkeby: {
network_id: 4,
host: "localhost",
port: 8545,
account: 0x3fcf622ce12e21d738517dbe09dfeaa4f4552816,
gas:2000000
//gasPrice: 100000000000
},
coverage: {
host: 'localhost',
network_id: '*',
port: 8545,
gas: 0xfffffffffff,
gasPrice: 0x01,
},
},
// rpc: {
// host: 'localhost',
// post:8080
// },
mocha: {
useColors: true,
slow: 30000,
bail: true,
},
dependencies: {},
solc: {
optimizer: {
enabled: true,
runs: 200,
},
},
};