-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
46 lines (41 loc) · 1.13 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
const path = require("path");
const HDWalletProvider = require("@truffle/hdwallet-provider");
// Set up infura api key
const infuraKey = "90c5f3148b7840109319eed40c9bec57";
const fs = require("fs");
// Import the private key for the account for the smart contract
const privateKey = fs.readFileSync(".secret").toString().trim();
module.exports = {
// See <http://truffleframework.com/docs/advanced/configuration>
// to customize your Truffle configuration!
contracts_build_directory: path.join(__dirname, "client/src/contracts"),
networks: {
development: {
host: "127.0.0.1",
port: 7545,
network_id: "*",
},
rinkeby: {
provider: () =>
new HDWalletProvider(
privateKey,
`https://rinkeby.infura.io/v3/${infuraKey}`
),
network_id: 4, // rinkeby's id
gas: 4500000, // rinkeby has a lower block limit than mainnet
gasPrice: 21000000000,
networkCheckTimeout: 1000000,
},
},
compilers: {
solc: {
version: "0.4.24",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
},
};