Hi,
I am trying write some JSON interface to coniserver.
By my design, this must be "currency-independent" subsystem,
so it must to work with most popular cryptocurrencies.
I see, almost all cryptocurrencies are descendants from Bitcoin,
and supports same RPC/JSON interface.
This time, I confused with listunspent request format:
1. About Bitcoin, here is stated
https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_listis stated:
listunspent [minconf=1] [maxconf=999999]
2. Also, about Bitcoin, here
http://we.lovebitco.in/bitcoin-qt/command-reference/is stated another:
listunspent [minconf=1] [maxconf=9999999] ["address",...]
As you see, 2nd example defines 3rd optional parameter, array of addresses.
Also, this 3rd parameter is supported in the Litecoin API:
https://litecoin.info/Litecoin_APIAlso, I tested quarkcoin server - it also supports this parameter
(there is no docs, but server handles this param).
So, I make conclusion: 3rd param works everywhere, and
I can use this in the my code.
And, official 1st reference is incomplete, and must be updated.
Is my assumptions correct, or I missed something?
Is this safe and correct to use 3rd parameter?