-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtruffle-config.js
94 lines (93 loc) · 2.35 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
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
require("dotenv").config();
const HDWalletProvider = require("truffle-hdwallet-provider");
const path = require("path");
module.exports = {
contracts_build_directory: path.join(__dirname, "frontend/src/contracts_main"),
plugins: ["truffle-contract-size", "truffle-plugin-verify"],
networks: {
develop: {
provider() {
return new HDWalletProvider(
process.env.GANACHE_MNEMONIC,
"http://localhost:8545/"
);
},
host: "localhost",
port: 8545,
network_id: 1337,
gas: 6721975,
gasPrice: 10000
},
test: {
provider() {
return new HDWalletProvider(
process.env.GANACHE_MNEMONIC,
"http://localhost:8545/"
);
},
host: "localhost",
port: 8545,
network_id: 1337,
gas: 6721975,
gasPrice: 1000000000
},
mainnet: {
provider() {
// using wallet at index 1 ----------------------------------------------------------------------------------------v
return new HDWalletProvider(
process.env.MAINNET_PK,
"https://mainnet.infura.io/v3/" + process.env.INFURA_API_KEY
);
},
network_id: 1,
//gas: 5561260,
gasPrice: 75000000000 // 75 GWEI
},
rinkeby: {
provider() {
return new HDWalletProvider(
process.env.TESTNET_PK,
"https://rinkeby.infura.io/v3/" + process.env.INFURA_API_KEY
);
},
network_id: 4,
// gas: 4700000,
gasPrice: 10000000000 // 10 GWEI
},
ropsten: {
provider() {
return new HDWalletProvider(
process.env.TESTNET_MNEMONIC,
"https://ropsten.infura.io/v3/" + process.env.INFURA_API_KEY
);
},
network_id: 3,
gasPrice: 10000000000, // 10 GWEI
gas: 6721975
},
skale_testnet: {
provider() {
return new HDWalletProvider(
process.env.TESTNET_PK,
'https://dappnet-api.skalenodes.com/v1/beautiful-rasalgethi'
);
},
gasPrice: 100000,
network_id: "*"
}
},
compilers: {
solc: {
version: "0.7.6",
settings: {
optimizer: {
enabled: true, // Default: false
runs: 1000 // Default: 200
}
}
}
},
api_keys: {
etherscan: process.env.ETHERSCAN_API_KEY
}
};