forked from money-on-chain/main-RBTC-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
109 lines (106 loc) · 2.78 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
99
100
101
102
103
104
105
106
107
108
109
const HDWalletProvider = require('truffle-hdwallet-provider');
const fs = require('fs');
const mnemonicFile = `${__dirname}/mnemonic.txt`;
let mnemonic;
// Change mnemonic according to who is deploying
try {
if (fs.existsSync(mnemonicFile)) {
mnemonic = fs.readFileSync(mnemonicFile, { encoding: 'utf8', flag: 'r' });
} else {
mnemonic =
process.env.MNEMONIC ||
'lab direct float merit wall huge wheat loyal maple cup battle butter';
}
} catch (err) {
console.error(err); // eslint-disable-line no-console
}
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// for more about customizing your Truffle configuration!
compilers: {
solc: {
version: '0.5.17',
evmVersion: 'byzantium',
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
}
},
networks: {
development: {
host: '127.0.0.1',
port: 8545,
network_id: '*',
gas: 6721975,
gasPrice: 20000000000
},
regtest: {
host: '127.0.0.1',
port: 4444,
network_id: '*',
gas: 6001975,
gasPrice: 65000000
},
coverage: {
host: 'localhost',
network_id: '*', // eslint-disable-line camelcase
port: 8555,
gas: 0xfffffffffff,
gasPrice: 0x01
},
rskAlphaTestnet: {
host: 'https://public-node.testnet.rsk.co',
provider: new HDWalletProvider(mnemonic, 'https://public-node.testnet.rsk.co'),
network_id: '*',
gas: 6700000,
gasPrice: 69000000,
skipDryRun: true,
confirmations: 1
},
rskMocTestnet: {
host: 'https://public-node.testnet.rsk.co',
provider: new HDWalletProvider(mnemonic, 'https://public-node.testnet.rsk.co'),
network_id: '*',
gas: 6700000,
gasPrice: 69000000,
skipDryRun: true,
confirmations: 1
},
rskMocMainnet2: {
host: 'https://public-node.rsk.co',
provider: new HDWalletProvider(mnemonic, 'https://public-node.rsk.co'),
network_id: '*',
gas: 5600000,
gasPrice: 66000000,
skipDryRun: true,
confirmations: 1
},
prueba: {
host: 'https://public-node.testnet.rsk.co',
provider: new HDWalletProvider(mnemonic, 'https://public-node.testnet.rsk.co'),
network_id: '31',
gas: 6700000,
gasPrice: 69000000,
skipDryRun: true,
confirmations: 1
},
rskAlphaTestnet3: {
host: 'https://public-node.testnet.rsk.co',
provider: new HDWalletProvider(mnemonic, 'https://public-node.testnet.rsk.co'),
network_id: '31',
gas: 6700000,
gasPrice: 69000000,
skipDryRun: true,
confirmations: 1
}
},
mocha: {
reporter: 'eth-gas-reporter',
useColors: true,
bail: false,
enableTimeouts: false
}
};