|
52 | 52 | with open("data/abi/zkswap/router.json", "r") as file: |
53 | 53 | ZKSWAP_ROUTER_ABI = json.load(file) |
54 | 54 |
|
| 55 | +with open("data/abi/maverick/position.json", "r") as file: |
| 56 | + MAVERICK_POSITION_ABI = json.load(file) |
| 57 | + |
| 58 | +with open("data/abi/maverick/router.json", "r") as file: |
| 59 | + MAVERICK_ROUTER_ABI = json.load(file) |
| 60 | + |
| 61 | +with open("data/abi/vesync/router.json", "r") as file: |
| 62 | + VESYNC_ROUTER_ABI = json.load(file) |
| 63 | + |
55 | 64 | with open("data/abi/bungee/abi.json", "r") as file: |
56 | 65 | BUNGEE_ABI = json.load(file) |
57 | 66 |
|
|
67 | 76 | with open("data/abi/reactorfusion/abi.json", "r") as file: |
68 | 77 | REACTORFUSION_ABI = json.load(file) |
69 | 78 |
|
| 79 | +with open("data/abi/zerolend/abi.json", "r") as file: |
| 80 | + ZEROLEND_ABI = json.load(file) |
| 81 | + |
70 | 82 | with open("data/abi/dmail/abi.json", "r") as file: |
71 | 83 | DMAIL_ABI = json.load(file) |
72 | 84 |
|
|
97 | 109 | with open("data/abi/omnisea/abi.json", "r") as file: |
98 | 110 | OMNISEA_ABI = json.load(file) |
99 | 111 |
|
| 112 | +with open("data/abi/zksoul/abi.json", "r") as file: |
| 113 | + ZKSOUL_ABI = json.load(file) |
| 114 | + |
100 | 115 | ZKSYNC_BRIDGE_CONTRACT = "0x32400084c286cf3e17e7b677ea9583e60a000324" |
101 | 116 |
|
102 | 117 | ORBITER_CONTRACT = "" |
|
167 | 182 | "use_ref": True |
168 | 183 | } |
169 | 184 |
|
| 185 | +MAVERICK_CONTRACTS = { |
| 186 | + "router": "0x39E098A153Ad69834a9Dac32f0FCa92066aD03f4", |
| 187 | + "pool": "0x41C8cf74c27554A8972d3bf3D2BD4a14D8B604AB", |
| 188 | + "pool_information": "0x57D47F505EdaA8Ae1eFD807A860A79A28bE06449", |
| 189 | +} |
| 190 | + |
| 191 | +VESYNC_CONTRACTS = { |
| 192 | + "router": "0x6C31035D62541ceba2Ac587ea09891d1645D6D07" |
| 193 | +} |
| 194 | + |
170 | 195 | BUNGEE_CONTRACT = "0x7ee459d7fde8b4a3c22b9c8c7aa52abaddd9ffd5" |
171 | 196 |
|
172 | 197 | STARGATE_CONTRACT = "0xdac7479e5f7c01cc59bbf7c1c4edf5604ada1ff2" |
|
186 | 211 | "collateral": "0x23848c28af1c3aa7b999fa57e6b6e8599c17f3f2", |
187 | 212 | } |
188 | 213 |
|
| 214 | +ZEROLEND_CONTRACT = "0x767b4A087c11d7581Ac95eaFfc1FeBFA26bad3d2" |
| 215 | + |
| 216 | +ZEROLEND_WETH_CONTRACT = "0x9002ecb8a06060e3b56669c6B8F18E1c3b119914" |
| 217 | + |
189 | 218 | DMAIL_CONTRACT = "0x981F198286E40F9979274E0876636E9144B8FB8E" |
190 | 219 |
|
191 | 220 | L2TELEGRAPH_MESSAGE_CONTRACT = "0x0d4a6d5964f3b618d8e46bcfbf2792b0d769fbda" |
|
205 | 234 | ENS_CONTRACT = "0x935442af47f3dc1c11f006d551e13769f12eab13" |
206 | 235 |
|
207 | 236 | OMNISEA_CONTRACT = "0x1Ecd053f681a51E37087719653f3f0FFe54750C0" |
| 237 | + |
| 238 | +ZKSOUL_CONTRACT = "0x346f859312527e5b2f34c22b645015e8764c0b14" |
0 commit comments