forked from purefiprotocol/sdk-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
83 lines (79 loc) · 2.3 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
"use strict";
const { infuraApiKey, mnemonic, bscnode } = require('./network_keys/secrets.json');
const HDWalletProvider = require("@truffle/hdwallet-provider");
// wss://mainnet.infura.io/ws/v3/
// https://mainnet.infura.io/v3/
const Infura = {
Mainnet: "wss://mainnet.infura.io/ws/v3/" + infuraApiKey,
Ropsten: "https://ropsten.infura.io/v3/" + infuraApiKey,
Rinkeby: "https://rinkeby.infura.io/v3/" + infuraApiKey,
Kovan: "https://kovan.infura.io/v3/" + infuraApiKey,
BSC: bscnode
};
module.exports = {
networks: {
test: {
host: "127.0.0.1",
port: 8545,
network_id: "*", //Match Ganache(Truffle) network id
gas: 5000000,
},
rinkeby: {
network_id: 4,
provider: () => new HDWalletProvider(mnemonic, Infura.Rinkeby),
gas: 10000000,
gasPrice: '10000000000'
},
mainnet: {
network_id: 1,
provider: () => new HDWalletProvider(mnemonic, Infura.Mainnet),
gas: 5000000,
// gasPrice: '20000000000',
maxFeePerGas: '20000000000',
maxPriorityFeePerGas: '4000000000',
timeoutBlocks: 1000,
networkCheckTimeout: 20000
},
ropsten: {
network_id: 3,
provider: () => new HDWalletProvider(mnemonic, Infura.Ropsten),
gas: 5000000,
gasPrice: '6000000000'
},
kovan: {
network_id: 1,
provider: () => new HDWalletProvider(mnemonic, Infura.Kovan),
gas: 10000000,
},
bsc: {
provider: () => new HDWalletProvider(mnemonic, bscnode),
network_id: 56,
confirmations: 10,
timeoutBlocks: 200,
gas: 5000000,
gasPrice: 5000000000
},
bsctest: {
provider: () => new HDWalletProvider(mnemonic, `https://data-seed-prebsc-1-s1.binance.org:8545`),
network_id: 97,
confirmations: 10,
timeoutBlocks: 200,
skipDryRun: true,
gas: 5000000,
gasPrice: 10000000000
}
},
compilers: {
solc: {
version: "0.8.12", // Fetch exact version from solc-bin (default: truffle's version)
// docker: true, // Use "0.5.1" you've installed locally with docker (default: false)
settings: { // See the solidity docs for advice about optimization and evmVersion
optimizer: {
enabled: true,
runs: 200
},
// evmVersion: "byzantium"
}
},
},
};