forked from PatrickAlphaC/weather-nft
-
Notifications
You must be signed in to change notification settings - Fork 15
/
truffle-config.js
57 lines (54 loc) · 1.28 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
const HDWalletProvider = require('@truffle/hdwallet-provider')
require('dotenv').config()
const private_key = process.env.PRIVATE_KEY
const matic_url = process.env.MATIC_RPC_URL
module.exports = {
networks: {
binance_testnet: {
provider: () => new HDWalletProvider(private_key, 'https://data-seed-prebsc-1-s1.binance.org:8545'),
network_id: 97,
confirmations: 10,
timeoutBlocks: 200,
skipDryRun: true
},
kovan: {
provider: () => {
return new HDWalletProvider(private_key, kovan_url)
},
network_id: '42',
skipDryRun: true
},
rinkeby: {
provider: () => {
return new HDWalletProvider(private_key, rinkeby_url)
},
network_id: '4',
skipDryRun: true
},
matic: {
provider: () => {
return new HDWalletProvider(private_key, matic_url)
},
network_id: '137',
skipDryRun: true
},
mumbai: {
provider: () => {
return new HDWalletProvider(private_key, 'https://matic-mumbai.chainstacklabs.com')
},
network_id: '80001',
skipDryRun: true
},
},
compilers: {
solc: {
version: '0.6.6',
},
},
api_keys: {
etherscan: process.env.ETHERSCAN_API_KEY
},
plugins: [
'truffle-plugin-verify'
]
}