-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.py
51 lines (50 loc) · 1.29 KB
/
constants.py
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
ADDRESS_PROVIDER = '0x775F09d6f3c8D2182DFA8bce8628acf51105653c'
INIT_GOV = '0x6f3cBE2ab3483EC4BA7B672fbdCa0E9B33F88db8'
CREATE_X_ADDRESS = '0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed'
BLOCKSCOUT_API_BASE = 'https://eth.blockscout.com/api/v2/smart-contracts/'
ETHERSCAN_API_BASE = 'https://api.etherscan.io'
ETHERSCAN_API_BASE_V2 = 'https://api.etherscan.io/v2'
DEPLOYERS = {
'CREATEX':'0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed',
}
NETWORKS = {
1: {
'name': 'Ethereum',
'rpc': 'https://eth.meowrpc.com'
},
10: {'name': 'Optimism',
'rpc': 'https://mainnet.optimism.io/'
},
42161: {
'name': 'Arbitrum',
'rpc': 'https://arb1.arbitrum.io/rpc'
},
8453: {
'name': 'Base',
'rpc': 'https://1rpc.io/base'
},
137: {
'name': 'Polygon',
'rpc': 'https://polygon.meowrpc.com'
},
81457: {
'name': 'Blast',
'rpc': 'https://rpc.blast.io'
},
100: {
'name': 'Gnosis',
'rpc': 'https://1rpc.io/gnosis'
},
252: {
'name': 'Fraxtal',
'rpc': 'https://rpc.frax.com'
},
56: {
'name': 'Binance Smart Chain',
'rpc': 'https://bsc.meowrpc.com',
},
534352: {
'name': 'Scroll',
'rpc': 'https://scroll.drpc.org'
}
}