forked from tomteman/attendr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
truffle.js
62 lines (61 loc) · 1.82 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
const HDWalletProvider = require("truffle-hdwallet-provider");
const infura_apikey = "INFURA_APIKEY";
const wallets = {
mainnet: {
mnemonic: '',
network_id: 1,
},
ropsten: {
mnemonic: 'ROPSTEN_MNEMONIC',
network_id: 3,
gas: 4612388
},
rinkeby: {
mnemonic: 'RINKEBY_MNEMONIC',
network_id: 4,
gas: 4612388
},
kovan: {
mnemonic: 'KOVAN_MNEMONIC',
network_id: 42,
gas: 4612388
}
}
module.exports = {
migrations_directory: "./migrations",
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
mainnet: {
provider: function () {
return new HDWalletProvider(wallets.mainnet.mnemonic, "https://mainnet.infura.io/" + infura_apikey)
},
network_id: wallets.mainnet.network_id,
gas: wallets.mainnet.gas,
},
ropsten: {
provider: function () {
return new HDWalletProvider(wallets.ropsten.mnemonic, "https://ropsten.infura.io/" + infura_apikey)
},
network_id: wallets.ropsten.network_id,
gas: wallets.ropsten.gas,
},
rinkeby: {
provider: function () {
return new HDWalletProvider(wallets.rinkeby.mnemonic, "https://rinkeby.infura.io/" + infura_apikey)
},
network_id: wallets.rinkeby.network_id,
gas: wallets.rinkeby.gas,
},
kovan: {
provider: function () {
return new HDWalletProvider(wallets.kovan.mnemonic, "https://kovan.infura.io/" + infura_apikey)
},
network_id: wallets.kovan.network_id,
gas: wallets.kovan.gas,
}
}
};