forked from iExecBlockchainComputing/iexec-dapps-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
31 lines (31 loc) · 1.3 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
module.exports = {
networks: {
development: {
host: "http://localhost:8545",
port: 8545,
network_id: "*" // Match any network id
},
ropsten: {
host: "https://ropsten.infura.io/berv5GTB5cSdOJPPnqOq",
port: 8545,
network_id: "3",
iexecOracleAddress: "0xb34406538112bd2b3036b2c417c7cff827777a11", // oracle v0.1.2 ropsten
// gasPriceMultiplier: 2, // use factor 2 of the network estimated gasPrice
// gasLimitMultiplier: 4, // use factor 4 of the network estimated gasLimit
// gasPrice: 21000000000 // manually set the gasPrice in gwei. Prefer "gasPriceMultiplier"
// gas: 400000 // manually set the gas limit in gwei. Prefer "gasLimitMultiplier"
},
rinkeby: {
host: "https://rinkeby.infura.io/berv5GTB5cSdOJPPnqOq",
port: 8545,
network_id: "4",
iexecOracleAddress: "0x98275d4b6511ef05ed063d127dd82b72588326c9",// oracle v0.1.2 rinkeby
},
kovan: {
host: "https://kovan.infura.io/berv5GTB5cSdOJPPnqOq",
port: 8545,
network_id: "42",
iexecOracleAddress: "0xb81d38d843cb526a3d0c3130d568fe09799135aa",// oracle v0.1.2 kovan
},
}
};