-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
98 lines (98 loc) · 1.56 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
module.exports = {
networks: {
development: {
nodeId: 0,
host: "localhost",
port: 8545,
network_id: "*"
},
mas: {
nodeId: 1,
host: "n1",
port: 20010,
network_id: "*",
from: "0x2b7e9dddfacc60a4e6ec73991b826e18054735e3",
gas: 200000000,
gasPrice: 0
},
cb: {
nodeId: 2,
host: "n2",
port: 20010,
network_id: "*",
from: "0x62c6f83052ccfeed37594e18e77c85f962e4beb4",
gas: 200000000
},
a: {
nodeId: 3,
host: "n3",
port: 20010,
network_id: "*"
},
b: {
nodeId: 4,
host: "n4",
port: 20010,
network_id: "*"
},
c: {
nodeId: 5,
host: "n5",
port: 20010,
network_id: "*"
},
d: {
nodeId: 6,
host: "n6",
port: 20010,
network_id: "*"
},
e: {
nodeId: 7,
host: "n7",
port: 20010,
network_id: "*"
},
f: {
nodeId: 8,
host: "n8",
port: 20010,
network_id: "*"
},
g: {
nodeId: 9,
host: "n9",
port: 20010,
network_id: "*"
},
h: {
nodeId: 10,
host: "n10",
port: 20010,
network_id: "*"
},
i: {
nodeId: 12,
host: "n12",
port: 20010,
network_id: "*"
},
j: {
nodeId: 13,
host: "n13",
port: 20010,
network_id: "*"
},
k: {
nodeId: 14,
host: "n14",
port: 20010,
network_id: "*"
}
},
compilers: {
solc: {
version: "0.4.11",
},
},
};