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
dash-cli -testnet getnewaddress
dash-cli -testnet getaddressesbylabel '' | jq -r 'keys[]'
* Obviously if you actually use labels (such as in the GUI), this won't give you all addresses.
dash-cli -testnet listaddressbalances | jq -r 'keys[]'
dash-cli -testnet getaddressesbylabel '' | jq -r 'keys[]' | xargs -I % sh -c ' printf %: dash-cli -testnet getaddresstxids "{\"addresses\":[\"%\"]}" | jq -c '
dash-cli -testnet sendtoaddress "${address}" 1.0
dash-cli -testnet dumpprivkey "${address}" > "${address}.wif"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a new address:
Get a list of all* addresses:
* Obviously if you actually use labels (such as in the GUI), this won't give you all addresses.
Get a list of used addresses:
Get a list of unused addresses:
Load an address
Send 1.0 DASH to an Address
dash-cli -testnet sendtoaddress "${address}" 1.0
Get the Private Key
The text was updated successfully, but these errors were encountered: