-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhardhat.config.js
65 lines (63 loc) · 1.68 KB
/
hardhat.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
require("@nomiclabs/hardhat-ethers");
require("@tenderly/hardhat-tenderly");
require("@nomiclabs/hardhat-etherscan");
require("dotenv").config();
require("@nomiclabs/hardhat-truffle5");
const { utils } = require("ethers");
const PRIVATE_KEY = process.env.PRIVATE_KEY;
// const PRIVATE_KEY_GANACHE = process.env.PRIVATE_KEY_GANACHE;
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
defaultNetwork: "goerli",
solidity: {
compilers: [
{
version: "0.7.0",
},
],
optimizer: {
enabled: true,
runs: 200,
},
},
networks: {
goerli: {
url: "https://small-holy-wave.ethereum-goerli.quiknode.pro/2136bd79203bbb3a515cf651c5de89e268d60b8d/",
accounts: [`0x${PRIVATE_KEY}`]
},
// testnet: {
// url: "https://data-seed-prebsc-1-s1.binance.org:8545",
// chainId: 97,
// gasPrice: 20000000000,
// accounts: [`0x${PRIVATE_KEY}`],
// },
// localhost: {
// url: `http://localhost:8545`,
// accounts: [`0x${PRIVATE_KEY_GANACHE}`],
// timeout: 150000,
// gasPrice: parseInt(utils.parseUnits("132", "gwei")),
// },
mainnet: {
url: "https://late-shy-breeze.quiknode.pro/cb2c775af8638f722111f91d72e5a80ccb2f0f07/",
chainId: 1,
accounts: [`0x${PRIVATE_KEY}`],
},
hardhat: {
forking: {
url: `https://bsc-dataseed.binance.org/`,
blockNumber: 6674768,
},
blockGasLimit: 12000000,
},
},
etherscan: {
/*apiKey: process.env.BSCSCAN_API_KEY,*/
apiKey: '2NNNEK3BB6M6XCC2YKQZJAHYVP6MVAMW1N'
},
tenderly: {
project: process.env.TENDERLY_PROJECT,
username: process.env.TENDERLY_USERNAME,
},
};