-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
37 lines (36 loc) · 899 Bytes
/
config.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
/**
* Author: Vu Duy Tuan - tuanvd@gmail.com
* Date: 5/27/19
* Time: 10:46 AM
*/
module.exports = {
contractSourcePath: 'contracts',
builtContractPath: 'contracts/built',
deployedContractPath: 'contracts/deployed',
networks: {
default: {
url: "http://localhost:8545",
defaultAccount: {
address: '0x...',
privateKey: '0x...'
},
gas: 6500000
},
dev: {
url: "http://localhost:7545",
defaultAccount: {
address: '0x...',
privateKey: '0x...'
},
gas: 6500000
},
rinkeby: {
url: "https://rinkeby.infura.io/v3/...",
defaultAccount: {
address: '0x...',
privateKey: '0x...'
},
gas: 3000000
},
}
};