Skip to content
New issue

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

feat: implement ABCI Query via gRPC #11642

Merged
merged 38 commits into from
Apr 25, 2022
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
4c00b1f
updates
alexanderbez Apr 14, 2022
5f7dffb
updates
alexanderbez Apr 14, 2022
0f4e432
proto gen
alexanderbez Apr 15, 2022
1009f37
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 15, 2022
d145f20
updates
alexanderbez Apr 16, 2022
68aef98
updates
alexanderbez Apr 16, 2022
b1f80e3
updates
alexanderbez Apr 17, 2022
d5ee2bc
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 17, 2022
3958fd6
cl++
alexanderbez Apr 17, 2022
a6d242e
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 18, 2022
06f23f6
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 18, 2022
a551ca5
Update proto/cosmos/base/tendermint/v1beta1/query.proto
alexanderbez Apr 19, 2022
fdae2b8
cl++
alexanderbez Apr 19, 2022
3519291
updates
alexanderbez Apr 19, 2022
614ca7d
Merge branch 'bez/grpc-abci-query' of github.com:cosmos/cosmos-sdk in…
alexanderbez Apr 19, 2022
2ac3255
updates
alexanderbez Apr 19, 2022
dc2d795
Update client/grpc/tmservice/service_test.go
alexanderbez Apr 19, 2022
3d2e72f
Update client/grpc/tmservice/service_test.go
alexanderbez Apr 19, 2022
d9944c7
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 19, 2022
d653cf3
updates
alexanderbez Apr 19, 2022
8902935
Merge branch 'bez/grpc-abci-query' of github.com:cosmos/cosmos-sdk in…
alexanderbez Apr 19, 2022
ab61f4f
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 19, 2022
e50155a
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 19, 2022
dc4bc1a
updates
alexanderbez Apr 19, 2022
cbe8f23
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 19, 2022
2f0b84b
updates
alexanderbez Apr 20, 2022
0d4664b
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 20, 2022
60ea824
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 20, 2022
aee4a16
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 21, 2022
19a1a68
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 21, 2022
9f36a46
Merge branch 'master' into bez/grpc-abci-query
alexanderbez Apr 21, 2022
11f9bf9
updates
alexanderbez Apr 22, 2022
22c3d68
updates
alexanderbez Apr 22, 2022
b8fb75a
Merge branch 'main' into bez/grpc-abci-query
alexanderbez Apr 25, 2022
e0176f6
Merge branch 'main' into bez/grpc-abci-query
alexanderbez Apr 25, 2022
0b86641
Merge branch 'main' into bez/grpc-abci-query
alexanderbez Apr 25, 2022
a851151
updates
alexanderbez Apr 25, 2022
f5a5508
Merge branch 'main' into bez/grpc-abci-query
alexanderbez Apr 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Features

* (grpc) [\#11642](https://github.com/cosmos/cosmos-sdk/pull/11642) Implement `ABCIQuery` in the Tendermint gRPC service, which proxies ABCI `Query` requests directly to the application.
* (x/upgrade) [\#11551](https://github.com/cosmos/cosmos-sdk/pull/11551) Update `ScheduleUpgrade` for chains to schedule an automated upgrade on `BeginBlock` without having to go though governance.
* (cli) [\#11548](https://github.com/cosmos/cosmos-sdk/pull/11548) Add Tendermint's `inspect` command to the `tendermint` sub-command.
* (tx) [#\11533](https://github.com/cosmos/cosmos-sdk/pull/11533) Register [`EIP191`](https://eips.ethereum.org/EIPS/eip-191) as an available `SignMode` for chains to use.
Expand Down Expand Up @@ -85,6 +86,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### API Breaking Changes

* (grpc) [\#11642](https://github.com/cosmos/cosmos-sdk/pull/11642) The `RegisterTendermintService` method in the `tmservice` package now requires a `abciQueryFn` query function parameter.
* [\#11496](https://github.com/cosmos/cosmos-sdk/pull/11496) Refactor abstractions for snapshot and pruning; snapshot intervals eventually pruned; unit tests.
* (types) [\#11689](https://github.com/cosmos/cosmos-sdk/pull/11689) Make `Coins#Sub` and `Coins#SafeSub` consistent with `Coins#Add`.
* (store)[\#11152](https://github.com/cosmos/cosmos-sdk/pull/11152) Remove `keep-every` from pruning options.
Expand Down
Loading