-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.ts
59 lines (57 loc) · 1.58 KB
/
hardhat.config.ts
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
import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-toolbox";
const config: HardhatUserConfig = {
solidity:{
compilers: [
{
version: "0.8.17"
},
{
version: "0.4.0",
}
]
},
defaultNetwork: "goerli",
networks: {
hardhat: {
allowUnlimitedContractSize: false,
},
matic: {
url: "https://rpc-mumbai.maticvigil.com",
},
mainnet: {
url: `https://mainnet.infura.io/v3/91de03ef572d4688886c617f3a41c947`,
},
ropsten: {
url: `https://ropsten.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
rinkeby: {
url: `https://rinkeby.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
goerli: {
url: `https://goerli.infura.io/v3/91de03ef572d4688886c617f3a41c947`,
},
kovan: {
url: `https://kovan.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
arbitrumRinkeby: {
url: `https://arbitrum-rinkeby.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
arbitrum: {
url: `https://arbitrum-mainnet.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
optimismKovan: {
url: `https://optimism-kovan.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
optimism: {
url: `https://optimism-mainnet.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
mumbai: {
url: `https://polygon-mumbai.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
polygon: {
url: `https://polygon-mainnet.infura.io/v3/NFTRVRWJ58UPGH1VRBKCC2QDANHF2FCYK9`,
},
},
};
export default config;