-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasicinfo.sh
More file actions
57 lines (52 loc) · 1.4 KB
/
Copy pathbasicinfo.sh
File metadata and controls
57 lines (52 loc) · 1.4 KB
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
# block explorer urls
declare -A BLOCK_EXPLORERS=(
["ethereum"]='https://etherscan.io'
["bsc"]='https://bscscan.com'
["polygon"]='https://polygonscan.com'
["arbitrum"]='https://arbiscan.io'
["optimism"]='https://optimistic.etherscan.io'
["avalanche"]='https://snowtrace.ioi'
["fantom"]='https://ftmscan.com/'
["gnosis"]='https://gnosisscan.io'
)
# rpcs links
declare -A RPC_URLS=(
["ethereum"]='https://rpc.ankr.com/eth'
["bsc"]='https://rpc.ankr.com/bsc'
["polygon"]='https://rpc.ankr.com/polygon'
["arbitrum"]='https://rpc.ankr.com/arbitrum'
["optimism"]='https://rpc.ankr.com/optimism'
["avalanche"]='https://rpc.ankr.com/avalanche'
["fantom"]='https://rpc.ankr.com/fantom'
["gnosis"]='https://rpc.ankr.com/gnosis'
)
declare -A ETHERSCAN_API_KEYS=(
["ethereum"]='<YOUR_API_KEY>'
["bsc"]='<YOUR_API_KEY>'
["polygon"]='<YOUR_API_KEY>'
["arbitrum"]='<YOUR_API_KEY>'
["optimism"]='<YOUR_API_KEY>'
["avalanche"]='<YOUR_API_KEY>'
["fantom"]='<YOUR_API_KEY>'
["gnosis"]='<YOUR_API_KEY>'
)
declare -A PHALCON_CHAIN_ID_URL_PATHS=(
['1']="eth"
['56']="bsc"
['137']="polygon"
['42161']="arbitrum"
['10']="optimism"
['43114']="avax"
['250']="ftm"
['100']="gnosis"
['25']="cronos"
)
declare -A OPENCHAIN_CHAIN_ID_URL_PATHS=(
['1']="ethereum"
['56']="binance"
['137']="polygon"
['42161']="arbitrum"
['10']="optimism"
['43114']="avalanche"
['250']="fantom"
)