-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtruffle-config.js
39 lines (34 loc) · 934 Bytes
/
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
const HDWalletProvider = require('@truffle/hdwallet-provider')
const dotenv = require("dotenv")
dotenv.config()
const mnemonic = process.env.MNEMONIC;
module.exports = {
networks: {
development: {
host: "127.0.0.1", // Ganache
port: 7545,
network_id: "*",
},
fantom: {
provider: () => new HDWalletProvider(mnemonic, `https://rpc.ankr.com/fantom_testnet`),
network_id: 4002, // fantom testnet id
confirmations: 2,
timeoutBlocks: 9999999,
skipDryRun: true,
networkCheckTimeout: 999999999
},
},
mocha: {},
compilers: {
solc: {
version: "0.8.16",
settings: {
optimizer: {
enabled: true,
runs: 1500
}
}
}
},
plugins: ["truffle-contract-size"],
};