forked from ensdomains/ens
-
Notifications
You must be signed in to change notification settings - Fork 2
/
truffle.js
37 lines (37 loc) · 913 Bytes
/
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
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gas: 4700000,
gasPrice: 1e6
},
'dev.fifs': {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gasPrice: 0x2e90edd000, //200GWei
//gas: 1000000//,
gas: 4700000,
from: "0x77E00Ae5BFD8ba7Fc476Cf28448A9A521C8bf2de"
},
'dev.auction': {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gasPrice: 0x2e90edd000, //200GWei
//gasPrice: 0x2e90,
gas: 4700000,
from: "0x77E00Ae5BFD8ba7Fc476Cf28448A9A521C8bf2de"
},
'testnet': {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
gasPrice: 0x2e90edd000, //200GWei
//gas: 1000000//,
gas: 4700000
}
}
};