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
None of our deterministic queries have been marked with option (cosmos.query.v1.module_query_safe) = true;. This means that we cannot take full advantage of them and allow them to be used by the internal state machine.
Problem Definition
This prevents new features in cosmos-sdk from correctly using our chain, and it allows informs devs which queries they can safely use.
Proposal
Find all queries that are classified as safe. They have the following attributes:
The query tracks gas usage.
The query has a deterministic response.
Add option (cosmos.query.v1.module_query_safe) = true; to each query that we classify as safe.
Regenerate protos.
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Summary
None of our deterministic queries have been marked with
option (cosmos.query.v1.module_query_safe) = true;
. This means that we cannot take full advantage of them and allow them to be used by the internal state machine.Problem Definition
This prevents new features in cosmos-sdk from correctly using our chain, and it allows informs devs which queries they can safely use.
Proposal
safe
. They have the following attributes:option (cosmos.query.v1.module_query_safe) = true;
to each query that we classify assafe
.For Admin Use
The text was updated successfully, but these errors were encountered: