-
Notifications
You must be signed in to change notification settings - Fork 3
/
test-environment.config.js
32 lines (28 loc) · 1.07 KB
/
test-environment.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
/*
* Copyright ©️ 2020 Curio AG (Company Number FL-0002.594.728-9)
* Incorporated and registered in Liechtenstein
*
* Copyright ©️ 2020 Curio Capital AG (Company Number CHE-211.446.654)
* Incorporated and registered in Zug, Switzerland.
*/
module.exports = {
accounts: {
amount: 10, // Number of unlocked accounts
ether: 1000000 // Initial balance of unlocked accounts (in ether)
},
contracts: {
type: 'truffle', // Contract abstraction to use: 'truffle' for @truffle/contract or 'web3' for web3-eth-contract
defaultGas: 9500000, // Maximum gas for contract calls (when unspecified)
// Options available since v0.1.2
defaultGasPrice: 20e9, // Gas price for contract calls (when unspecified)
artifactsDir: 'build/contracts' // Directory where contract artifacts are stored
},
node: {
// Options passed directly to Ganache client
gasLimit: 96000000, // Maximum gas per block
gasPrice: 1e9 // Sets the default gas price for transactions if not otherwise specified.
},
setupProvider: baseProvider => {
return baseProvider;
}
};