forked from circlefin/stablecoin-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle-config.js
93 lines (88 loc) · 2.5 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
/**
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2023, Circle Internet Financial, LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
process.env.TS_NODE_FILES = "true";
require("ts-node/register/transpile-only");
// Fix Typescript callsite reporting
Object.defineProperty(Error, "prepareStackTrace", { writable: false });
const HDWalletProvider = require("@truffle/hdwallet-provider");
const fs = require("fs");
const path = require("path");
// Read config file if it exists
let config = { MNEMONIC: "", INFURA_KEY: "" };
if (fs.existsSync(path.join(__dirname, "config.js"))) {
config = require("./config.js");
}
module.exports = {
compilers: {
solc: {
version: "0.6.12",
settings: {
optimizer: {
enabled: true,
runs: 10000000,
},
},
},
},
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
},
local_testnet: {
host: "ganache",
port: 8545,
network_id: "*", // Match any network id
},
mainnet: {
provider: infuraProvider("mainnet"),
network_id: 1,
},
ropsten: {
provider: infuraProvider("ropsten"),
network_id: 3,
},
},
mocha: {
timeout: 60000, // prevents tests from failing when pc is under heavy load
reporter: "Spec",
},
plugins: ["solidity-coverage", "truffle-contract-size"],
migrations_directory:
config.USE_VERSIONED_MIGRATIONS ||
process.env.USE_VERSIONED_MIGRATIONS === "true"
? "./migrations/versioned"
: "./migrations/direct",
};
function infuraProvider(network) {
return () => {
if (!config.MNEMONIC) {
console.error("A valid MNEMONIC must be provided in config.js");
process.exit(1);
}
if (!config.INFURA_KEY) {
console.error("A valid INFURA_KEY must be provided in config.js");
process.exit(1);
}
return new HDWalletProvider(
config.MNEMONIC,
`https://${network}.infura.io/v3/${config.INFURA_KEY}`
);
};
}