-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.py
64 lines (56 loc) · 1.32 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
## Mainnet chains:
# - arbitrum
# - avalanche
# - bsc
# - ethereum
# - klaytn
# - optimism
# - matic
# - solana
## Testnet chains:
# - arbitrum-goerli
# - avalanche-fuji
# - bsc-testnet
# - baobab
# - goerli
# - mumbai
# - optimism-goerli
# - soldev
CHAIN = 'matic'
# contract address
CONTRACT_ADDRESS = '0x70e4014c46a26d3130f85dabff65cf0446a06f13'
# Put an array here with all NFTs you want to update
# list(range(x,y)) will generate an array from x to y like this: [1, 2, 3, ..., 999, 1000]
ASSET_LIST = list(range(11, 1000))
# show more logs
VERBOSE = False
# skip assets what are already indexed by OpenSea (only index assets with "content unavailable yet" label)
SKIP_INDEXED = False
# Error file name
ERROR_FILE_NAME = "errors.txt"
# Save errors in a file
SAVE_IN_FILE = False
# Refresh assets from the error file
REFRESH_FROM_FILE = False
SUPPORTED_CHAINS = {
"https://opensea.io/assets": [ # Mainnet
"arbitrum",
"avalanche",
"bsc",
"ethereum",
"klaytn",
"optimism",
"matic",
"solana"
],
"https://testnets.opensea.io/assets": [ # Testnet
"arbitrum-goerli",
"avalanche-fuji",
"bsc-testnet",
"baobab",
"goerli",
"mumbai",
"optimism-goerli",
"soldev"
]
}