Skip to content

Commit e10b70d

Browse files
committed
update
– add Maverick dex – add VeSync dex – add ZeroLend landing – add zkSoul ID domain mint
1 parent 2b354db commit e10b70d

File tree

14 files changed

+3800
-46
lines changed

14 files changed

+3800
-46
lines changed

config.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,15 @@
5252
with open("data/abi/zkswap/router.json", "r") as file:
5353
ZKSWAP_ROUTER_ABI = json.load(file)
5454

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+
5564
with open("data/abi/bungee/abi.json", "r") as file:
5665
BUNGEE_ABI = json.load(file)
5766

@@ -67,6 +76,9 @@
6776
with open("data/abi/reactorfusion/abi.json", "r") as file:
6877
REACTORFUSION_ABI = json.load(file)
6978

79+
with open("data/abi/zerolend/abi.json", "r") as file:
80+
ZEROLEND_ABI = json.load(file)
81+
7082
with open("data/abi/dmail/abi.json", "r") as file:
7183
DMAIL_ABI = json.load(file)
7284

@@ -97,6 +109,9 @@
97109
with open("data/abi/omnisea/abi.json", "r") as file:
98110
OMNISEA_ABI = json.load(file)
99111

112+
with open("data/abi/zksoul/abi.json", "r") as file:
113+
ZKSOUL_ABI = json.load(file)
114+
100115
ZKSYNC_BRIDGE_CONTRACT = "0x32400084c286cf3e17e7b677ea9583e60a000324"
101116

102117
ORBITER_CONTRACT = ""
@@ -167,6 +182,16 @@
167182
"use_ref": True
168183
}
169184

185+
MAVERICK_CONTRACTS = {
186+
"router": "0x39E098A153Ad69834a9Dac32f0FCa92066aD03f4",
187+
"pool": "0x41C8cf74c27554A8972d3bf3D2BD4a14D8B604AB",
188+
"pool_information": "0x57D47F505EdaA8Ae1eFD807A860A79A28bE06449",
189+
}
190+
191+
VESYNC_CONTRACTS = {
192+
"router": "0x6C31035D62541ceba2Ac587ea09891d1645D6D07"
193+
}
194+
170195
BUNGEE_CONTRACT = "0x7ee459d7fde8b4a3c22b9c8c7aa52abaddd9ffd5"
171196

172197
STARGATE_CONTRACT = "0xdac7479e5f7c01cc59bbf7c1c4edf5604ada1ff2"
@@ -186,6 +211,10 @@
186211
"collateral": "0x23848c28af1c3aa7b999fa57e6b6e8599c17f3f2",
187212
}
188213

214+
ZEROLEND_CONTRACT = "0x767b4A087c11d7581Ac95eaFfc1FeBFA26bad3d2"
215+
216+
ZEROLEND_WETH_CONTRACT = "0x9002ecb8a06060e3b56669c6B8F18E1c3b119914"
217+
189218
DMAIL_CONTRACT = "0x981F198286E40F9979274E0876636E9144B8FB8E"
190219

191220
L2TELEGRAPH_MESSAGE_CONTRACT = "0x0d4a6d5964f3b618d8e46bcfbf2792b0d769fbda"
@@ -205,3 +234,5 @@
205234
ENS_CONTRACT = "0x935442af47f3dc1c11f006d551e13769f12eab13"
206235

207236
OMNISEA_CONTRACT = "0x1Ecd053f681a51E37087719653f3f0FFe54750C0"
237+
238+
ZKSOUL_CONTRACT = "0x346f859312527e5b2f34c22b645015e8764c0b14"

0 commit comments

Comments
 (0)