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(x/auth): define simplified account query service #13210

Merged
merged 28 commits into from
Sep 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7ae0b47
feat(x/auth): define simplified account query service
aaronc Sep 8, 2022
b3d2dac
updates
aaronc Sep 8, 2022
03df3ff
docs
aaronc Sep 12, 2022
bd2f410
Merge branch 'main' of github.com:cosmos/cosmos-sdk into aaronc/simpl…
aaronc Sep 12, 2022
bdc1efa
protogen
aaronc Sep 12, 2022
6e9203e
Merge branch 'main' into aaronc/simple-auth-query-proto
aaronc Sep 12, 2022
9512872
Update proto/cosmos/auth/v1/query.proto
aaronc Sep 12, 2022
4d5294d
Merge branch 'main' into aaronc/simple-auth-query-proto
alexanderbez Sep 12, 2022
3e456fe
updates
alexanderbez Sep 13, 2022
76724c7
updates
alexanderbez Sep 13, 2022
326e4f9
move to v1beta1
aaronc Sep 13, 2022
52a68f0
Merge branch 'main' of github.com:cosmos/cosmos-sdk into aaronc/simpl…
aaronc Sep 13, 2022
9058c0f
proto-gen
aaronc Sep 13, 2022
abb207c
Merge branch 'aaronc/simple-auth-query-proto' of github.com:cosmos/co…
aaronc Sep 13, 2022
6e81e26
WIP on API changes
aaronc Sep 13, 2022
d4a5f9f
fix proto-gen + tests
aaronc Sep 14, 2022
2483b74
Merge branch 'main' into aaronc/simple-auth-query-proto
aaronc Sep 14, 2022
bc2b88e
address review comments
aaronc Sep 14, 2022
2d1fee9
Merge remote-tracking branch 'origin/aaronc/simple-auth-query-proto' …
aaronc Sep 14, 2022
1a603a5
Merge branch 'main' of github.com:cosmos/cosmos-sdk into aaronc/simpl…
aaronc Sep 14, 2022
6e5bc01
Update x/auth/keeper/grpc_query.go
aaronc Sep 15, 2022
733d63e
update CHANGELOG.md
aaronc Sep 15, 2022
76d000e
docs
aaronc Sep 15, 2022
463a54f
Merge branch 'main' into aaronc/simple-auth-query-proto
aaronc Sep 15, 2022
9e52403
Merge branch 'main' of github.com:cosmos/cosmos-sdk into aaronc/simpl…
aaronc Sep 15, 2022
a936af7
proto lint
aaronc Sep 15, 2022
e39b8dd
Merge remote-tracking branch 'origin/aaronc/simple-auth-query-proto' …
aaronc Sep 15, 2022
5193994
Merge branch 'main' into aaronc/simple-auth-query-proto
alexanderbez Sep 16, 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (cli) [#12742](https://github.com/cosmos/cosmos-sdk/pull/12742) Add the `prune` CLI cmd to manually prune app store history versions based on the pruning options.
* (ledger) [#12935](https://github.com/cosmos/cosmos-sdk/pull/12935) Generalize Ledger integration to allow for different apps or keytypes that use SECP256k1.
* (x/bank) [#11981](https://github.com/cosmos/cosmos-sdk/pull/11981) Create the `SetSendEnabled` endpoint for managing the bank's SendEnabled settings.
* (x/auth) [#13210](https://github.com/cosmos/cosmos-sdk/pull/13210) Add `Query/AccountInfo` endpoint for simplified access to basic account info.

### Improvements

Expand Down
Loading