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
Cosmos-sdk doesn't return any state proofs in gRPC/REST queries, see cosmos/cosmos-sdk#7036.
As REST is supposed to be one of the main ways for communication with nodes, we need to return them.
Options:
O1: Contribute to cosmos-sdk (probably requires communication and check of the design with cosmos maintainers)
O2: Explicitly return state proofs as one of the values in every DCL query response
just add this parameter to query.proto for every response and every module
generate the response appropriately.
An example where a similar approach is used: link and link
Only single value queries (that is quering items stored in Store directly) will be supported. For example get-model will have a state proof returned, while get-all-models will not.
Multi value proofs support is a separate task: State Proofs: Light client for lists #34.
The text was updated successfully, but these errors were encountered:
Cosmos-sdk doesn't return any state proofs in gRPC/REST queries, see cosmos/cosmos-sdk#7036.
As REST is supposed to be one of the main ways for communication with nodes, we need to return them.
Options:
O1: Contribute to cosmos-sdk (probably requires communication and check of the design with cosmos maintainers)
O2: Explicitly return state proofs as one of the values in every DCL query response
Please note, that
get-model
will have a state proof returned, whileget-all-models
will not.Multi value proofs support is a separate task: State Proofs: Light client for lists #34.
The text was updated successfully, but these errors were encountered: