Skip to content

Commit c623d62

Browse files
committed
update
1 parent 95f1af7 commit c623d62

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1487
-2353
lines changed

config.py

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@
1313
with open("proxy.txt", "r") as file:
1414
PROXIES = [row.strip() for row in file]
1515

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)
1821

1922
with open('data/abi/zksync/weth.json') as file:
2023
WETH_ABI = json.load(file)
@@ -46,9 +49,6 @@
4649
with open("data/abi/woofi/router.json", "r") as file:
4750
WOOFI_ROUTER_ABI = json.load(file)
4851

49-
with open("data/abi/velocore/router.json", "r") as file:
50-
VELOCORE_ROUTER_ABI = json.load(file)
51-
5252
with open("data/abi/zkswap/router.json", "r") as file:
5353
ZKSWAP_ROUTER_ABI = json.load(file)
5454

@@ -88,7 +88,7 @@
8888
with open("data/abi/l2telegraph/bridge_nft.json", "r") as file:
8989
L2TELEGRAPH_NFT_ABI = json.load(file)
9090

91-
with open("data/abi/minter/abi.json", "r") as file:
91+
with open("data/abi/nft2me/abi.json", "r") as file:
9292
MINTER_ABI = json.load(file)
9393

9494
with open("data/abi/mailzero/abi.json", "r") as file:
@@ -109,13 +109,9 @@
109109
with open("data/abi/omnisea/abi.json", "r") as file:
110110
OMNISEA_ABI = json.load(file)
111111

112-
with open("data/abi/zksoul/abi.json", "r") as file:
113-
ZKSOUL_ABI = json.load(file)
114-
115112
with open("data/abi/gnosis/abi.json", "r") as file:
116113
SAFE_ABI = json.load(file)
117114

118-
119115
ZKSYNC_BRIDGE_CONTRACT = "0x32400084c286cf3e17e7b677ea9583e60a000324"
120116

121117
ORBITER_CONTRACT = ""
@@ -159,10 +155,6 @@
159155
"router": "0xfd505702b37Ae9b626952Eb2DD736d9045876417"
160156
}
161157

162-
VELOCORE_CONTRACTS = {
163-
"router": "0xF29Eb540eEba673f8Fb6131a7C7403C8e4C3f143"
164-
}
165-
166158
ODOS_CONTRACT = {
167159
"router": "0x4bba932e9792a2b917d47830c93a9bc79320e4f7",
168160
"use_ref": True # If you use True, you support me 1% of the transaction amount
@@ -225,8 +217,6 @@
225217

226218
L2TELEGRAPH_NFT_CONTRACT = "0xD43A183C97dB9174962607A8b6552CE320eAc5aA"
227219

228-
MINTER_CONTRACT = "0x31DCD96f29BD32F3a1856247846E9d2f95C2b639"
229-
230220
MAILZERO_CONTRACT = "0xc94025c2eA9512857BD8E1e611aB9b773b769350"
231221

232222
TAVAERA_ID_CONTRACT = "0xd29Aa7bdD3cbb32557973daD995A3219D307721f"
@@ -239,6 +229,4 @@
239229

240230
OMNISEA_CONTRACT = "0x1Ecd053f681a51E37087719653f3f0FFe54750C0"
241231

242-
ZKSOUL_CONTRACT = "0x346f859312527e5b2f34c22b645015e8764c0b14"
243-
244232
SAFE_CONTRACT = "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2"

data/abi/nft2me/abi.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[
2+
{
3+
"name": null,
4+
"type": "constructor",
5+
"inputs": [],
6+
"payable": false,
7+
"stateMutability": "nonpayable",
8+
"gas": null,
9+
"_isFragment": true
10+
},
11+
{
12+
"inputs": [
13+
{
14+
"internalType": "uint256",
15+
"name": "amount",
16+
"type": "uint256"
17+
}
18+
],
19+
"name": "mint",
20+
"outputs": [],
21+
"stateMutability": "payable",
22+
"type": "function"
23+
}
24+
]

0 commit comments

Comments
 (0)