-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathchains.ts
99 lines (98 loc) · 2.21 KB
/
chains.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
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
94
95
96
97
98
99
const deployer = process.env.PRIVATE_KEY || "";
export const networks = {
hardhat: {
chainId: 31337,
},
avalanche: {
chainId: 43114,
url: "https://api.avax.network/ext/bc/C/rpc",
accounts: [deployer],
},
bsc: {
chainId: 56,
url: "https://bsc-dataseed1.binance.org",
accounts: [deployer],
},
"bsc-testnet": {
chainId: 97,
url: "https://rpc.ankr.com/bsc_testnet_chapel",
accounts: [deployer],
},
goerli: {
chainId: 5,
url: "https://rpc.ankr.com/eth_goerli",
accounts: [deployer],
},
mainnet: {
chainId: 1,
url: "https://mainnet.infura.io/v3/xxxxx",
accounts: [deployer],
},
"polygon-mainnet": {
chainId: 137,
url: "https://rpc-mainnet.maticvigil.com",
accounts: [deployer],
},
"polygon-mumbai": {
chainId: 80001,
url: "https://rpc-mumbai.maticvigil.com",
accounts: [deployer],
},
sepolia: {
chainId: 11155111,
url: "https://sepolia.infura.io/v3/xxxxx",
accounts: [deployer],
},
zkSyncEra: {
url: "https://mainnet.era.zksync.io",
chainId: 324,
ethNetwork: "mainnet",
zksync: true,
verifyURL: "https://zksync2-mainnet-explorer.zksync.io/contract_verification",
},
"blast-testnet": {
chainId: 168587773,
url: "https://sepolia.blast.io",
accounts: [deployer],
},
"blast-mainnet": {
chainId: 81457,
url: "https://rpc.blast.io",
accounts: [deployer],
},
"shardeum-sphinx": {
chainId: 8082,
url: "https://dev110.shardeum.org/",
accounts: [deployer],
},
"kroma-sepolia": {
chainId: 2358,
url: "https://api.sepolia.kroma.network/",
accounts: [deployer],
},
"kroma-mainnet": {
chainId: 255,
url: "https://api.kroma.network/",
accounts: [deployer],
},
"zeta-mainnet": {
chainId: 7000,
url: "https://zetachain-evm.blockpi.network/v1/rpc/public",
accounts: [deployer],
},
"cronos-mainnet": {
chainId: 25,
url: "https://evm.cronos.org",
accounts: [deployer],
},
"zircuit-testnet": {
chainId: 48899,
url: "https://zircuit1.p2pify.com",
accounts: [deployer],
},
"zksync-era-sepolia": {
chainId: 300,
url: "https://rpc.ankr.com/zksync_era_sepolia",
accounts: [deployer],
},
};