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

gRPC gateway init #7019

Merged
merged 49 commits into from
Aug 25, 2020
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
204f43a
WIP: grpc server setup
atheeshp Aug 10, 2020
fdaac0b
add register grpc routes
atheeshp Aug 10, 2020
d5fadc9
updated go mod
atheeshp Aug 10, 2020
83b38a6
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 11, 2020
9d23a1f
updated grpc for all modules
atheeshp Aug 11, 2020
e8ca8ea
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 11, 2020
c443a46
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 12, 2020
f51b946
added pb file for grpc gateway
atheeshp Aug 12, 2020
4de3b1c
udpated gw file
atheeshp Aug 12, 2020
138b84b
added a test for grpc route
atheeshp Aug 12, 2020
1c7cd87
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 14, 2020
1dec763
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 14, 2020
351a2c1
fixed conflicts
atheeshp Aug 14, 2020
5c5c9f9
added grpc server
atheeshp Aug 14, 2020
0031fa4
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 17, 2020
0868234
grpc tests added
atheeshp Aug 17, 2020
a9d95c0
cleanup
anilcse Aug 17, 2020
1e078e6
Fix gateway forward issue
anilcse Aug 19, 2020
84555f3
Add godoc
anilcse Aug 19, 2020
2f428cf
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 20, 2020
5634896
Merge branch 'atheesh/5921-grpc-gateway-register' of github.com:cosmo…
atheeshp Aug 20, 2020
dd1a560
updated tests
atheeshp Aug 20, 2020
d92579a
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 20, 2020
308a5ed
fix lint
atheeshp Aug 20, 2020
da96310
fix tests
atheeshp Aug 20, 2020
5cf179b
fix tests
atheeshp Aug 20, 2020
07c6fa6
fix tests
atheeshp Aug 20, 2020
d2ed9ca
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
atheeshp Aug 20, 2020
2d63abd
fixed test
atheeshp Aug 20, 2020
772bddc
Add grpc headers
anilcse Aug 21, 2020
23d2c64
Merge branch 'atheesh/5921-grpc-gateway-register' of github.com:cosmo…
anilcse Aug 21, 2020
934641c
Fix error handling
anilcse Aug 22, 2020
284debc
Fix tests - hacky
anilcse Aug 24, 2020
e68d084
Fix lint
anilcse Aug 24, 2020
37f60dc
remove debug logs
anilcse Aug 24, 2020
9f4a3f1
Merge branch 'master' into atheesh/5921-grpc-gateway-register
anilcse Aug 24, 2020
7659f99
Fix review comments
anilcse Aug 24, 2020
d2fdefe
Merge branch 'master' of github.com:cosmos/cosmos-sdk into atheesh/59…
anilcse Aug 24, 2020
714c0c5
Merge branch 'atheesh/5921-grpc-gateway-register' of github.com:cosmo…
anilcse Aug 24, 2020
57065ae
move grpc tests into a separate file
anilcse Aug 24, 2020
0d2e016
Fix protobuf version
anilcse Aug 24, 2020
3b5d0f2
Update x/capability/module.go
fedekunze Aug 25, 2020
e174052
Merge branch 'master' into atheesh/5921-grpc-gateway-register
fedekunze Aug 25, 2020
736ec4c
Fix godoc
anilcse Aug 25, 2020
a49a749
Fix review suggestions
anilcse Aug 25, 2020
03baa6b
Fix codec
anilcse Aug 25, 2020
5f3eb57
Add query params test for gateway request
anilcse Aug 25, 2020
1675dfa
Fix gofmt
anilcse Aug 25, 2020
04e5e29
Merge branch 'master' into atheesh/5921-grpc-gateway-register
anilcse Aug 25, 2020
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
Prev Previous commit
Next Next commit
remove debug logs
  • Loading branch information
anilcse committed Aug 24, 2020
commit 37f60dc67e14c314ab23191fc2c556ef049a675c
3 changes: 0 additions & 3 deletions x/bank/client/rest/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,6 @@ func (s *IntegrationTestSuite) TestTotalSupplyGRPCHandler() {
tc := tc
s.Run(tc.name, func() {
resp, err := rest.GetRequestWithHeaders(tc.url, tc.headers)
// debug
fmt.Println("url", tc.url)
fmt.Println("resp", string(resp))
s.Require().NoError(err)

s.Require().NoError(val.ClientCtx.LegacyAmino.UnmarshalJSON(resp, tc.respType))
Expand Down