We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stakercli daemon list-staker-address
right now if we want to get the btc address, we need to run
stakercli daemon list-outputs
and use | jq -r '.outputs[].address' | sort | uniq to retrieve it from the output
| jq -r '.outputs[].address' | sort | uniq
{ "outputs": [ { "amount": "0.00972350 BTC", "address": "tb1qu4ak6a4dcug5638hky34nla0hrtdnjnwv6sf8e" }, { "amount": "0.00961750 BTC", "address": "tb1qu4ak6a4dcug5638hky34nla0hrtdnjnwv6sf8e" } ] }
would be convenient to add a util cmd
The text was updated successfully, but these errors were encountered:
No branches or pull requests
right now if we want to get the btc address, we need to run
stakercli daemon list-outputs
and use
| jq -r '.outputs[].address' | sort | uniq
to retrieve it from the outputwould be convenient to add a util cmd
The text was updated successfully, but these errors were encountered: