pull down to refresh
21 sats \ 1 reply \ @supratic OP 16 Sep \ parent \ on: How to open Simple Taproot Channels on LND lightning
Yes you can via cli the command should be:
if the peer is not connected, connect first:
lncli listpeers | jq '.peers[] | select(.pub_key=="<peer_pubkey>") | .features'
This one parses my complete existing channel partners. Is it really so rarely used, that out of 140 channels, 0 support STC?
lncli listpeers | jq '.peers[] | select(.features."24".is_known and .features."26".is_known) | {pub_key, features}'
reply