diff --git a/home.admin/BBopenChannel.sh b/home.admin/BBopenChannel.sh index 4a64588..47e1661 100755 --- a/home.admin/BBopenChannel.sh +++ b/home.admin/BBopenChannel.sh @@ -121,5 +121,16 @@ else echo "${result}" echo "" echo "Whats next? --> You need to wait 6 confirmations, for the channel to be ready." + fundingTX=$(echo "${result}" | grep 'funding_txid' | cut -d '"' -f4) + if [ "${network}" = "bitcoin" ]; then + if [ "${chain}" = "main" ]; then + echo "https://blockexplorer.com/tx/${fundingTX}" + else + echo "https://testnet.blockexplorer.com/tx/${fundingTX}" + fi + fi + if [ "${network}" = "litecoin" ]; then + echo "https://live.blockcypher.com/ltc/tx/${fundingTX}/" + fi fi echo "" \ No newline at end of file