umbrel-apps/core-lightning-rtl/exports.sh
ShahanaFarooqui 11b019c6f2
Update Core Lightning to v24.05 and RTL(CLN) to v0.15.2 (#1155)
Co-authored-by: nmfretz <nmfretz@gmail.com>
2024-07-09 11:07:27 +10:00

17 lines
931 B
Bash

# Dynamically export the block explorer URL based on what network the Bitcoin node is running on
BLOCK_EXPLORER_URL="https://mempool.space"
# TODO: check for umbrelOS Mempool app and use local URL if installed
# e.g., "${UMBREL_ROOT}/scripts/app" ls-installed | grep --quiet 'mempool'
# RTL would need a way to dynamically construct the URL for the local Mempool app
# e.g., localExplorerUrl = `${window.location.protocol}//${window.location.hostname}:${LOCAL_MEMPOOL_PORT}`;
# Append APP_BITCOIN_NETWORK to the URL if it is not mainnet (e.g., https://mempool.space/testnet)
if [[ "${APP_BITCOIN_NETWORK}" != "mainnet" ]]; then
echo "Bitcoin is running on ${APP_BITCOIN_NETWORK}. Appending ${APP_BITCOIN_NETWORK} to the block explorer URL."
BLOCK_EXPLORER_URL="${BLOCK_EXPLORER_URL}/${APP_BITCOIN_NETWORK}"
echo "BLOCK_EXPLORER_URL: ${BLOCK_EXPLORER_URL}"
fi
export APP_CORE_RTL_BLOCK_EXPLORER_URL="${BLOCK_EXPLORER_URL}"