-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
64 lines (61 loc) · 1.7 KB
/
truffle-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
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
require('dotenv').config()
const { TruffleProvider } = require('@harmony-js/core')
const account_1_mnemonic = process.env.MNEMONIC
const account_1_private_key = process.env.PRIVATE_KEY
const account_2_mnemonic = process.env.MNEMONIC2
const account_2_private_key = process.env.PRIVATE_KEY2
const testnet_url = process.env.TESTNET_URL
gasLimit = process.env.GAS_LIMIT
gasPrice = process.env.GAS_PRICE
module.exports = {
networks: {
testnet: {
network_id: '2',
gas: gasLimit,
gasPrice: gasPrice,
provider: () => {
const truffleProvider = new TruffleProvider(
testnet_url,
{ memonic: account_1_mnemonic },
{ shardID: 0, chainId: 2 },
{ gasLimit: gasLimit, gasPrice: gasPrice},
);
const newAcc = truffleProvider.addByPrivateKey(account_1_private_key);
truffleProvider.setSigner(newAcc);
return truffleProvider;
},
},
test: {
network_id: '2',
gas: gasLimit,
gasPrice: gasPrice,
provider: () => {
const truffleProvider = new TruffleProvider(
testnet_url,
{ memonic: account_2_mnemonic },
{ shardID: 0, chainId: 2 },
{ gasLimit: gasLimit, gasPrice: gasPrice },
);
const newAcc = truffleProvider.addByPrivateKey(account_2_private_key);
truffleProvider.setSigner(newAcc);
return truffleProvider;
},
},
},
// Set default mocha options here, use special reporters etc.
mocha: {
// timeout: 100000
},
// Configure your compilers
compilers: {
solc: {
version: "^0.5.0",
settings: {
optimizer: {
enabled: true,
runs: 200
}
}
}
}
}