1
1
How to get balance of any address using rpc bitcoind?
I mean getting by address the list of his unspent outputs in view something like this: TxHash;Value;Noutput.
1
1
How to get balance of any address using rpc bitcoind?
I mean getting by address the list of his unspent outputs in view something like this: TxHash;Value;Noutput.
1
There is no possible way to get balance by any address using rpc bitcoind.
You can only get balance of your's wallet adresses.
3
You would run the listunspent response through a loop and total up all the values from all the unspent outputs for that address.
listunspentworking only with addresses in your walett – D L – 2017-08-18T08:54:32.9531@Denis Yes, Bitcoin Core does not track the balance of every address. Only of the combined balance of your entire wallet. – Pieter Wuille – 2017-09-17T05:53:37.320