diff --git a/CHANGELOG.md b/CHANGELOG.md index b9885542827..1a92a4b63cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,7 +63,6 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (04-channel) [\#2638](https://github.com/cosmos/ibc-go/pull/2638) Channel Keeper now expects a keeper which fulfills the expected `exported.ScopedKeeper` interface for the capability keeper. * (core/04-channel)[\#1703](https://github.com/cosmos/ibc-go/pull/1703) Update `SendPacket` API to take in necessary arguments and construct rest of packet rather than taking in entire packet. The generated packet sequence is returned by the `SendPacket` function. * (modules/apps/27-interchain-accounts) [\#2433](https://github.com/cosmos/ibc-go/pull/2450) Renamed icatypes.PortPrefix to icatypes.ControllerPortPrefix & icatypes.PortID to icatypes.HostPortID -* (core/02-client) [\#2573](https://github.com/cosmos/ibc-go/pull/2573) Renames `ClientParams` gRPC query method to `Params`. * (testing) [\#2567](https://github.com/cosmos/ibc-go/pull/2567) Modify `SendPacket` API of `Endpoint` to match the API of `SendPacket` in 04-channel. * (06-solomachine) [\#2761](https://github.com/cosmos/ibc-go/pull/2761) Removed deprecated `ClientId` field from `Misbehaviour` and `allow_update_after_proposal` field from `ClientState`. @@ -105,6 +104,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (modules/core/keeper) [\#1728](https://github.com/cosmos/ibc-go/pull/2399) Updated channel callback errors to include portID & channelID for better identification of errors. * [\#2434](https://github.com/cosmos/ibc-go/pull/2478) Removed all `TypeMsg` constants * (modules/core/exported) [#1689] (https://github.com/cosmos/ibc-go/pull/2539) Removing `GetVersions` from `ConnectionI` interface. +* (core/03-connection) [\#2745](https://github.com/cosmos/ibc-go/pull/2745) Adding `ConnectionParams` grpc query and CLI to 03-connection. ### Features @@ -117,6 +117,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (light-clients/07-tendermint) [\#1674](https://github.com/cosmos/ibc-go/pull/1674) Submitted ClientState is zeroed out before checking the proof in order to prevent the proposal from containing information governance is not actually voting on. * (modules/core/02-client)[\#1676](https://github.com/cosmos/ibc-go/pull/1676) ClientState must be zeroed out for `UpgradeProposals` to pass validation. This prevents a proposal containing information governance is not actually voting on. * (modules/core/keeper) [\#2403](https://github.com/cosmos/ibc-go/pull/2403) Added a function in keeper to cater for blank pointers. +* (modules/core/keeper) [\#2745](https://github.com/cosmos/ibc-go/pull/2745) Fix request wiring for `UpgradedConsensusState` in core query server. ## [v5.1.0](https://github.com/cosmos/ibc-go/releases/tag/v5.1.0) - 2022-11-09 diff --git a/docs/client/swagger-ui/swagger.yaml b/docs/client/swagger-ui/swagger.yaml index 3ecb4f22e41..e4159acdf8a 100644 --- a/docs/client/swagger-ui/swagger.yaml +++ b/docs/client/swagger-ui/swagger.yaml @@ -5742,7 +5742,7 @@ paths: - Query /ibc/core/client/v1/params: get: - summary: Params queries all parameters of the ibc client. + summary: ClientParams queries all parameters of the ibc client submodule. operationId: ClientParams responses: '200': @@ -5761,8 +5761,10 @@ paths: description: >- allowed_clients defines the list of allowed client state types. - description: |- - QueryParamsResponse is the response type for the Query/Params RPC + description: >- + QueryClientParamsResponse is the response type for the + Query/ClientParams RPC + method. default: description: An unexpected error response. @@ -8605,6 +8607,229 @@ paths: format: uint64 tags: - Query + /ibc/core/connection/v1/params: + get: + summary: ConnectionParams queries all parameters of the ibc connection submodule. + operationId: ConnectionParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_expected_time_per_block: + type: string + format: uint64 + description: >- + maximum expected time per block (in nanoseconds), used to + enforce block delay. This parameter should reflect the + + largest amount of time that the chain might reasonably + take to produce the next block under normal operating + + conditions. A safe choice is 3-5x the expected time per + block. + description: >- + QueryConnectionParamsResponse is the response type for the + Query/ConnectionParams RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + + JSON + + ==== + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + tags: + - Query /ibc/core/channel/v1/channels: get: summary: Channels queries all the IBC channels of a chain. @@ -14701,6 +14926,23 @@ definitions: type: string description: allowed_clients defines the list of allowed client state types. description: Params defines the set of IBC light client parameters. + ibc.core.client.v1.QueryClientParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + allowed_clients: + type: array + items: + type: string + description: allowed_clients defines the list of allowed client state types. + description: >- + QueryClientParamsResponse is the response type for the Query/ClientParams + RPC + + method. ibc.core.client.v1.QueryClientStateResponse: type: object properties: @@ -15666,21 +15908,6 @@ definitions: title: |- QueryConsensusStatesResponse is the response type for the Query/ConsensusStates RPC method - ibc.core.client.v1.QueryParamsResponse: - type: object - properties: - params: - description: params defines the parameters of the module. - type: object - properties: - allowed_clients: - type: array - items: - type: string - description: allowed_clients defines the list of allowed client state types. - description: |- - QueryParamsResponse is the response type for the Query/Params RPC - method. ibc.core.client.v1.QueryUpgradedClientStateResponse: type: object properties: @@ -16228,6 +16455,21 @@ definitions: description: |- IdentifiedConnection defines a connection with additional connection identifier field. + ibc.core.connection.v1.Params: + type: object + properties: + max_expected_time_per_block: + type: string + format: uint64 + description: >- + maximum expected time per block (in nanoseconds), used to enforce + block delay. This parameter should reflect the + + largest amount of time that the chain might reasonably take to produce + the next block under normal operating + + conditions. A safe choice is 3-5x the expected time per block. + description: Params defines the set of Connection parameters. ibc.core.connection.v1.QueryClientConnectionsResponse: type: object properties: @@ -16692,6 +16934,27 @@ definitions: title: |- QueryConnectionConsensusStateResponse is the response type for the Query/ConnectionConsensusState RPC method + ibc.core.connection.v1.QueryConnectionParamsResponse: + type: object + properties: + params: + description: params defines the parameters of the module. + type: object + properties: + max_expected_time_per_block: + type: string + format: uint64 + description: >- + maximum expected time per block (in nanoseconds), used to enforce + block delay. This parameter should reflect the + + largest amount of time that the chain might reasonably take to + produce the next block under normal operating + + conditions. A safe choice is 3-5x the expected time per block. + description: >- + QueryConnectionParamsResponse is the response type for the + Query/ConnectionParams RPC method. ibc.core.connection.v1.QueryConnectionResponse: type: object properties: diff --git a/modules/core/02-client/client/cli/cli.go b/modules/core/02-client/client/cli/cli.go index e326a5ea3b0..806d8bb407c 100644 --- a/modules/core/02-client/client/cli/cli.go +++ b/modules/core/02-client/client/cli/cli.go @@ -26,7 +26,7 @@ func GetQueryCmd() *cobra.Command { GetCmdQueryConsensusState(), GetCmdQueryHeader(), GetCmdSelfConsensusState(), - GetCmdParams(), + GetCmdClientParams(), ) return queryCmd diff --git a/modules/core/02-client/client/cli/query.go b/modules/core/02-client/client/cli/query.go index 167a001bd40..a2dd859bc43 100644 --- a/modules/core/02-client/client/cli/query.go +++ b/modules/core/02-client/client/cli/query.go @@ -311,8 +311,8 @@ func GetCmdSelfConsensusState() *cobra.Command { return cmd } -// GetCmdParams returns the command handler for ibc client parameter querying. -func GetCmdParams() *cobra.Command { +// GetCmdClientParams returns the command handler for ibc client parameter querying. +func GetCmdClientParams() *cobra.Command { cmd := &cobra.Command{ Use: "params", Short: "Query the current ibc client parameters", @@ -326,7 +326,7 @@ func GetCmdParams() *cobra.Command { } queryClient := types.NewQueryClient(clientCtx) - res, _ := queryClient.Params(cmd.Context(), &types.QueryParamsRequest{}) + res, _ := queryClient.ClientParams(cmd.Context(), &types.QueryClientParamsRequest{}) return clientCtx.PrintProto(res.Params) }, } diff --git a/modules/core/02-client/keeper/grpc_query.go b/modules/core/02-client/keeper/grpc_query.go index a004683d264..1f08604dd64 100644 --- a/modules/core/02-client/keeper/grpc_query.go +++ b/modules/core/02-client/keeper/grpc_query.go @@ -252,12 +252,12 @@ func (q Keeper) ClientStatus(c context.Context, req *types.QueryClientStatusRequ }, nil } -// Params implements the Query/Params gRPC method -func (q Keeper) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { +// ClientParams implements the Query/ClientParams gRPC method +func (q Keeper) ClientParams(c context.Context, _ *types.QueryClientParamsRequest) (*types.QueryClientParamsResponse, error) { ctx := sdk.UnwrapSDKContext(c) params := q.GetParams(ctx) - return &types.QueryParamsResponse{ + return &types.QueryClientParamsResponse{ Params: ¶ms, }, nil } diff --git a/modules/core/02-client/keeper/grpc_query_test.go b/modules/core/02-client/keeper/grpc_query_test.go index b6f1b59796f..10dc859bbe9 100644 --- a/modules/core/02-client/keeper/grpc_query_test.go +++ b/modules/core/02-client/keeper/grpc_query_test.go @@ -640,9 +640,9 @@ func (suite *KeeperTestSuite) TestQueryUpgradedConsensusStates() { } } -func (suite *KeeperTestSuite) TestQueryParams() { +func (suite *KeeperTestSuite) TestQueryClientParams() { ctx := sdk.WrapSDKContext(suite.chainA.GetContext()) expParams := types.DefaultParams() - res, _ := suite.chainA.QueryServer.Params(ctx, &types.QueryParamsRequest{}) + res, _ := suite.chainA.QueryServer.ClientParams(ctx, &types.QueryClientParamsRequest{}) suite.Require().Equal(&expParams, res.Params) } diff --git a/modules/core/02-client/types/query.pb.go b/modules/core/02-client/types/query.pb.go index 9bcecea9b8e..880289ad8b9 100644 --- a/modules/core/02-client/types/query.pb.go +++ b/modules/core/02-client/types/query.pb.go @@ -705,23 +705,23 @@ func (m *QueryClientStatusResponse) GetStatus() string { return "" } -// QueryParamsRequest is the request type for the Query/Params RPC +// QueryClientParamsRequest is the request type for the Query/ClientParams RPC // method. -type QueryParamsRequest struct { +type QueryClientParamsRequest struct { } -func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } -func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } -func (*QueryParamsRequest) ProtoMessage() {} -func (*QueryParamsRequest) Descriptor() ([]byte, []int) { +func (m *QueryClientParamsRequest) Reset() { *m = QueryClientParamsRequest{} } +func (m *QueryClientParamsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryClientParamsRequest) ProtoMessage() {} +func (*QueryClientParamsRequest) Descriptor() ([]byte, []int) { return fileDescriptor_dc42cdfd1d52d76e, []int{12} } -func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { +func (m *QueryClientParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *QueryClientParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_QueryParamsRequest.Marshal(b, m, deterministic) + return xxx_messageInfo_QueryClientParamsRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -731,37 +731,37 @@ func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, return b[:n], nil } } -func (m *QueryParamsRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_QueryParamsRequest.Merge(m, src) +func (m *QueryClientParamsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryClientParamsRequest.Merge(m, src) } -func (m *QueryParamsRequest) XXX_Size() int { +func (m *QueryClientParamsRequest) XXX_Size() int { return m.Size() } -func (m *QueryParamsRequest) XXX_DiscardUnknown() { - xxx_messageInfo_QueryParamsRequest.DiscardUnknown(m) +func (m *QueryClientParamsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryClientParamsRequest.DiscardUnknown(m) } -var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo +var xxx_messageInfo_QueryClientParamsRequest proto.InternalMessageInfo -// QueryParamsResponse is the response type for the Query/Params RPC +// QueryClientParamsResponse is the response type for the Query/ClientParams RPC // method. -type QueryParamsResponse struct { +type QueryClientParamsResponse struct { // params defines the parameters of the module. Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` } -func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } -func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } -func (*QueryParamsResponse) ProtoMessage() {} -func (*QueryParamsResponse) Descriptor() ([]byte, []int) { +func (m *QueryClientParamsResponse) Reset() { *m = QueryClientParamsResponse{} } +func (m *QueryClientParamsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryClientParamsResponse) ProtoMessage() {} +func (*QueryClientParamsResponse) Descriptor() ([]byte, []int) { return fileDescriptor_dc42cdfd1d52d76e, []int{13} } -func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { +func (m *QueryClientParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *QueryClientParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_QueryParamsResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_QueryClientParamsResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -771,19 +771,19 @@ func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, return b[:n], nil } } -func (m *QueryParamsResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_QueryParamsResponse.Merge(m, src) +func (m *QueryClientParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryClientParamsResponse.Merge(m, src) } -func (m *QueryParamsResponse) XXX_Size() int { +func (m *QueryClientParamsResponse) XXX_Size() int { return m.Size() } -func (m *QueryParamsResponse) XXX_DiscardUnknown() { - xxx_messageInfo_QueryParamsResponse.DiscardUnknown(m) +func (m *QueryClientParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryClientParamsResponse.DiscardUnknown(m) } -var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo +var xxx_messageInfo_QueryClientParamsResponse proto.InternalMessageInfo -func (m *QueryParamsResponse) GetParams() *Params { +func (m *QueryClientParamsResponse) GetParams() *Params { if m != nil { return m.Params } @@ -973,8 +973,8 @@ func init() { proto.RegisterType((*QueryConsensusStateHeightsResponse)(nil), "ibc.core.client.v1.QueryConsensusStateHeightsResponse") proto.RegisterType((*QueryClientStatusRequest)(nil), "ibc.core.client.v1.QueryClientStatusRequest") proto.RegisterType((*QueryClientStatusResponse)(nil), "ibc.core.client.v1.QueryClientStatusResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "ibc.core.client.v1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "ibc.core.client.v1.QueryParamsResponse") + proto.RegisterType((*QueryClientParamsRequest)(nil), "ibc.core.client.v1.QueryClientParamsRequest") + proto.RegisterType((*QueryClientParamsResponse)(nil), "ibc.core.client.v1.QueryClientParamsResponse") proto.RegisterType((*QueryUpgradedClientStateRequest)(nil), "ibc.core.client.v1.QueryUpgradedClientStateRequest") proto.RegisterType((*QueryUpgradedClientStateResponse)(nil), "ibc.core.client.v1.QueryUpgradedClientStateResponse") proto.RegisterType((*QueryUpgradedConsensusStateRequest)(nil), "ibc.core.client.v1.QueryUpgradedConsensusStateRequest") @@ -984,73 +984,73 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/query.proto", fileDescriptor_dc42cdfd1d52d76e) } var fileDescriptor_dc42cdfd1d52d76e = []byte{ - // 1053 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0xa4, 0x69, 0xd4, 0x3e, 0xbb, 0x09, 0x9a, 0x7c, 0xd4, 0xdd, 0x46, 0x8e, 0xb3, 0x41, - 0x4d, 0x5a, 0x92, 0x9d, 0xc4, 0xa1, 0x49, 0x84, 0x84, 0x04, 0xa9, 0x54, 0x9a, 0x4b, 0x55, 0x16, - 0x21, 0x10, 0x12, 0x8a, 0x76, 0xd7, 0x93, 0xcd, 0x4a, 0xf6, 0x8e, 0xeb, 0xd9, 0xb5, 0x14, 0x55, - 0xb9, 0xf4, 0xc4, 0x11, 0x09, 0x89, 0x2b, 0x12, 0x47, 0x0e, 0x15, 0x07, 0x24, 0x6e, 0x88, 0x13, - 0xe4, 0x58, 0x09, 0x0e, 0x9c, 0x28, 0x4a, 0xf8, 0x43, 0x90, 0x67, 0x66, 0xe3, 0x5d, 0x7b, 0x5c, - 0xaf, 0x51, 0xe0, 0xb6, 0xfb, 0x3e, 0x7f, 0xef, 0xf7, 0x9e, 0xdf, 0x5b, 0x43, 0x39, 0x70, 0x3d, - 0xe2, 0xb1, 0x16, 0x25, 0x5e, 0x3d, 0xa0, 0x61, 0x44, 0xda, 0x9b, 0xe4, 0x69, 0x4c, 0x5b, 0xc7, - 0x56, 0xb3, 0xc5, 0x22, 0x86, 0x71, 0xe0, 0x7a, 0x56, 0x47, 0x6f, 0x49, 0xbd, 0xd5, 0xde, 0x34, - 0xee, 0x79, 0x8c, 0x37, 0x18, 0x27, 0xae, 0xc3, 0xa9, 0x34, 0x26, 0xed, 0x4d, 0x97, 0x46, 0xce, - 0x26, 0x69, 0x3a, 0x7e, 0x10, 0x3a, 0x51, 0xc0, 0x42, 0xe9, 0x6f, 0x2c, 0x6a, 0xe2, 0xab, 0x48, - 0xd2, 0xe0, 0x96, 0xcf, 0x98, 0x5f, 0xa7, 0x44, 0xbc, 0xb9, 0xf1, 0x21, 0x71, 0x42, 0x95, 0xdb, - 0x58, 0x50, 0x2a, 0xa7, 0x19, 0x10, 0x27, 0x0c, 0x59, 0x24, 0x02, 0x73, 0xa5, 0x9d, 0xf5, 0x99, - 0xcf, 0xc4, 0x23, 0xe9, 0x3c, 0x49, 0xa9, 0xb9, 0x0d, 0x37, 0x3f, 0xec, 0x20, 0x7a, 0x20, 0x72, - 0x7c, 0x14, 0x39, 0x11, 0xb5, 0xe9, 0xd3, 0x98, 0xf2, 0x08, 0xdf, 0x86, 0xeb, 0x32, 0xf3, 0x41, - 0x50, 0x2b, 0xa1, 0x0a, 0x5a, 0xbd, 0x6e, 0x5f, 0x93, 0x82, 0xfd, 0x9a, 0xf9, 0x02, 0x41, 0xa9, - 0xdf, 0x91, 0x37, 0x59, 0xc8, 0x29, 0xde, 0x81, 0xa2, 0xf2, 0xe4, 0x1d, 0xb9, 0x70, 0x2e, 0x54, - 0x67, 0x2d, 0x89, 0xcf, 0x4a, 0xa0, 0x5b, 0xef, 0x87, 0xc7, 0x76, 0xc1, 0xeb, 0x06, 0xc0, 0xb3, - 0x70, 0xb5, 0xd9, 0x62, 0xec, 0xb0, 0x34, 0x5e, 0x41, 0xab, 0x45, 0x5b, 0xbe, 0xe0, 0x07, 0x50, - 0x14, 0x0f, 0x07, 0x47, 0x34, 0xf0, 0x8f, 0xa2, 0xd2, 0x15, 0x11, 0xce, 0xb0, 0xfa, 0xa9, 0xb6, - 0x1e, 0x09, 0x8b, 0xbd, 0x89, 0xd3, 0x3f, 0x17, 0xc7, 0xec, 0x82, 0xf0, 0x92, 0x22, 0xd3, 0xed, - 0xc7, 0xcb, 0x93, 0x4a, 0x1f, 0x02, 0x74, 0x1b, 0xa1, 0xd0, 0xde, 0xb1, 0x64, 0xd7, 0xac, 0x4e, - 0xd7, 0x2c, 0xd9, 0x62, 0xd5, 0x35, 0xeb, 0x89, 0xe3, 0x27, 0x2c, 0xd9, 0x29, 0x4f, 0xf3, 0x77, - 0x04, 0xb7, 0x34, 0x49, 0x14, 0x2b, 0x21, 0xdc, 0x48, 0xb3, 0xc2, 0x4b, 0xa8, 0x72, 0x65, 0xb5, - 0x50, 0xbd, 0xab, 0xab, 0x63, 0xbf, 0x46, 0xc3, 0x28, 0x38, 0x0c, 0x68, 0x2d, 0x15, 0x6a, 0xaf, - 0xdc, 0x29, 0xeb, 0xbb, 0x57, 0x8b, 0xf3, 0x5a, 0x35, 0xb7, 0x8b, 0x29, 0x2e, 0x39, 0xfe, 0x20, - 0x53, 0xd5, 0xb8, 0xa8, 0x6a, 0x65, 0x68, 0x55, 0x12, 0x6c, 0xa6, 0xac, 0xef, 0x11, 0x18, 0xb2, - 0xac, 0x8e, 0x2a, 0xe4, 0x31, 0xcf, 0x3d, 0x27, 0x78, 0x05, 0xa6, 0x5b, 0xb4, 0x1d, 0xf0, 0x80, - 0x85, 0x07, 0x61, 0xdc, 0x70, 0x69, 0x4b, 0x20, 0x99, 0xb0, 0xa7, 0x12, 0xf1, 0x63, 0x21, 0xcd, - 0x18, 0xa6, 0xfa, 0x9c, 0x32, 0x94, 0x8d, 0xc4, 0xcb, 0x70, 0xa3, 0xde, 0xa9, 0x2f, 0x4a, 0xcc, - 0x26, 0x2a, 0x68, 0xf5, 0x9a, 0x5d, 0x94, 0x42, 0xd5, 0xed, 0x1f, 0x11, 0xdc, 0xd6, 0x42, 0x56, - 0xbd, 0x78, 0x17, 0xa6, 0xbd, 0x44, 0x93, 0x63, 0x48, 0xa7, 0xbc, 0x4c, 0x98, 0xff, 0x72, 0x4e, - 0x9f, 0xeb, 0x91, 0xf3, 0x5c, 0x6c, 0x3f, 0xd4, 0xb4, 0xfc, 0xdf, 0x0c, 0xf2, 0x2f, 0x08, 0x16, - 0xf4, 0x20, 0x14, 0x7f, 0x9f, 0xc3, 0x1b, 0x3d, 0xfc, 0x25, 0xe3, 0xbc, 0xa6, 0x2b, 0x37, 0x1b, - 0xe6, 0x93, 0x20, 0x3a, 0xca, 0x10, 0x30, 0x9d, 0xa5, 0xf7, 0x12, 0x47, 0xf7, 0x0b, 0x04, 0x4b, - 0x9a, 0x42, 0x64, 0xf6, 0xff, 0x97, 0xd3, 0x5f, 0x11, 0x98, 0xaf, 0x83, 0xa2, 0x98, 0xfd, 0x14, - 0x6e, 0xf6, 0x30, 0xab, 0xc6, 0x29, 0x21, 0x78, 0xf8, 0x3c, 0xcd, 0x79, 0xba, 0x0c, 0x97, 0x47, - 0xea, 0x4e, 0xdf, 0x2a, 0x8d, 0x73, 0x51, 0x69, 0x6e, 0xf5, 0xad, 0xc7, 0xb8, 0x5b, 0xf8, 0x3c, - 0x4c, 0x72, 0x21, 0x51, 0x6e, 0xea, 0xcd, 0x9c, 0x05, 0x2c, 0x9c, 0x9e, 0x38, 0x2d, 0xa7, 0x91, - 0xe4, 0x31, 0xf7, 0x61, 0x26, 0x23, 0x55, 0x41, 0xaa, 0x30, 0xd9, 0x14, 0x12, 0xf5, 0x73, 0xd6, - 0x92, 0xa5, 0x7c, 0x94, 0xa5, 0xb9, 0x04, 0x8b, 0x22, 0xd4, 0xc7, 0x4d, 0xbf, 0xe5, 0xd4, 0x32, - 0x2b, 0x35, 0xc9, 0x56, 0x87, 0xca, 0x60, 0x13, 0x95, 0xfa, 0x11, 0xcc, 0xc5, 0x4a, 0x7d, 0x90, - 0xfb, 0xfa, 0xcd, 0xc4, 0xfd, 0x11, 0xcd, 0x37, 0xd5, 0xa0, 0x5c, 0x64, 0xd3, 0xad, 0x5d, 0x33, - 0x86, 0xe5, 0xd7, 0x5a, 0x29, 0x58, 0x8f, 0xa1, 0xd4, 0x85, 0x35, 0xc2, 0xca, 0x9b, 0x8f, 0xb5, - 0x71, 0xab, 0x3f, 0x15, 0xe1, 0xaa, 0xc8, 0x8b, 0xbf, 0x41, 0x50, 0x48, 0xc1, 0xc6, 0x6f, 0xe9, - 0xb8, 0x1e, 0xf0, 0x71, 0x61, 0xac, 0xe5, 0x33, 0x96, 0x45, 0x98, 0xf7, 0x9f, 0xff, 0xf6, 0xf7, - 0x57, 0xe3, 0x04, 0xaf, 0x93, 0x81, 0x9f, 0x47, 0x6a, 0x0b, 0x91, 0x67, 0x17, 0xe3, 0x77, 0x82, - 0xbf, 0x46, 0x50, 0x4c, 0x1f, 0x48, 0x9c, 0x2b, 0x6b, 0x32, 0x63, 0xc6, 0x7a, 0x4e, 0x6b, 0x05, - 0xf2, 0xae, 0x00, 0xb9, 0x8c, 0x97, 0x86, 0x82, 0xc4, 0xaf, 0x10, 0x4c, 0x65, 0x79, 0xc5, 0xd6, - 0xe0, 0x64, 0xba, 0xf6, 0x1b, 0x24, 0xb7, 0xbd, 0x82, 0x57, 0x17, 0xf0, 0x0e, 0x71, 0x4d, 0x0b, - 0xaf, 0x67, 0x99, 0xa7, 0x69, 0x24, 0xc9, 0x01, 0x26, 0xcf, 0x7a, 0x4e, 0xf9, 0x09, 0x91, 0xab, - 0x29, 0xa5, 0x90, 0x82, 0x13, 0xfc, 0x02, 0xc1, 0x74, 0xcf, 0xf1, 0xc0, 0x79, 0x21, 0x5f, 0x34, - 0x60, 0x23, 0xbf, 0x83, 0x2a, 0x72, 0x57, 0x14, 0x59, 0xc5, 0x1b, 0xa3, 0x16, 0x89, 0x4f, 0x11, - 0xcc, 0x69, 0x37, 0x33, 0xbe, 0x9f, 0x13, 0x45, 0xf6, 0xa8, 0x18, 0xdb, 0xa3, 0xba, 0xa9, 0x12, - 0xde, 0x13, 0x25, 0xbc, 0x83, 0x77, 0x47, 0xee, 0x93, 0xba, 0x13, 0xf8, 0xdb, 0xcc, 0xd8, 0xc7, - 0xf9, 0xc6, 0x3e, 0x1e, 0x69, 0xec, 0xbb, 0x7b, 0x3b, 0xf7, 0x6f, 0x33, 0xce, 0xf2, 0x7d, 0x02, - 0x93, 0x72, 0x0f, 0xe3, 0x3b, 0x03, 0xf3, 0x65, 0x56, 0xbe, 0xb1, 0x32, 0xd4, 0x4e, 0x21, 0x32, - 0x05, 0xa2, 0x05, 0x6c, 0xe8, 0x10, 0xc9, 0xa5, 0x8f, 0x7f, 0x40, 0x30, 0xa3, 0xd9, 0xe6, 0x78, - 0x6b, 0x60, 0x92, 0xc1, 0xe7, 0xc1, 0x78, 0x7b, 0x34, 0x27, 0x05, 0xb3, 0x2a, 0x60, 0xae, 0xe1, - 0x7b, 0x3a, 0x98, 0xda, 0x53, 0xc2, 0xf1, 0xcf, 0x08, 0xe6, 0xf5, 0x0b, 0x1f, 0x6f, 0x0f, 0x07, - 0xa1, 0x5d, 0x24, 0x3b, 0x23, 0xfb, 0xe5, 0x69, 0xfc, 0xa0, 0x9b, 0xc3, 0xf7, 0xec, 0xd3, 0xb3, - 0x32, 0x7a, 0x79, 0x56, 0x46, 0x7f, 0x9d, 0x95, 0xd1, 0x97, 0xe7, 0xe5, 0xb1, 0x97, 0xe7, 0xe5, - 0xb1, 0x3f, 0xce, 0xcb, 0x63, 0x9f, 0xed, 0xfa, 0x41, 0x74, 0x14, 0xbb, 0x96, 0xc7, 0x1a, 0x44, - 0xfd, 0x65, 0x0e, 0x5c, 0x6f, 0xdd, 0x67, 0xa4, 0xbd, 0x4d, 0x1a, 0xac, 0x16, 0xd7, 0x29, 0x97, - 0x79, 0x36, 0xaa, 0xeb, 0x2a, 0x55, 0x74, 0xdc, 0xa4, 0xdc, 0x9d, 0x14, 0xa7, 0x6b, 0xeb, 0x9f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x84, 0x2a, 0x94, 0x6e, 0x9e, 0x0f, 0x00, 0x00, + // 1051 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xce, 0xa4, 0x69, 0xd4, 0x3e, 0xbb, 0x09, 0x9a, 0x26, 0xa9, 0xbb, 0x8d, 0x1c, 0x67, 0x83, + 0x68, 0x5a, 0x92, 0x9d, 0xc4, 0xa1, 0x49, 0x84, 0x84, 0x04, 0xa9, 0x54, 0xda, 0x4b, 0x29, 0x8b, + 0x10, 0x08, 0x09, 0x45, 0xbb, 0xeb, 0xc9, 0x66, 0x25, 0x7b, 0xc7, 0xf5, 0xec, 0x5a, 0x8a, 0xaa, + 0x5c, 0x7a, 0xe2, 0x06, 0x12, 0x12, 0x57, 0x24, 0x8e, 0x1c, 0x2a, 0x0e, 0x48, 0x5c, 0x39, 0x41, + 0x8e, 0x45, 0x70, 0xe0, 0x44, 0x51, 0xc2, 0x1f, 0x82, 0x3c, 0x33, 0x6b, 0xef, 0xda, 0xe3, 0x7a, + 0x8d, 0x42, 0x6f, 0xbb, 0xef, 0xe7, 0xf7, 0xbe, 0xf7, 0xfc, 0xde, 0x1a, 0xca, 0x81, 0xeb, 0x11, + 0x8f, 0xb5, 0x28, 0xf1, 0xea, 0x01, 0x0d, 0x23, 0xd2, 0xde, 0x24, 0x8f, 0x63, 0xda, 0x3a, 0xb2, + 0x9a, 0x2d, 0x16, 0x31, 0x8c, 0x03, 0xd7, 0xb3, 0x3a, 0x7a, 0x4b, 0xea, 0xad, 0xf6, 0xa6, 0x71, + 0xdb, 0x63, 0xbc, 0xc1, 0x38, 0x71, 0x1d, 0x4e, 0xa5, 0x31, 0x69, 0x6f, 0xba, 0x34, 0x72, 0x36, + 0x49, 0xd3, 0xf1, 0x83, 0xd0, 0x89, 0x02, 0x16, 0x4a, 0x7f, 0x63, 0x49, 0x13, 0x5f, 0x45, 0x92, + 0x06, 0xd7, 0x7d, 0xc6, 0xfc, 0x3a, 0x25, 0xe2, 0xcd, 0x8d, 0x0f, 0x88, 0x13, 0xaa, 0xdc, 0xc6, + 0xa2, 0x52, 0x39, 0xcd, 0x80, 0x38, 0x61, 0xc8, 0x22, 0x11, 0x98, 0x2b, 0xed, 0x9c, 0xcf, 0x7c, + 0x26, 0x1e, 0x49, 0xe7, 0x49, 0x4a, 0xcd, 0x6d, 0xb8, 0xf6, 0x61, 0x07, 0xd1, 0x5d, 0x91, 0xe3, + 0xa3, 0xc8, 0x89, 0xa8, 0x4d, 0x1f, 0xc7, 0x94, 0x47, 0xf8, 0x06, 0x5c, 0x96, 0x99, 0xf7, 0x83, + 0x5a, 0x09, 0x55, 0xd0, 0xea, 0x65, 0xfb, 0x92, 0x14, 0x3c, 0xa8, 0x99, 0xcf, 0x10, 0x94, 0x06, + 0x1d, 0x79, 0x93, 0x85, 0x9c, 0xe2, 0x1d, 0x28, 0x2a, 0x4f, 0xde, 0x91, 0x0b, 0xe7, 0x42, 0x75, + 0xce, 0x92, 0xf8, 0xac, 0x04, 0xba, 0xf5, 0x5e, 0x78, 0x64, 0x17, 0xbc, 0x5e, 0x00, 0x3c, 0x07, + 0x17, 0x9b, 0x2d, 0xc6, 0x0e, 0x4a, 0x93, 0x15, 0xb4, 0x5a, 0xb4, 0xe5, 0x0b, 0xbe, 0x0b, 0x45, + 0xf1, 0xb0, 0x7f, 0x48, 0x03, 0xff, 0x30, 0x2a, 0x5d, 0x10, 0xe1, 0x0c, 0x6b, 0x90, 0x6a, 0xeb, + 0xbe, 0xb0, 0xd8, 0x9b, 0x3a, 0xf9, 0x6b, 0x69, 0xc2, 0x2e, 0x08, 0x2f, 0x29, 0x32, 0xdd, 0x41, + 0xbc, 0x3c, 0xa9, 0xf4, 0x1e, 0x40, 0xaf, 0x11, 0x0a, 0xed, 0x1b, 0x96, 0xec, 0x9a, 0xd5, 0xe9, + 0x9a, 0x25, 0x5b, 0xac, 0xba, 0x66, 0x3d, 0x72, 0xfc, 0x84, 0x25, 0x3b, 0xe5, 0x69, 0xfe, 0x81, + 0xe0, 0xba, 0x26, 0x89, 0x62, 0x25, 0x84, 0x2b, 0x69, 0x56, 0x78, 0x09, 0x55, 0x2e, 0xac, 0x16, + 0xaa, 0xb7, 0x74, 0x75, 0x3c, 0xa8, 0xd1, 0x30, 0x0a, 0x0e, 0x02, 0x5a, 0x4b, 0x85, 0xda, 0x2b, + 0x77, 0xca, 0xfa, 0xfe, 0xc5, 0xd2, 0x82, 0x56, 0xcd, 0xed, 0x62, 0x8a, 0x4b, 0x8e, 0xdf, 0xcf, + 0x54, 0x35, 0x29, 0xaa, 0xba, 0x39, 0xb2, 0x2a, 0x09, 0x36, 0x53, 0xd6, 0x0f, 0x08, 0x0c, 0x59, + 0x56, 0x47, 0x15, 0xf2, 0x98, 0xe7, 0x9e, 0x13, 0x7c, 0x13, 0x66, 0x5b, 0xb4, 0x1d, 0xf0, 0x80, + 0x85, 0xfb, 0x61, 0xdc, 0x70, 0x69, 0x4b, 0x20, 0x99, 0xb2, 0x67, 0x12, 0xf1, 0x43, 0x21, 0xcd, + 0x18, 0xa6, 0xfa, 0x9c, 0x32, 0x94, 0x8d, 0xc4, 0x2b, 0x70, 0xa5, 0xde, 0xa9, 0x2f, 0x4a, 0xcc, + 0xa6, 0x2a, 0x68, 0xf5, 0x92, 0x5d, 0x94, 0x42, 0xd5, 0xed, 0x9f, 0x10, 0xdc, 0xd0, 0x42, 0x56, + 0xbd, 0x78, 0x07, 0x66, 0xbd, 0x44, 0x93, 0x63, 0x48, 0x67, 0xbc, 0x4c, 0x98, 0xff, 0x73, 0x4e, + 0x9f, 0xea, 0x91, 0xf3, 0x5c, 0x6c, 0xdf, 0xd3, 0xb4, 0xfc, 0xbf, 0x0c, 0xf2, 0x2f, 0x08, 0x16, + 0xf5, 0x20, 0x14, 0x7f, 0x9f, 0xc3, 0x6b, 0x7d, 0xfc, 0x25, 0xe3, 0xbc, 0xa6, 0x2b, 0x37, 0x1b, + 0xe6, 0x93, 0x20, 0x3a, 0xcc, 0x10, 0x30, 0x9b, 0xa5, 0xf7, 0x1c, 0x47, 0xf7, 0x0b, 0x04, 0xcb, + 0x9a, 0x42, 0x64, 0xf6, 0x57, 0xcb, 0xe9, 0xaf, 0x08, 0xcc, 0x97, 0x41, 0x51, 0xcc, 0x7e, 0x0a, + 0xd7, 0xfa, 0x98, 0x55, 0xe3, 0x94, 0x10, 0x3c, 0x7a, 0x9e, 0xe6, 0x3d, 0x5d, 0x86, 0xf3, 0x23, + 0x75, 0x67, 0x60, 0x95, 0xc6, 0xb9, 0xa8, 0x34, 0xb7, 0x06, 0xd6, 0x63, 0xdc, 0x2b, 0x7c, 0x01, + 0xa6, 0xb9, 0x90, 0x28, 0x37, 0xf5, 0x66, 0x1a, 0x99, 0x6c, 0x8f, 0x9c, 0x96, 0xd3, 0x48, 0xb2, + 0x99, 0x1f, 0x64, 0x02, 0x26, 0x3a, 0x15, 0xb0, 0x0a, 0xd3, 0x4d, 0x21, 0x51, 0x3f, 0x6d, 0x2d, + 0x71, 0xca, 0x47, 0x59, 0x9a, 0xcb, 0xb0, 0x24, 0x02, 0x7e, 0xdc, 0xf4, 0x5b, 0x4e, 0x2d, 0xb3, + 0x5e, 0x93, 0x9c, 0x75, 0xa8, 0x0c, 0x37, 0x51, 0xa9, 0xef, 0xc3, 0x7c, 0xac, 0xd4, 0xfb, 0xb9, + 0x2f, 0xe1, 0xd5, 0x78, 0x30, 0xa2, 0xf9, 0xba, 0x1a, 0x9a, 0x6e, 0x36, 0xdd, 0x0a, 0x36, 0x63, + 0x58, 0x79, 0xa9, 0x95, 0x82, 0xf5, 0x10, 0x4a, 0x3d, 0x58, 0x63, 0xac, 0xbf, 0x85, 0x58, 0x1b, + 0xb7, 0xfa, 0x5b, 0x11, 0x2e, 0x8a, 0xbc, 0xf8, 0x5b, 0x04, 0x85, 0x14, 0x6c, 0xfc, 0xa6, 0x8e, + 0xeb, 0x21, 0x1f, 0x1a, 0xc6, 0x5a, 0x3e, 0x63, 0x59, 0x84, 0x79, 0xe7, 0xe9, 0xef, 0xff, 0x7c, + 0x3d, 0x49, 0xf0, 0x3a, 0x19, 0xfa, 0xa9, 0xa4, 0x36, 0x12, 0x79, 0xd2, 0x1d, 0xc5, 0x63, 0xfc, + 0x0d, 0x82, 0x62, 0xfa, 0x58, 0xe2, 0x5c, 0x59, 0x93, 0x49, 0x33, 0xd6, 0x73, 0x5a, 0x2b, 0x90, + 0xb7, 0x04, 0xc8, 0x15, 0xbc, 0x3c, 0x12, 0x24, 0x7e, 0x81, 0x60, 0x26, 0xcb, 0x2b, 0xb6, 0x86, + 0x27, 0xd3, 0xb5, 0xdf, 0x20, 0xb9, 0xed, 0x15, 0xbc, 0xba, 0x80, 0x77, 0x80, 0x6b, 0x5a, 0x78, + 0x7d, 0x8b, 0x3d, 0x4d, 0x23, 0x49, 0x8e, 0x31, 0x79, 0xd2, 0x77, 0xd6, 0x8f, 0x89, 0x5c, 0x53, + 0x29, 0x85, 0x14, 0x1c, 0xe3, 0x67, 0x08, 0x66, 0xfb, 0x0e, 0x09, 0xce, 0x0b, 0xb9, 0xdb, 0x80, + 0x8d, 0xfc, 0x0e, 0xaa, 0xc8, 0x5d, 0x51, 0x64, 0x15, 0x6f, 0x8c, 0x5b, 0x24, 0x3e, 0x41, 0x30, + 0xaf, 0xdd, 0xd2, 0xf8, 0x4e, 0x4e, 0x14, 0xd9, 0x03, 0x63, 0x6c, 0x8f, 0xeb, 0xa6, 0x4a, 0x78, + 0x57, 0x94, 0xf0, 0x36, 0xde, 0x1d, 0xbb, 0x4f, 0xea, 0x66, 0xe0, 0xef, 0x32, 0x63, 0x1f, 0xe7, + 0x1b, 0xfb, 0x78, 0xac, 0xb1, 0xef, 0xed, 0xf0, 0xdc, 0xbf, 0xcd, 0x38, 0xcb, 0xf7, 0x97, 0x5d, + 0x90, 0x72, 0x1d, 0x8f, 0x04, 0x99, 0xb9, 0x02, 0x23, 0x41, 0x66, 0xef, 0x82, 0x69, 0x0a, 0x90, + 0x8b, 0xd8, 0xd0, 0x81, 0x94, 0x77, 0x00, 0xff, 0x88, 0xe0, 0xaa, 0x66, 0xc1, 0xe3, 0xad, 0xa1, + 0xa9, 0x86, 0x5f, 0x0c, 0xe3, 0xad, 0xf1, 0x9c, 0x14, 0xcc, 0xaa, 0x80, 0xb9, 0x86, 0x6f, 0xeb, + 0x60, 0x6a, 0xaf, 0x0b, 0xc7, 0x3f, 0x23, 0x58, 0xd0, 0xdf, 0x00, 0xbc, 0x3d, 0x1a, 0x84, 0x76, + 0xb7, 0xec, 0x8c, 0xed, 0x97, 0x67, 0x16, 0x86, 0x9d, 0x21, 0xbe, 0x67, 0x9f, 0x9c, 0x96, 0xd1, + 0xf3, 0xd3, 0x32, 0xfa, 0xfb, 0xb4, 0x8c, 0xbe, 0x3a, 0x2b, 0x4f, 0x3c, 0x3f, 0x2b, 0x4f, 0xfc, + 0x79, 0x56, 0x9e, 0xf8, 0x6c, 0xd7, 0x0f, 0xa2, 0xc3, 0xd8, 0xb5, 0x3c, 0xd6, 0x20, 0xea, 0x1f, + 0x75, 0xe0, 0x7a, 0xeb, 0x3e, 0x23, 0xed, 0x6d, 0xd2, 0x60, 0xb5, 0xb8, 0x4e, 0xb9, 0xcc, 0xb3, + 0x51, 0x5d, 0x57, 0xa9, 0xa2, 0xa3, 0x26, 0xe5, 0xee, 0xb4, 0xb8, 0x66, 0x5b, 0xff, 0x06, 0x00, + 0x00, 0xff, 0xff, 0x37, 0x04, 0xaa, 0xbb, 0xbd, 0x0f, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1079,8 +1079,8 @@ type QueryClient interface { ConsensusStateHeights(ctx context.Context, in *QueryConsensusStateHeightsRequest, opts ...grpc.CallOption) (*QueryConsensusStateHeightsResponse, error) // Status queries the status of an IBC client. ClientStatus(ctx context.Context, in *QueryClientStatusRequest, opts ...grpc.CallOption) (*QueryClientStatusResponse, error) - // Params queries all parameters of the ibc client. - Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) + // ClientParams queries all parameters of the ibc client submodule. + ClientParams(ctx context.Context, in *QueryClientParamsRequest, opts ...grpc.CallOption) (*QueryClientParamsResponse, error) // UpgradedClientState queries an Upgraded IBC light client. UpgradedClientState(ctx context.Context, in *QueryUpgradedClientStateRequest, opts ...grpc.CallOption) (*QueryUpgradedClientStateResponse, error) // UpgradedConsensusState queries an Upgraded IBC consensus state. @@ -1149,9 +1149,9 @@ func (c *queryClient) ClientStatus(ctx context.Context, in *QueryClientStatusReq return out, nil } -func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { - out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/ibc.core.client.v1.Query/Params", in, out, opts...) +func (c *queryClient) ClientParams(ctx context.Context, in *QueryClientParamsRequest, opts ...grpc.CallOption) (*QueryClientParamsResponse, error) { + out := new(QueryClientParamsResponse) + err := c.cc.Invoke(ctx, "/ibc.core.client.v1.Query/ClientParams", in, out, opts...) if err != nil { return nil, err } @@ -1192,8 +1192,8 @@ type QueryServer interface { ConsensusStateHeights(context.Context, *QueryConsensusStateHeightsRequest) (*QueryConsensusStateHeightsResponse, error) // Status queries the status of an IBC client. ClientStatus(context.Context, *QueryClientStatusRequest) (*QueryClientStatusResponse, error) - // Params queries all parameters of the ibc client. - Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) + // ClientParams queries all parameters of the ibc client submodule. + ClientParams(context.Context, *QueryClientParamsRequest) (*QueryClientParamsResponse, error) // UpgradedClientState queries an Upgraded IBC light client. UpgradedClientState(context.Context, *QueryUpgradedClientStateRequest) (*QueryUpgradedClientStateResponse, error) // UpgradedConsensusState queries an Upgraded IBC consensus state. @@ -1222,8 +1222,8 @@ func (*UnimplementedQueryServer) ConsensusStateHeights(ctx context.Context, req func (*UnimplementedQueryServer) ClientStatus(ctx context.Context, req *QueryClientStatusRequest) (*QueryClientStatusResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ClientStatus not implemented") } -func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method Params not implemented") +func (*UnimplementedQueryServer) ClientParams(ctx context.Context, req *QueryClientParamsRequest) (*QueryClientParamsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ClientParams not implemented") } func (*UnimplementedQueryServer) UpgradedClientState(ctx context.Context, req *QueryUpgradedClientStateRequest) (*QueryUpgradedClientStateResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method UpgradedClientState not implemented") @@ -1344,20 +1344,20 @@ func _Query_ClientStatus_Handler(srv interface{}, ctx context.Context, dec func( return interceptor(ctx, in, info, handler) } -func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(QueryParamsRequest) +func _Query_ClientParams_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryClientParamsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(QueryServer).Params(ctx, in) + return srv.(QueryServer).ClientParams(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/ibc.core.client.v1.Query/Params", + FullMethod: "/ibc.core.client.v1.Query/ClientParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) + return srv.(QueryServer).ClientParams(ctx, req.(*QueryClientParamsRequest)) } return interceptor(ctx, in, info, handler) } @@ -1427,8 +1427,8 @@ var _Query_serviceDesc = grpc.ServiceDesc{ Handler: _Query_ClientStatus_Handler, }, { - MethodName: "Params", - Handler: _Query_Params_Handler, + MethodName: "ClientParams", + Handler: _Query_ClientParams_Handler, }, { MethodName: "UpgradedClientState", @@ -1953,7 +1953,7 @@ func (m *QueryClientStatusResponse) MarshalToSizedBuffer(dAtA []byte) (int, erro return len(dAtA) - i, nil } -func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { +func (m *QueryClientParamsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -1963,12 +1963,12 @@ func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *QueryClientParamsRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *QueryClientParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -1976,7 +1976,7 @@ func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { +func (m *QueryClientParamsResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -1986,12 +1986,12 @@ func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *QueryClientParamsResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *QueryClientParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -2341,7 +2341,7 @@ func (m *QueryClientStatusResponse) Size() (n int) { return n } -func (m *QueryParamsRequest) Size() (n int) { +func (m *QueryClientParamsRequest) Size() (n int) { if m == nil { return 0 } @@ -2350,7 +2350,7 @@ func (m *QueryParamsRequest) Size() (n int) { return n } -func (m *QueryParamsResponse) Size() (n int) { +func (m *QueryClientParamsResponse) Size() (n int) { if m == nil { return 0 } @@ -3787,7 +3787,7 @@ func (m *QueryClientStatusResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { +func (m *QueryClientParamsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -3810,10 +3810,10 @@ func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: QueryParamsRequest: wiretype end group for non-group") + return fmt.Errorf("proto: QueryClientParamsRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: QueryParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: QueryClientParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { default: @@ -3837,7 +3837,7 @@ func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { +func (m *QueryClientParamsResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -3860,10 +3860,10 @@ func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: QueryParamsResponse: wiretype end group for non-group") + return fmt.Errorf("proto: QueryClientParamsResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: QueryParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: QueryClientParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: diff --git a/modules/core/02-client/types/query.pb.gw.go b/modules/core/02-client/types/query.pb.gw.go index 564233d1733..1e0e41f2579 100644 --- a/modules/core/02-client/types/query.pb.gw.go +++ b/modules/core/02-client/types/query.pb.gw.go @@ -437,20 +437,20 @@ func local_request_Query_ClientStatus_0(ctx context.Context, marshaler runtime.M } -func request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { - var protoReq QueryParamsRequest +func request_Query_ClientParams_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryClientParamsRequest var metadata runtime.ServerMetadata - msg, err := client.Params(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + msg, err := client.ClientParams(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) return msg, metadata, err } -func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { - var protoReq QueryParamsRequest +func local_request_Query_ClientParams_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryClientParamsRequest var metadata runtime.ServerMetadata - msg, err := server.Params(ctx, &protoReq) + msg, err := server.ClientParams(ctx, &protoReq) return msg, metadata, err } @@ -635,7 +635,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) - mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + mux.Handle("GET", pattern_Query_ClientParams_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() var stream runtime.ServerTransportStream @@ -646,7 +646,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - resp, md, err := local_request_Query_Params_0(rctx, inboundMarshaler, server, req, pathParams) + resp, md, err := local_request_Query_ClientParams_0(rctx, inboundMarshaler, server, req, pathParams) md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { @@ -654,7 +654,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } - forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + forward_Query_ClientParams_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) }) @@ -865,7 +865,7 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) - mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + mux.Handle("GET", pattern_Query_ClientParams_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) @@ -874,14 +874,14 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - resp, md, err := request_Query_Params_0(rctx, inboundMarshaler, client, req, pathParams) + resp, md, err := request_Query_ClientParams_0(rctx, inboundMarshaler, client, req, pathParams) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + forward_Query_ClientParams_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) }) @@ -941,7 +941,7 @@ var ( pattern_Query_ClientStatus_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"ibc", "core", "client", "v1", "client_status", "client_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"ibc", "core", "client", "v1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_ClientParams_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"ibc", "core", "client", "v1", "params"}, "", runtime.AssumeColonVerbOpt(false))) pattern_Query_UpgradedClientState_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"ibc", "core", "client", "v1", "upgraded_client_states"}, "", runtime.AssumeColonVerbOpt(false))) @@ -961,7 +961,7 @@ var ( forward_Query_ClientStatus_0 = runtime.ForwardResponseMessage - forward_Query_Params_0 = runtime.ForwardResponseMessage + forward_Query_ClientParams_0 = runtime.ForwardResponseMessage forward_Query_UpgradedClientState_0 = runtime.ForwardResponseMessage diff --git a/modules/core/03-connection/client/cli/cli.go b/modules/core/03-connection/client/cli/cli.go index 0ff0831c726..dedfb272507 100644 --- a/modules/core/03-connection/client/cli/cli.go +++ b/modules/core/03-connection/client/cli/cli.go @@ -19,6 +19,7 @@ func GetQueryCmd() *cobra.Command { GetCmdQueryConnections(), GetCmdQueryConnection(), GetCmdQueryClientConnections(), + GetCmdConnectionParams(), ) return queryCmd diff --git a/modules/core/03-connection/client/cli/query.go b/modules/core/03-connection/client/cli/query.go index 7845b2f257c..db2d5c0ecf6 100644 --- a/modules/core/03-connection/client/cli/query.go +++ b/modules/core/03-connection/client/cli/query.go @@ -116,3 +116,28 @@ func GetCmdQueryClientConnections() *cobra.Command { return cmd } + +// GetCmdConnectionParams returns the command handler for ibc connection parameter querying. +func GetCmdConnectionParams() *cobra.Command { + cmd := &cobra.Command{ + Use: "params", + Short: "Query the current ibc connection parameters", + Long: "Query the current ibc connection parameters", + Args: cobra.NoArgs, + Example: fmt.Sprintf("%s query %s %s params", version.AppName, host.ModuleName, types.SubModuleName), + RunE: func(cmd *cobra.Command, _ []string) error { + clientCtx, err := client.GetClientQueryContext(cmd) + if err != nil { + return err + } + queryClient := types.NewQueryClient(clientCtx) + + res, _ := queryClient.ConnectionParams(cmd.Context(), &types.QueryConnectionParamsRequest{}) + return clientCtx.PrintProto(res.Params) + }, + } + + flags.AddQueryFlagsToCmd(cmd) + + return cmd +} diff --git a/modules/core/03-connection/keeper/grpc_query.go b/modules/core/03-connection/keeper/grpc_query.go index 92e1a040edf..cc3f6ccc011 100644 --- a/modules/core/03-connection/keeper/grpc_query.go +++ b/modules/core/03-connection/keeper/grpc_query.go @@ -175,3 +175,13 @@ func (q Keeper) ConnectionConsensusState(c context.Context, req *types.QueryConn proofHeight := clienttypes.GetSelfHeight(ctx) return types.NewQueryConnectionConsensusStateResponse(connection.ClientId, anyConsensusState, height, nil, proofHeight), nil } + +// ConnectionParams implements the Query/ConnectionParams gRPC method. +func (q Keeper) ConnectionParams(c context.Context, req *types.QueryConnectionParamsRequest) (*types.QueryConnectionParamsResponse, error) { + ctx := sdk.UnwrapSDKContext(c) + params := q.GetParams(ctx) + + return &types.QueryConnectionParamsResponse{ + Params: ¶ms, + }, nil +} diff --git a/modules/core/03-connection/keeper/grpc_query_test.go b/modules/core/03-connection/keeper/grpc_query_test.go index da1857d78f7..745d0b2732a 100644 --- a/modules/core/03-connection/keeper/grpc_query_test.go +++ b/modules/core/03-connection/keeper/grpc_query_test.go @@ -440,3 +440,10 @@ func (suite *KeeperTestSuite) TestQueryConnectionConsensusState() { }) } } + +func (suite *KeeperTestSuite) TestQueryConnectionParams() { + ctx := sdk.WrapSDKContext(suite.chainA.GetContext()) + expParams := types.DefaultParams() + res, _ := suite.chainA.QueryServer.ConnectionParams(ctx, &types.QueryConnectionParamsRequest{}) + suite.Require().Equal(&expParams, res.Params) +} diff --git a/modules/core/03-connection/types/query.pb.go b/modules/core/03-connection/types/query.pb.go index 2c589235bc8..921dbe07b68 100644 --- a/modules/core/03-connection/types/query.pb.go +++ b/modules/core/03-connection/types/query.pb.go @@ -617,6 +617,89 @@ func (m *QueryConnectionConsensusStateResponse) GetProofHeight() types.Height { return types.Height{} } +// QueryConnectionParamsRequest is the request type for the Query/ConnectionParams RPC method. +type QueryConnectionParamsRequest struct { +} + +func (m *QueryConnectionParamsRequest) Reset() { *m = QueryConnectionParamsRequest{} } +func (m *QueryConnectionParamsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryConnectionParamsRequest) ProtoMessage() {} +func (*QueryConnectionParamsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_cd8d529f8c7cd06b, []int{10} +} +func (m *QueryConnectionParamsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryConnectionParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryConnectionParamsRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryConnectionParamsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryConnectionParamsRequest.Merge(m, src) +} +func (m *QueryConnectionParamsRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryConnectionParamsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryConnectionParamsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryConnectionParamsRequest proto.InternalMessageInfo + +// QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method. +type QueryConnectionParamsResponse struct { + // params defines the parameters of the module. + Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` +} + +func (m *QueryConnectionParamsResponse) Reset() { *m = QueryConnectionParamsResponse{} } +func (m *QueryConnectionParamsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryConnectionParamsResponse) ProtoMessage() {} +func (*QueryConnectionParamsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_cd8d529f8c7cd06b, []int{11} +} +func (m *QueryConnectionParamsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryConnectionParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryConnectionParamsResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryConnectionParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryConnectionParamsResponse.Merge(m, src) +} +func (m *QueryConnectionParamsResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryConnectionParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryConnectionParamsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryConnectionParamsResponse proto.InternalMessageInfo + +func (m *QueryConnectionParamsResponse) GetParams() *Params { + if m != nil { + return m.Params + } + return nil +} + func init() { proto.RegisterType((*QueryConnectionRequest)(nil), "ibc.core.connection.v1.QueryConnectionRequest") proto.RegisterType((*QueryConnectionResponse)(nil), "ibc.core.connection.v1.QueryConnectionResponse") @@ -628,6 +711,8 @@ func init() { proto.RegisterType((*QueryConnectionClientStateResponse)(nil), "ibc.core.connection.v1.QueryConnectionClientStateResponse") proto.RegisterType((*QueryConnectionConsensusStateRequest)(nil), "ibc.core.connection.v1.QueryConnectionConsensusStateRequest") proto.RegisterType((*QueryConnectionConsensusStateResponse)(nil), "ibc.core.connection.v1.QueryConnectionConsensusStateResponse") + proto.RegisterType((*QueryConnectionParamsRequest)(nil), "ibc.core.connection.v1.QueryConnectionParamsRequest") + proto.RegisterType((*QueryConnectionParamsResponse)(nil), "ibc.core.connection.v1.QueryConnectionParamsResponse") } func init() { @@ -635,63 +720,67 @@ func init() { } var fileDescriptor_cd8d529f8c7cd06b = []byte{ - // 895 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x31, 0x6f, 0x23, 0x45, - 0x14, 0xf6, 0x38, 0xb9, 0xd3, 0x65, 0x1c, 0xee, 0x60, 0xe4, 0xbb, 0x33, 0x0b, 0x38, 0x61, 0x8f, - 0x90, 0x1c, 0x70, 0x33, 0xe7, 0x44, 0x17, 0x1d, 0x21, 0x46, 0xe0, 0x28, 0x90, 0x34, 0x51, 0x58, - 0x24, 0x0a, 0x9a, 0x68, 0x77, 0x3d, 0x59, 0xaf, 0x64, 0xef, 0x38, 0x9e, 0xb5, 0x91, 0x15, 0x59, - 0x48, 0xfc, 0x01, 0x90, 0x68, 0x68, 0x68, 0x29, 0xf8, 0x03, 0x14, 0x74, 0x54, 0x29, 0x23, 0xd1, - 0xa4, 0x8a, 0x90, 0x43, 0x4b, 0xc3, 0x2f, 0x40, 0x3b, 0x33, 0xce, 0xce, 0xda, 0xeb, 0xc4, 0xb1, - 0x48, 0xb7, 0x79, 0xf3, 0xde, 0xbc, 0xef, 0xfb, 0xde, 0x9b, 0xcf, 0x81, 0xa6, 0xef, 0xb8, 0xc4, - 0x65, 0x2d, 0x4a, 0x5c, 0x16, 0x04, 0xd4, 0x0d, 0x7d, 0x16, 0x90, 0x4e, 0x89, 0x1c, 0xb5, 0x69, - 0xab, 0x8b, 0x9b, 0x2d, 0x16, 0x32, 0xf4, 0xc8, 0x77, 0x5c, 0x1c, 0xe5, 0xe0, 0x38, 0x07, 0x77, - 0x4a, 0x46, 0xde, 0x63, 0x1e, 0x13, 0x29, 0x24, 0xfa, 0x92, 0xd9, 0xc6, 0x7b, 0x2e, 0xe3, 0x0d, - 0xc6, 0x89, 0x63, 0x73, 0x2a, 0xaf, 0x21, 0x9d, 0x92, 0x43, 0x43, 0xbb, 0x44, 0x9a, 0xb6, 0xe7, - 0x07, 0xb6, 0x28, 0x97, 0xb9, 0x0b, 0x71, 0xf7, 0xba, 0x4f, 0x83, 0x30, 0xea, 0x2c, 0xbf, 0x54, - 0xc2, 0xf2, 0x18, 0x78, 0x1a, 0x10, 0x99, 0xf8, 0xa6, 0xc7, 0x98, 0x57, 0xa7, 0xc4, 0x6e, 0xfa, - 0xc4, 0x0e, 0x02, 0x16, 0x8a, 0x36, 0x5c, 0x9d, 0xbe, 0xae, 0x4e, 0xc5, 0x5f, 0x4e, 0xfb, 0x90, - 0xd8, 0x81, 0x22, 0x67, 0x96, 0xe1, 0xa3, 0x2f, 0x22, 0x90, 0x5b, 0x97, 0x37, 0x5a, 0xf4, 0xa8, - 0x4d, 0x79, 0x88, 0x9e, 0xc0, 0x57, 0xe2, 0x36, 0x07, 0x7e, 0xb5, 0x00, 0x16, 0xc1, 0xca, 0x9c, - 0x35, 0x1f, 0x07, 0x77, 0xab, 0xe6, 0xef, 0x00, 0x3e, 0x1e, 0xa9, 0xe7, 0x4d, 0x16, 0x70, 0x8a, - 0xb6, 0x21, 0x8c, 0x73, 0x45, 0x75, 0x6e, 0x75, 0x09, 0xa7, 0x8b, 0x89, 0xe3, 0xfa, 0xed, 0xa0, - 0x6a, 0x69, 0x85, 0x28, 0x0f, 0xef, 0x34, 0x5b, 0x8c, 0x1d, 0x16, 0xb2, 0x8b, 0x60, 0x65, 0xde, - 0x92, 0x7f, 0xa0, 0x2d, 0x38, 0x2f, 0x3e, 0x0e, 0x6a, 0xd4, 0xf7, 0x6a, 0x61, 0x61, 0x46, 0x5c, - 0x6f, 0x68, 0xd7, 0x4b, 0x1d, 0x3b, 0x25, 0xbc, 0x23, 0x32, 0x2a, 0xb3, 0x27, 0xe7, 0x0b, 0x19, - 0x2b, 0x27, 0xaa, 0x64, 0xc8, 0xb4, 0x47, 0xc0, 0xf3, 0x01, 0xfb, 0xcf, 0x20, 0x8c, 0xc7, 0xa5, - 0xc0, 0xbf, 0x8b, 0xe5, 0x6c, 0x71, 0x34, 0x5b, 0x2c, 0x57, 0x44, 0xcd, 0x16, 0xef, 0xdb, 0x1e, - 0x55, 0xb5, 0x96, 0x56, 0x69, 0xfe, 0x03, 0x60, 0x61, 0xb4, 0x87, 0x52, 0x68, 0x0f, 0xe6, 0x62, - 0xa2, 0xbc, 0x00, 0x16, 0x67, 0x56, 0x72, 0xab, 0x1f, 0x8c, 0x93, 0x68, 0xb7, 0x4a, 0x83, 0xd0, - 0x3f, 0xf4, 0x69, 0x55, 0x13, 0x5b, 0xbf, 0x00, 0x7d, 0x9e, 0x00, 0x9d, 0x15, 0xa0, 0x97, 0xaf, - 0x05, 0x2d, 0xc1, 0xe8, 0xa8, 0xd1, 0x4b, 0x78, 0xf7, 0x86, 0xba, 0xaa, 0x7c, 0x73, 0x13, 0xbe, - 0x25, 0xe9, 0x8a, 0xb4, 0x14, 0x61, 0xdf, 0x80, 0x73, 0xf2, 0x8a, 0x78, 0xa5, 0xee, 0xc9, 0xc0, - 0x6e, 0xd5, 0xfc, 0x05, 0xc0, 0xe2, 0xb8, 0x72, 0xa5, 0xd9, 0x53, 0xf8, 0xaa, 0xb6, 0x96, 0x4d, - 0x3b, 0xac, 0x49, 0xe1, 0xe6, 0xac, 0x07, 0x71, 0x7c, 0x3f, 0x0a, 0xdf, 0xe6, 0xe6, 0x38, 0xf0, - 0xed, 0xa1, 0xa9, 0x4a, 0xc4, 0x5f, 0x86, 0x76, 0x38, 0xd8, 0x03, 0x54, 0x4e, 0x7d, 0x41, 0x95, - 0xc2, 0xbf, 0xe7, 0x0b, 0xf9, 0xae, 0xdd, 0xa8, 0x6f, 0x98, 0x89, 0x63, 0x73, 0xe8, 0x6d, 0xf5, - 0x01, 0x34, 0xaf, 0x6a, 0xa2, 0x04, 0xb1, 0xe1, 0x63, 0xff, 0x72, 0x33, 0x0e, 0x94, 0xb6, 0x3c, - 0x4a, 0x51, 0x6b, 0xfb, 0x34, 0x8d, 0x9a, 0xb6, 0x4c, 0xda, 0x9d, 0x0f, 0xfd, 0xb4, 0xf0, 0x6d, - 0x0a, 0xf9, 0x1b, 0x80, 0xef, 0x0c, 0x93, 0x8c, 0x68, 0x05, 0xbc, 0xcd, 0xff, 0x47, 0x31, 0xd1, - 0x32, 0x7c, 0xd0, 0xa2, 0x1d, 0x9f, 0x47, 0xa7, 0x41, 0xbb, 0xe1, 0xd0, 0x96, 0x20, 0x33, 0x6b, - 0xdd, 0x1f, 0x84, 0xf7, 0x44, 0x34, 0x91, 0xa8, 0x11, 0xd3, 0x12, 0x15, 0xf2, 0x73, 0x00, 0x97, - 0xae, 0x41, 0xae, 0x26, 0x54, 0x86, 0xd1, 0x6a, 0xca, 0x93, 0xc4, 0x64, 0xf2, 0x58, 0x1a, 0x33, - 0x1e, 0x18, 0x33, 0xfe, 0x34, 0xe8, 0x5a, 0xf7, 0xdd, 0xc4, 0x35, 0xc9, 0x17, 0x93, 0x4d, 0xbe, - 0x98, 0x78, 0x34, 0x33, 0x57, 0x8d, 0x66, 0x76, 0x8a, 0xd1, 0xac, 0x7e, 0x7f, 0x0f, 0xde, 0x11, - 0x04, 0xd1, 0xaf, 0x00, 0xc2, 0x98, 0x25, 0xc2, 0xe3, 0x1c, 0x2a, 0xfd, 0x97, 0xc4, 0x20, 0x13, - 0xe7, 0x4b, 0xc1, 0xcc, 0x8f, 0xbe, 0xfb, 0xf3, 0xef, 0x1f, 0xb3, 0x2f, 0xd0, 0x1a, 0xb9, 0xf6, - 0xf7, 0x8f, 0x93, 0xe3, 0xc4, 0xdc, 0x7b, 0xe8, 0x67, 0x00, 0x73, 0x9a, 0x71, 0xa0, 0x49, 0xbb, - 0x0f, 0x1c, 0xca, 0x78, 0x3e, 0x79, 0x81, 0xc2, 0xfb, 0xbe, 0xc0, 0xbb, 0x84, 0x9e, 0x4c, 0x80, - 0x17, 0xfd, 0x01, 0xe0, 0x6b, 0x23, 0xf6, 0x86, 0x5e, 0x5c, 0xdd, 0x74, 0x8c, 0x9b, 0x1a, 0xeb, - 0x37, 0x2d, 0x53, 0x88, 0x3f, 0x16, 0x88, 0x5f, 0xa2, 0xf5, 0xb1, 0x88, 0xe5, 0xc6, 0x25, 0x85, - 0x1e, 0x6c, 0x61, 0x0f, 0x9d, 0x01, 0xf8, 0x30, 0xd5, 0x96, 0xd0, 0x87, 0x13, 0xaa, 0x37, 0xea, - 0x97, 0xc6, 0xc6, 0x34, 0xa5, 0x8a, 0xd0, 0x8e, 0x20, 0x54, 0x41, 0x9f, 0x4c, 0xb1, 0x32, 0x44, - 0x37, 0x4d, 0xf4, 0x53, 0x16, 0x16, 0xc6, 0x3d, 0x69, 0xb4, 0x39, 0x29, 0xc4, 0x34, 0x0f, 0x33, - 0xca, 0x53, 0x56, 0x2b, 0x8e, 0xdf, 0x0a, 0x8e, 0x5d, 0xf4, 0xcd, 0x54, 0x1c, 0x93, 0x0e, 0x44, - 0x06, 0x6e, 0x46, 0x8e, 0x87, 0x7c, 0xb1, 0x47, 0xa4, 0x69, 0x68, 0x07, 0x32, 0xd0, 0xab, 0x7c, - 0x75, 0xd2, 0x2f, 0x82, 0xd3, 0x7e, 0x11, 0xfc, 0xd5, 0x2f, 0x82, 0x1f, 0x2e, 0x8a, 0x99, 0xd3, - 0x8b, 0x62, 0xe6, 0xec, 0xa2, 0x98, 0xf9, 0x7a, 0xd3, 0xf3, 0xc3, 0x5a, 0xdb, 0xc1, 0x2e, 0x6b, - 0x10, 0xf5, 0x0f, 0xb0, 0xef, 0xb8, 0xcf, 0x3c, 0x46, 0x3a, 0xeb, 0xa4, 0xc1, 0xaa, 0xed, 0x3a, - 0xe5, 0x12, 0xf1, 0xf3, 0xb5, 0x67, 0x1a, 0xe8, 0xb0, 0xdb, 0xa4, 0xdc, 0xb9, 0x2b, 0xfc, 0x6f, - 0xed, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x4a, 0xa7, 0x60, 0x8e, 0x0b, 0x00, 0x00, + // 958 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x41, 0x6f, 0xdc, 0x44, + 0x14, 0xce, 0x6c, 0xd2, 0x88, 0xbc, 0x0d, 0x6d, 0x19, 0xa5, 0xed, 0x62, 0x8a, 0x13, 0x5c, 0xd2, + 0xa4, 0x40, 0x3d, 0xdd, 0x84, 0x44, 0xa5, 0x24, 0x08, 0x52, 0x15, 0x9a, 0x4b, 0x15, 0x8c, 0x04, + 0x12, 0x97, 0xc8, 0xf6, 0x4e, 0x1c, 0x4b, 0x59, 0xcf, 0x76, 0xc7, 0xbb, 0x68, 0x55, 0x45, 0x48, + 0xfc, 0x02, 0x24, 0x2e, 0x5c, 0xb8, 0x82, 0xc4, 0x1f, 0x40, 0x88, 0x1b, 0xa7, 0x1e, 0x2b, 0x71, + 0xe9, 0x29, 0x42, 0x1b, 0xae, 0x5c, 0xf8, 0x05, 0xc8, 0x33, 0xe3, 0x7a, 0xbc, 0x6b, 0x27, 0x9b, + 0x55, 0x73, 0xdb, 0xbc, 0x79, 0xef, 0xcd, 0xf7, 0x7d, 0xef, 0xcd, 0x67, 0x05, 0xac, 0xd0, 0xf3, + 0x89, 0xcf, 0xda, 0x94, 0xf8, 0x2c, 0x8a, 0xa8, 0x1f, 0x87, 0x2c, 0x22, 0xdd, 0x3a, 0x79, 0xdc, + 0xa1, 0xed, 0x9e, 0xdd, 0x6a, 0xb3, 0x98, 0xe1, 0xab, 0xa1, 0xe7, 0xdb, 0x49, 0x8e, 0x9d, 0xe5, + 0xd8, 0xdd, 0xba, 0x31, 0x17, 0xb0, 0x80, 0x89, 0x14, 0x92, 0xfc, 0x92, 0xd9, 0xc6, 0x3b, 0x3e, + 0xe3, 0x4d, 0xc6, 0x89, 0xe7, 0x72, 0x2a, 0xdb, 0x90, 0x6e, 0xdd, 0xa3, 0xb1, 0x5b, 0x27, 0x2d, + 0x37, 0x08, 0x23, 0x57, 0x94, 0xcb, 0xdc, 0xf9, 0xec, 0xf6, 0x83, 0x90, 0x46, 0x71, 0x72, 0xb3, + 0xfc, 0xa5, 0x12, 0x96, 0x4a, 0xe0, 0x69, 0x40, 0x64, 0xe2, 0xf5, 0x80, 0xb1, 0xe0, 0x80, 0x12, + 0xb7, 0x15, 0x12, 0x37, 0x8a, 0x58, 0x2c, 0xae, 0xe1, 0xea, 0xf4, 0x75, 0x75, 0x2a, 0xfe, 0xf2, + 0x3a, 0x7b, 0xc4, 0x8d, 0x14, 0x39, 0x6b, 0x13, 0xae, 0x7e, 0x9e, 0x80, 0xbc, 0xff, 0xa2, 0xa3, + 0x43, 0x1f, 0x77, 0x28, 0x8f, 0xf1, 0x0d, 0x78, 0x35, 0xbb, 0x66, 0x37, 0x6c, 0xd4, 0xd0, 0x02, + 0x5a, 0x9e, 0x71, 0x66, 0xb3, 0xe0, 0x76, 0xc3, 0xfa, 0x03, 0xc1, 0xb5, 0xa1, 0x7a, 0xde, 0x62, + 0x11, 0xa7, 0xf8, 0x01, 0x40, 0x96, 0x2b, 0xaa, 0xab, 0x2b, 0x8b, 0x76, 0xb1, 0x98, 0x76, 0x56, + 0xff, 0x20, 0x6a, 0x38, 0x5a, 0x21, 0x9e, 0x83, 0x0b, 0xad, 0x36, 0x63, 0x7b, 0xb5, 0xca, 0x02, + 0x5a, 0x9e, 0x75, 0xe4, 0x1f, 0xf8, 0x3e, 0xcc, 0x8a, 0x1f, 0xbb, 0xfb, 0x34, 0x0c, 0xf6, 0xe3, + 0xda, 0xa4, 0x68, 0x6f, 0x68, 0xed, 0xa5, 0x8e, 0xdd, 0xba, 0xfd, 0x50, 0x64, 0x6c, 0x4d, 0x3d, + 0x3d, 0x9a, 0x9f, 0x70, 0xaa, 0xa2, 0x4a, 0x86, 0x2c, 0x77, 0x08, 0x3c, 0x4f, 0xd9, 0x7f, 0x0a, + 0x90, 0x8d, 0x4b, 0x81, 0xbf, 0x69, 0xcb, 0xd9, 0xda, 0xc9, 0x6c, 0x6d, 0xb9, 0x22, 0x6a, 0xb6, + 0xf6, 0x8e, 0x1b, 0x50, 0x55, 0xeb, 0x68, 0x95, 0xd6, 0xbf, 0x08, 0x6a, 0xc3, 0x77, 0x28, 0x85, + 0x1e, 0x41, 0x35, 0x23, 0xca, 0x6b, 0x68, 0x61, 0x72, 0xb9, 0xba, 0xf2, 0x5e, 0x99, 0x44, 0xdb, + 0x0d, 0x1a, 0xc5, 0xe1, 0x5e, 0x48, 0x1b, 0x9a, 0xd8, 0x7a, 0x03, 0xfc, 0x59, 0x0e, 0x74, 0x45, + 0x80, 0x5e, 0x3a, 0x15, 0xb4, 0x04, 0xa3, 0xa3, 0xc6, 0x77, 0x61, 0xfa, 0x8c, 0xba, 0xaa, 0x7c, + 0x6b, 0x03, 0xde, 0x94, 0x74, 0x45, 0x5a, 0x81, 0xb0, 0x6f, 0xc0, 0x8c, 0x6c, 0x91, 0xad, 0xd4, + 0x2b, 0x32, 0xb0, 0xdd, 0xb0, 0x7e, 0x46, 0x60, 0x96, 0x95, 0x2b, 0xcd, 0x6e, 0xc1, 0x65, 0x6d, + 0x2d, 0x5b, 0x6e, 0xbc, 0x2f, 0x85, 0x9b, 0x71, 0x2e, 0x65, 0xf1, 0x9d, 0x24, 0x7c, 0x9e, 0x9b, + 0xe3, 0xc1, 0x5b, 0x03, 0x53, 0x95, 0x88, 0xbf, 0x88, 0xdd, 0x38, 0xdd, 0x03, 0xbc, 0x59, 0xf8, + 0x82, 0xb6, 0x6a, 0xff, 0x1d, 0xcd, 0xcf, 0xf5, 0xdc, 0xe6, 0xc1, 0x3d, 0x2b, 0x77, 0x6c, 0x0d, + 0xbc, 0xad, 0x3e, 0x02, 0xeb, 0xa4, 0x4b, 0x94, 0x20, 0x2e, 0x5c, 0x0b, 0x5f, 0x6c, 0xc6, 0xae, + 0xd2, 0x96, 0x27, 0x29, 0x6a, 0x6d, 0x6f, 0x15, 0x51, 0xd3, 0x96, 0x49, 0xeb, 0x79, 0x25, 0x2c, + 0x0a, 0x9f, 0xa7, 0x90, 0xbf, 0x21, 0x78, 0x7b, 0x90, 0x64, 0x42, 0x2b, 0xe2, 0x1d, 0xfe, 0x12, + 0xc5, 0xc4, 0x4b, 0x70, 0xa9, 0x4d, 0xbb, 0x21, 0x4f, 0x4e, 0xa3, 0x4e, 0xd3, 0xa3, 0x6d, 0x41, + 0x66, 0xca, 0xb9, 0x98, 0x86, 0x1f, 0x89, 0x68, 0x2e, 0x51, 0x23, 0xa6, 0x25, 0x2a, 0xe4, 0x47, + 0x08, 0x16, 0x4f, 0x41, 0xae, 0x26, 0xb4, 0x09, 0xc9, 0x6a, 0xca, 0x93, 0xdc, 0x64, 0xe6, 0x6c, + 0x69, 0xcc, 0x76, 0x6a, 0xcc, 0xf6, 0x27, 0x51, 0xcf, 0xb9, 0xe8, 0xe7, 0xda, 0xe4, 0x5f, 0x4c, + 0x25, 0xff, 0x62, 0xb2, 0xd1, 0x4c, 0x9e, 0x34, 0x9a, 0xa9, 0x71, 0x46, 0x63, 0xc2, 0xf5, 0x01, + 0x7e, 0x3b, 0x6e, 0xdb, 0x6d, 0xa6, 0x2f, 0xd9, 0xfa, 0x2a, 0x7d, 0xea, 0x43, 0xe7, 0x8a, 0xf7, + 0x3a, 0x4c, 0xb7, 0x44, 0x44, 0xd1, 0x35, 0xcb, 0x9c, 0x4d, 0xd5, 0xa9, 0xec, 0x95, 0xdf, 0x67, + 0xe0, 0x82, 0xe8, 0x8c, 0x7f, 0x45, 0x00, 0x59, 0x7b, 0x6c, 0x97, 0x35, 0x28, 0xfe, 0x84, 0x19, + 0x64, 0xe4, 0x7c, 0x89, 0xd8, 0xfa, 0xf0, 0xbb, 0xbf, 0xfe, 0xf9, 0xa1, 0xb2, 0x86, 0x57, 0xc9, + 0xa9, 0x1f, 0x5e, 0x4e, 0x9e, 0xe4, 0x16, 0xee, 0x10, 0xff, 0x84, 0xa0, 0xaa, 0x39, 0x16, 0x1e, + 0xf5, 0xf6, 0x54, 0x50, 0xe3, 0xce, 0xe8, 0x05, 0x0a, 0xef, 0xbb, 0x02, 0xef, 0x22, 0xbe, 0x31, + 0x02, 0x5e, 0xfc, 0x27, 0x82, 0xd7, 0x86, 0x7c, 0x15, 0xaf, 0x9d, 0x7c, 0x69, 0x89, 0x8d, 0x1b, + 0xeb, 0x67, 0x2d, 0x53, 0x88, 0x3f, 0x12, 0x88, 0xef, 0xe2, 0xf5, 0x52, 0xc4, 0x72, 0xd5, 0xf3, + 0x42, 0xa7, 0xeb, 0x7f, 0x88, 0x9f, 0x23, 0xb8, 0x52, 0xe8, 0x87, 0xf8, 0x83, 0x11, 0xd5, 0x1b, + 0x36, 0x6a, 0xe3, 0xde, 0x38, 0xa5, 0x8a, 0xd0, 0x43, 0x41, 0x68, 0x0b, 0x7f, 0x3c, 0xc6, 0xca, + 0x10, 0xdd, 0xad, 0xf1, 0x8f, 0x15, 0xa8, 0x95, 0x79, 0x09, 0xde, 0x18, 0x15, 0x62, 0x91, 0x79, + 0x1a, 0x9b, 0x63, 0x56, 0x2b, 0x8e, 0xdf, 0x0a, 0x8e, 0x3d, 0xfc, 0xcd, 0x58, 0x1c, 0xf3, 0xd6, + 0x47, 0x52, 0x1b, 0x25, 0x4f, 0x06, 0x0c, 0xf9, 0x90, 0x48, 0xb7, 0xd2, 0x0e, 0x64, 0xe0, 0x10, + 0xff, 0x82, 0xe0, 0xf2, 0xa0, 0xcd, 0xe0, 0xf7, 0x47, 0x24, 0x95, 0x73, 0x2d, 0x63, 0xed, 0x8c, + 0x55, 0x4a, 0x82, 0x9b, 0x42, 0x82, 0x05, 0x6c, 0x96, 0x49, 0x20, 0xbd, 0x6b, 0xeb, 0xcb, 0xa7, + 0x7d, 0x13, 0x3d, 0xeb, 0x9b, 0xe8, 0xef, 0xbe, 0x89, 0xbe, 0x3f, 0x36, 0x27, 0x9e, 0x1d, 0x9b, + 0x13, 0xcf, 0x8f, 0xcd, 0x89, 0xaf, 0x37, 0x82, 0x30, 0xde, 0xef, 0x78, 0xb6, 0xcf, 0x9a, 0x44, + 0xfd, 0x8f, 0x10, 0x7a, 0xfe, 0xed, 0x80, 0x91, 0xee, 0x3a, 0x69, 0xb2, 0x46, 0xe7, 0x80, 0x72, + 0xd9, 0xf8, 0xce, 0xea, 0x6d, 0xad, 0x77, 0xdc, 0x6b, 0x51, 0xee, 0x4d, 0x8b, 0x4f, 0xc4, 0xea, + 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x60, 0xc4, 0x20, 0xa3, 0xb1, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -719,6 +808,8 @@ type QueryClient interface { // ConnectionConsensusState queries the consensus state associated with the // connection. ConnectionConsensusState(ctx context.Context, in *QueryConnectionConsensusStateRequest, opts ...grpc.CallOption) (*QueryConnectionConsensusStateResponse, error) + // ConnectionParams queries all parameters of the ibc connection submodule. + ConnectionParams(ctx context.Context, in *QueryConnectionParamsRequest, opts ...grpc.CallOption) (*QueryConnectionParamsResponse, error) } type queryClient struct { @@ -774,6 +865,15 @@ func (c *queryClient) ConnectionConsensusState(ctx context.Context, in *QueryCon return out, nil } +func (c *queryClient) ConnectionParams(ctx context.Context, in *QueryConnectionParamsRequest, opts ...grpc.CallOption) (*QueryConnectionParamsResponse, error) { + out := new(QueryConnectionParamsResponse) + err := c.cc.Invoke(ctx, "/ibc.core.connection.v1.Query/ConnectionParams", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // QueryServer is the server API for Query service. type QueryServer interface { // Connection queries an IBC connection end. @@ -789,6 +889,8 @@ type QueryServer interface { // ConnectionConsensusState queries the consensus state associated with the // connection. ConnectionConsensusState(context.Context, *QueryConnectionConsensusStateRequest) (*QueryConnectionConsensusStateResponse, error) + // ConnectionParams queries all parameters of the ibc connection submodule. + ConnectionParams(context.Context, *QueryConnectionParamsRequest) (*QueryConnectionParamsResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -810,6 +912,9 @@ func (*UnimplementedQueryServer) ConnectionClientState(ctx context.Context, req func (*UnimplementedQueryServer) ConnectionConsensusState(ctx context.Context, req *QueryConnectionConsensusStateRequest) (*QueryConnectionConsensusStateResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method ConnectionConsensusState not implemented") } +func (*UnimplementedQueryServer) ConnectionParams(ctx context.Context, req *QueryConnectionParamsRequest) (*QueryConnectionParamsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method ConnectionParams not implemented") +} func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) @@ -905,6 +1010,24 @@ func _Query_ConnectionConsensusState_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _Query_ConnectionParams_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryConnectionParamsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).ConnectionParams(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/ibc.core.connection.v1.Query/ConnectionParams", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).ConnectionParams(ctx, req.(*QueryConnectionParamsRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "ibc.core.connection.v1.Query", HandlerType: (*QueryServer)(nil), @@ -929,6 +1052,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "ConnectionConsensusState", Handler: _Query_ConnectionConsensusState_Handler, }, + { + MethodName: "ConnectionParams", + Handler: _Query_ConnectionParams_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "ibc/core/connection/v1/query.proto", @@ -1370,6 +1497,64 @@ func (m *QueryConnectionConsensusStateResponse) MarshalToSizedBuffer(dAtA []byte return len(dAtA) - i, nil } +func (m *QueryConnectionParamsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryConnectionParamsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryConnectionParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *QueryConnectionParamsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryConnectionParamsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryConnectionParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Params != nil { + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -1555,6 +1740,28 @@ func (m *QueryConnectionConsensusStateResponse) Size() (n int) { return n } +func (m *QueryConnectionParamsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *QueryConnectionParamsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Params != nil { + l = m.Params.Size() + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -2806,6 +3013,142 @@ func (m *QueryConnectionConsensusStateResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryConnectionParamsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryConnectionParamsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryConnectionParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryConnectionParamsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryConnectionParamsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryConnectionParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Params == nil { + m.Params = &Params{} + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/modules/core/03-connection/types/query.pb.gw.go b/modules/core/03-connection/types/query.pb.gw.go index a0bf7b1c9cd..71acc0e9997 100644 --- a/modules/core/03-connection/types/query.pb.gw.go +++ b/modules/core/03-connection/types/query.pb.gw.go @@ -329,6 +329,24 @@ func local_request_Query_ConnectionConsensusState_0(ctx context.Context, marshal } +func request_Query_ConnectionParams_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryConnectionParamsRequest + var metadata runtime.ServerMetadata + + msg, err := client.ConnectionParams(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_ConnectionParams_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryConnectionParamsRequest + var metadata runtime.ServerMetadata + + msg, err := server.ConnectionParams(ctx, &protoReq) + return msg, metadata, err + +} + // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. @@ -450,6 +468,29 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_ConnectionParams_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_ConnectionParams_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_ConnectionParams_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -591,6 +632,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_ConnectionParams_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_ConnectionParams_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_ConnectionParams_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -604,6 +665,8 @@ var ( pattern_Query_ConnectionClientState_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6}, []string{"ibc", "core", "connection", "v1", "connections", "connection_id", "client_state"}, "", runtime.AssumeColonVerbOpt(false))) pattern_Query_ConnectionConsensusState_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5, 2, 6, 2, 7, 1, 0, 4, 1, 5, 8, 2, 9, 1, 0, 4, 1, 5, 10}, []string{"ibc", "core", "connection", "v1", "connections", "connection_id", "consensus_state", "revision", "revision_number", "height", "revision_height"}, "", runtime.AssumeColonVerbOpt(false))) + + pattern_Query_ConnectionParams_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"ibc", "core", "connection", "v1", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( @@ -616,4 +679,6 @@ var ( forward_Query_ConnectionClientState_0 = runtime.ForwardResponseMessage forward_Query_ConnectionConsensusState_0 = runtime.ForwardResponseMessage + + forward_Query_ConnectionParams_0 = runtime.ForwardResponseMessage ) diff --git a/modules/core/keeper/grpc_query.go b/modules/core/keeper/grpc_query.go index 87f3522056b..f5ca7abf102 100644 --- a/modules/core/keeper/grpc_query.go +++ b/modules/core/keeper/grpc_query.go @@ -38,9 +38,9 @@ func (q Keeper) ClientStatus(c context.Context, req *clienttypes.QueryClientStat return q.ClientKeeper.ClientStatus(c, req) } -// Params implements the IBC QueryServer interface -func (q Keeper) Params(c context.Context, req *clienttypes.QueryParamsRequest) (*clienttypes.QueryParamsResponse, error) { - return q.ClientKeeper.Params(c, req) +// ClientParams implements the IBC QueryServer interface +func (q Keeper) ClientParams(c context.Context, req *clienttypes.QueryClientParamsRequest) (*clienttypes.QueryClientParamsResponse, error) { + return q.ClientKeeper.ClientParams(c, req) } // UpgradedClientState implements the IBC QueryServer interface @@ -48,6 +48,11 @@ func (q Keeper) UpgradedClientState(c context.Context, req *clienttypes.QueryUpg return q.ClientKeeper.UpgradedClientState(c, req) } +// UpgradedConsensusState implements the IBC QueryServer interface +func (q Keeper) UpgradedConsensusState(c context.Context, req *clienttypes.QueryUpgradedConsensusStateRequest) (*clienttypes.QueryUpgradedConsensusStateResponse, error) { + return q.ClientKeeper.UpgradedConsensusState(c, req) +} + // Connection implements the IBC QueryServer interface func (q Keeper) Connection(c context.Context, req *connectiontypes.QueryConnectionRequest) (*connectiontypes.QueryConnectionResponse, error) { return q.ConnectionKeeper.Connection(c, req) @@ -73,6 +78,11 @@ func (q Keeper) ConnectionConsensusState(c context.Context, req *connectiontypes return q.ConnectionKeeper.ConnectionConsensusState(c, req) } +// ConnectionParams implements the IBC QueryServer interface +func (q Keeper) ConnectionParams(c context.Context, req *connectiontypes.QueryConnectionParamsRequest) (*connectiontypes.QueryConnectionParamsResponse, error) { + return q.ConnectionKeeper.ConnectionParams(c, req) +} + // Channel implements the IBC QueryServer interface func (q Keeper) Channel(c context.Context, req *channeltypes.QueryChannelRequest) (*channeltypes.QueryChannelResponse, error) { return q.ChannelKeeper.Channel(c, req) diff --git a/proto/ibc/core/client/v1/query.proto b/proto/ibc/core/client/v1/query.proto index a54c4fc7fea..de16d917515 100644 --- a/proto/ibc/core/client/v1/query.proto +++ b/proto/ibc/core/client/v1/query.proto @@ -46,8 +46,8 @@ service Query { option (google.api.http).get = "/ibc/core/client/v1/client_status/{client_id}"; } - // Params queries all parameters of the ibc client. - rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { + // ClientParams queries all parameters of the ibc client submodule. + rpc ClientParams(QueryClientParamsRequest) returns (QueryClientParamsResponse) { option (google.api.http).get = "/ibc/core/client/v1/params"; } @@ -173,13 +173,13 @@ message QueryClientStatusResponse { string status = 1; } -// QueryParamsRequest is the request type for the Query/Params RPC +// QueryClientParamsRequest is the request type for the Query/ClientParams RPC // method. -message QueryParamsRequest {} +message QueryClientParamsRequest {} -// QueryParamsResponse is the response type for the Query/Params RPC +// QueryClientParamsResponse is the response type for the Query/ClientParams RPC // method. -message QueryParamsResponse { +message QueryClientParamsResponse { // params defines the parameters of the module. Params params = 1; } diff --git a/proto/ibc/core/connection/v1/query.proto b/proto/ibc/core/connection/v1/query.proto index a1eff3d2bd0..04d7c3ea71f 100644 --- a/proto/ibc/core/connection/v1/query.proto +++ b/proto/ibc/core/connection/v1/query.proto @@ -41,6 +41,11 @@ service Query { option (google.api.http).get = "/ibc/core/connection/v1/connections/{connection_id}/consensus_state/" "revision/{revision_number}/height/{revision_height}"; } + + // ConnectionParams queries all parameters of the ibc connection submodule. + rpc ConnectionParams(QueryConnectionParamsRequest) returns (QueryConnectionParamsResponse) { + option (google.api.http).get = "/ibc/core/connection/v1/params"; + } } // QueryConnectionRequest is the request type for the Query/Connection RPC @@ -136,3 +141,12 @@ message QueryConnectionConsensusStateResponse { // height at which the proof was retrieved ibc.core.client.v1.Height proof_height = 4 [(gogoproto.nullable) = false]; } + +// QueryConnectionParamsRequest is the request type for the Query/ConnectionParams RPC method. +message QueryConnectionParamsRequest {} + +// QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method. +message QueryConnectionParamsResponse { + // params defines the parameters of the module. + Params params = 1; +} \ No newline at end of file