mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 09:52:14 +01:00
11 lines
648 B
Bash
Executable File
11 lines
648 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
set -e
|
|
|
|
wget -O /mempool/public_html/mainnet/resources/assets.json https://raw.githubusercontent.com/blockstream/asset_registry_db/master/index.json
|
|
wget -O /mempool/public_html/mainnet/resources/assets.minimal.json https://raw.githubusercontent.com/blockstream/asset_registry_db/master/index.minimal.json
|
|
|
|
wget -O /mempool/public_html/mainnet/resources/assets.json https://raw.githubusercontent.com/blockstream/asset_registry_testnet_db/master/index.json
|
|
wget -O /mempool/public_html/mainnet/resources/assets.minimal.json https://raw.githubusercontent.com/blockstream/asset_registry_testnet_db/master/index.minimal.json
|
|
|
|
exit 0
|