forked from elkfinance/tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_all.sh
executable file
·17 lines (15 loc) · 1.25 KB
/
update_all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
python update_list.py -o avax.tokenlist.json -c avax -u https://raw.githubusercontent.com/pangolindex/tokenlists/main/aeb.tokenlist.json --logos
python update_list.py -o matic.tokenlist.json -c matic -u https://unpkg.com/[email protected]/build/quickswap-default.tokenlist.json --logos
#python update_list.py -o matic.tokenlist.json -c matic -u https://unpkg.com/@cometh-game/default-token-list@latest/build/comethswap-default.tokenlist.json --logos
python update_list.py -o ftm.tokenlist.json -c ftm --logos
python update_list.py -o heco.tokenlist.json -c heco -u https://raw.githubusercontent.com/mdexSwap/hswap/main/tokenlist.json --logos
python update_list.py -o bsc.tokenlist.json -c bsc -u https://tokens.pancakeswap.finance/pancakeswap-extended.json --logos
python update_list.py -o xdai.tokenlist.json -c xdai -u https://tokens.honeyswap.org --logos
python update_list.py -o mumbai.tokenlist.json -c mumbai --logos
python update_list.py -o fuji.tokenlist.json -c fuji --logos
python update_list.py -o ftmtest.tokenlist.json -c ftmtest --logos
python update_list.py -o hecotest.tokenlist.json -c hecotest --logos
for chain in avax matic ftm heco bsc xdai mumbai fuji ftmtest hecotest; do
rsync -a logos/$chain/ logos/all/
done