Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
czbag committed Oct 13, 2023
1 parent 95f1af7 commit c623d62
Show file tree
Hide file tree
Showing 50 changed files with 1,487 additions and 2,353 deletions.
24 changes: 6 additions & 18 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@
with open("proxy.txt", "r") as file:
PROXIES = [row.strip() for row in file]

with open('data/abi/zksync/bridge.json') as file:
ZKSYNC_BRIDGE_ABI = json.load(file)
with open('data/abi/zksync/deposit.json') as file:
ZKSYNC_DEPOSIT_ABI = json.load(file)

with open('data/abi/zksync/withdraw.json') as file:
ZKSYNC_WITHDRAW_ABI = json.load(file)

with open('data/abi/zksync/weth.json') as file:
WETH_ABI = json.load(file)
Expand Down Expand Up @@ -46,9 +49,6 @@
with open("data/abi/woofi/router.json", "r") as file:
WOOFI_ROUTER_ABI = json.load(file)

with open("data/abi/velocore/router.json", "r") as file:
VELOCORE_ROUTER_ABI = json.load(file)

with open("data/abi/zkswap/router.json", "r") as file:
ZKSWAP_ROUTER_ABI = json.load(file)

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

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

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

with open("data/abi/zksoul/abi.json", "r") as file:
ZKSOUL_ABI = json.load(file)

with open("data/abi/gnosis/abi.json", "r") as file:
SAFE_ABI = json.load(file)


ZKSYNC_BRIDGE_CONTRACT = "0x32400084c286cf3e17e7b677ea9583e60a000324"

ORBITER_CONTRACT = ""
Expand Down Expand Up @@ -159,10 +155,6 @@
"router": "0xfd505702b37Ae9b626952Eb2DD736d9045876417"
}

VELOCORE_CONTRACTS = {
"router": "0xF29Eb540eEba673f8Fb6131a7C7403C8e4C3f143"
}

ODOS_CONTRACT = {
"router": "0x4bba932e9792a2b917d47830c93a9bc79320e4f7",
"use_ref": True # If you use True, you support me 1% of the transaction amount
Expand Down Expand Up @@ -225,8 +217,6 @@

L2TELEGRAPH_NFT_CONTRACT = "0xD43A183C97dB9174962607A8b6552CE320eAc5aA"

MINTER_CONTRACT = "0x31DCD96f29BD32F3a1856247846E9d2f95C2b639"

MAILZERO_CONTRACT = "0xc94025c2eA9512857BD8E1e611aB9b773b769350"

TAVAERA_ID_CONTRACT = "0xd29Aa7bdD3cbb32557973daD995A3219D307721f"
Expand All @@ -239,6 +229,4 @@

OMNISEA_CONTRACT = "0x1Ecd053f681a51E37087719653f3f0FFe54750C0"

ZKSOUL_CONTRACT = "0x346f859312527e5b2f34c22b645015e8764c0b14"

SAFE_CONTRACT = "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2"
24 changes: 24 additions & 0 deletions data/abi/nft2me/abi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[
{
"name": null,
"type": "constructor",
"inputs": [],
"payable": false,
"stateMutability": "nonpayable",
"gas": null,
"_isFragment": true
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
Loading

0 comments on commit c623d62

Please sign in to comment.