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
lightwalletd uses the getblock JSON-RPC method.
lightwalletd
getblock
lightwalletd caches all the blocks from Sapling activation, asking for them in height order.
So this RPC needs to be fast:
lightwalletd implemented NU5 & Orchard changes here:
The method is documented here: https://zcash.github.io/rpc/getblock.html
lightwalletd only uses height and verbosity = 0 as arguments.
height
verbosity = 0
And only the following fields are used by lightwalletd: https://github.com/zcash/lightwalletd/blob/master/common/common.go#L232
Field list:
"data" (string) A string that is serialized, hex-encoded data for the block.
We plan to use jsonrpc_core with:
Here are examples of:
The text was updated successfully, but these errors were encountered:
Hey team! Please add your planning poker estimate with ZenHub @conradoplg @dconnolly @gustavovalverde @jvff @oxarbitrage @teor2345 @upbqdn
Sorry, something went wrong.
oxarbitrage
Successfully merging a pull request may close this issue.
Motivation
lightwalletd
uses thegetblock
JSON-RPC method.lightwalletd
caches all the blocks from Sapling activation, asking for them in height order.So this RPC needs to be fast:
NU5 & Orchard
lightwalletd
implemented NU5 & Orchard changes here:Required Fields
The method is documented here: https://zcash.github.io/rpc/getblock.html
lightwalletd
only usesheight
andverbosity = 0
as arguments.And only the following fields are used by
lightwalletd
: https://github.com/zcash/lightwalletd/blob/master/common/common.go#L232Field list:
Tasks
lightwalletd
API Reference
We plan to use jsonrpc_core with:
Example Code
Here are examples of:
The text was updated successfully, but these errors were encountered: