You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to ensure that zebra is ready to act as a zcashd replacement, we need to implement the RPC methods required to support block explorers.
We currently support lightwalletd usage of the getaddressbalance RPC, however:
zcashd accepts a single string parameter as well as an array of strings as an argument. Zebra only accepts an array of strings because lightwalletd always calls this RPC with an array of addresses.
zcashd returns the total amount of Zatoshis received by the addresses, but Zebra doesn't because lightwalletd doesn't use that information.
We need to:
Check whether we need to update the getaddressbalance RPC method to fully match zcashd for usecases other than lightwalletd
If so, implement the required changes to support the relevant usecases.
Motivation
In order to ensure that zebra is ready to act as a zcashd replacement, we need to implement the RPC methods required to support block explorers.
We currently support lightwalletd usage of the
getaddressbalance
RPC, however:zcashd
accepts a single string parameter as well as an array of strings as an argument. Zebra only accepts an array of strings because lightwalletd always calls this RPC with an array of addresses.zcashd
returns the total amount of Zatoshis received by the addresses, but Zebra doesn't because lightwalletd doesn't use that information.We need to:
getaddressbalance
RPC method to fully match zcashd for usecases other than lightwalletdSpecification
https://zcash.github.io/rpc/getaddressbalance.html
The text was updated successfully, but these errors were encountered: