|
13 | 13 | with open("proxy.txt", "r") as file: |
14 | 14 | PROXIES = [row.strip() for row in file] |
15 | 15 |
|
16 | | -with open('data/abi/zksync/bridge.json') as file: |
17 | | - ZKSYNC_BRIDGE_ABI = json.load(file) |
| 16 | +with open('data/abi/zksync/deposit.json') as file: |
| 17 | + ZKSYNC_DEPOSIT_ABI = json.load(file) |
| 18 | + |
| 19 | +with open('data/abi/zksync/withdraw.json') as file: |
| 20 | + ZKSYNC_WITHDRAW_ABI = json.load(file) |
18 | 21 |
|
19 | 22 | with open('data/abi/zksync/weth.json') as file: |
20 | 23 | WETH_ABI = json.load(file) |
|
46 | 49 | with open("data/abi/woofi/router.json", "r") as file: |
47 | 50 | WOOFI_ROUTER_ABI = json.load(file) |
48 | 51 |
|
49 | | -with open("data/abi/velocore/router.json", "r") as file: |
50 | | - VELOCORE_ROUTER_ABI = json.load(file) |
51 | | - |
52 | 52 | with open("data/abi/zkswap/router.json", "r") as file: |
53 | 53 | ZKSWAP_ROUTER_ABI = json.load(file) |
54 | 54 |
|
|
88 | 88 | with open("data/abi/l2telegraph/bridge_nft.json", "r") as file: |
89 | 89 | L2TELEGRAPH_NFT_ABI = json.load(file) |
90 | 90 |
|
91 | | -with open("data/abi/minter/abi.json", "r") as file: |
| 91 | +with open("data/abi/nft2me/abi.json", "r") as file: |
92 | 92 | MINTER_ABI = json.load(file) |
93 | 93 |
|
94 | 94 | with open("data/abi/mailzero/abi.json", "r") as file: |
|
109 | 109 | with open("data/abi/omnisea/abi.json", "r") as file: |
110 | 110 | OMNISEA_ABI = json.load(file) |
111 | 111 |
|
112 | | -with open("data/abi/zksoul/abi.json", "r") as file: |
113 | | - ZKSOUL_ABI = json.load(file) |
114 | | - |
115 | 112 | with open("data/abi/gnosis/abi.json", "r") as file: |
116 | 113 | SAFE_ABI = json.load(file) |
117 | 114 |
|
118 | | - |
119 | 115 | ZKSYNC_BRIDGE_CONTRACT = "0x32400084c286cf3e17e7b677ea9583e60a000324" |
120 | 116 |
|
121 | 117 | ORBITER_CONTRACT = "" |
|
159 | 155 | "router": "0xfd505702b37Ae9b626952Eb2DD736d9045876417" |
160 | 156 | } |
161 | 157 |
|
162 | | -VELOCORE_CONTRACTS = { |
163 | | - "router": "0xF29Eb540eEba673f8Fb6131a7C7403C8e4C3f143" |
164 | | -} |
165 | | - |
166 | 158 | ODOS_CONTRACT = { |
167 | 159 | "router": "0x4bba932e9792a2b917d47830c93a9bc79320e4f7", |
168 | 160 | "use_ref": True # If you use True, you support me 1% of the transaction amount |
|
225 | 217 |
|
226 | 218 | L2TELEGRAPH_NFT_CONTRACT = "0xD43A183C97dB9174962607A8b6552CE320eAc5aA" |
227 | 219 |
|
228 | | -MINTER_CONTRACT = "0x31DCD96f29BD32F3a1856247846E9d2f95C2b639" |
229 | | - |
230 | 220 | MAILZERO_CONTRACT = "0xc94025c2eA9512857BD8E1e611aB9b773b769350" |
231 | 221 |
|
232 | 222 | TAVAERA_ID_CONTRACT = "0xd29Aa7bdD3cbb32557973daD995A3219D307721f" |
|
239 | 229 |
|
240 | 230 | OMNISEA_CONTRACT = "0x1Ecd053f681a51E37087719653f3f0FFe54750C0" |
241 | 231 |
|
242 | | -ZKSOUL_CONTRACT = "0x346f859312527e5b2f34c22b645015e8764c0b14" |
243 | | - |
244 | 232 | SAFE_CONTRACT = "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2" |
0 commit comments