From 65bf37798ee4ad036d54d0fd25db0d73c19f7fcd Mon Sep 17 00:00:00 2001 From: Tien Nguyen Date: Fri, 3 May 2024 15:19:03 +0700 Subject: [PATCH] Add proto annotation for feeabs v8. (#191) --- Makefile | 16 ++- proto/buf.yaml | 7 +- .../feeabstraction/feeabs/v1beta1/epoch.proto | 2 + .../feeabs/v1beta1/genesis.proto | 2 - .../feeabs/v1beta1/osmosisibc.proto | 5 +- .../feeabs/v1beta1/params.proto | 5 - .../feeabs/v1beta1/proposal.proto | 7 +- .../feeabstraction/feeabs/v1beta1/query.proto | 10 +- proto/feeabstraction/feeabs/v1beta1/tx.proto | 6 +- x/feeabs/types/epoch.pb.go | 2 + x/feeabs/types/genesis.pb.go | 45 ++++---- x/feeabs/types/osmosisibc.pb.go | 80 ++++++------- x/feeabs/types/params.pb.go | 53 ++++----- x/feeabs/types/proposal.pb.go | 73 ++++++------ x/feeabs/types/query.pb.go | 107 ++++++++++-------- x/feeabs/types/tx.pb.go | 68 ++++++----- 16 files changed, 249 insertions(+), 239 deletions(-) diff --git a/Makefile b/Makefile index 45050f99..7b5822f4 100644 --- a/Makefile +++ b/Makefile @@ -153,20 +153,24 @@ build-integration-binary: .PHONY: build-integration-binary ############################################################################### -### Proto ### +### Protobuf ### ############################################################################### -PROTO_BUILDER_IMAGE=ghcr.io/cosmos/proto-builder:0.14.0 +protoVer=0.14.0 +protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) +protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) -proto-all: proto-format proto-gen +proto-all: proto-format proto-lint proto-gen format proto-gen: @echo "Generating Protobuf files" - @$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(PROTO_BUILDER_IMAGE) sh ./scripts/protocgen.sh + @$(protoImage) sh ./scripts/protocgen.sh proto-format: @echo "Formatting Protobuf files" - @$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace tendermintdev/docker-build-proto \ - find ./proto -name "*.proto" -exec clang-format -i {} \; + @$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \; + +proto-swagger-gen: + @./scripts/protoc-swagger-gen.sh proto-lint: @$(DOCKER_BUF) lint --error-format=json diff --git a/proto/buf.yaml b/proto/buf.yaml index 096fc5d3..25e5ba1d 100644 --- a/proto/buf.yaml +++ b/proto/buf.yaml @@ -1,7 +1,7 @@ version: v1 -name: buf.build/osmosis-labs/fee-abstraction +name: buf.build/cosmwasm/wasmd deps: - - buf.build/cosmos/cosmos-sdk:v0.47.0 + - buf.build/cosmos/cosmos-sdk:v0.50.0 - buf.build/cosmos/cosmos-proto:1935555c206d4afb9e94615dfd0fad31 - buf.build/cosmos/gogo-proto:a14993478f40695898ed8a86931094b6656e8a5d - buf.build/googleapis/googleapis:8d7204855ec14631a499bd7393ce1970 @@ -20,5 +20,4 @@ lint: - SERVICE_SUFFIX - PACKAGE_VERSION_SUFFIX - RPC_REQUEST_STANDARD_NAME - ignore: - - tendermint + - PACKAGE_DIRECTORY_MATCH \ No newline at end of file diff --git a/proto/feeabstraction/feeabs/v1beta1/epoch.proto b/proto/feeabstraction/feeabs/v1beta1/epoch.proto index 20728b2f..57b23d0c 100644 --- a/proto/feeabstraction/feeabs/v1beta1/epoch.proto +++ b/proto/feeabstraction/feeabs/v1beta1/epoch.proto @@ -7,6 +7,7 @@ import "google/protobuf/timestamp.proto"; option go_package = "github.com/osmosis-labs/fee-abstraction/v8/x/feeabs/types"; +// EpochInfo defines information of a epoch message EpochInfo { // identifier is a unique reference to this particular timer. string identifier = 1; @@ -64,6 +65,7 @@ message EpochInfo { int64 current_epoch_start_height = 8; } +// ExponentialBackoff defines backoff epoch message ExponentialBackoff { int64 jump = 1; int64 future_epoch = 2; diff --git a/proto/feeabstraction/feeabs/v1beta1/genesis.proto b/proto/feeabstraction/feeabs/v1beta1/genesis.proto index d5882677..084abc78 100644 --- a/proto/feeabstraction/feeabs/v1beta1/genesis.proto +++ b/proto/feeabstraction/feeabs/v1beta1/genesis.proto @@ -2,8 +2,6 @@ syntax = "proto3"; package feeabstraction.feeabs.v1beta1; import "gogoproto/gogo.proto"; -import "google/api/annotations.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; import "feeabstraction/feeabs/v1beta1/params.proto"; import "feeabstraction/feeabs/v1beta1/epoch.proto"; diff --git a/proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto b/proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto index 344142bb..1f8eeb63 100644 --- a/proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto +++ b/proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto @@ -3,11 +3,11 @@ package feeabstraction.feeabs.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -import "google/api/annotations.proto"; import "tendermint/abci/types.proto"; option go_package = "github.com/osmosis-labs/fee-abstraction/v8/x/feeabs/types"; +// QueryArithmeticTwapToNowRequest message QueryArithmeticTwapToNowRequest { uint64 pool_id = 1; string base_asset = 2; @@ -19,6 +19,7 @@ message QueryArithmeticTwapToNowRequest { ]; } +// QueryArithmeticTwapToNowResponse message QueryArithmeticTwapToNowResponse { string arithmetic_twap = 1 [ (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", @@ -27,6 +28,7 @@ message QueryArithmeticTwapToNowResponse { ]; } +// InterchainQueryRequest message InterchainQueryRequest { bytes data = 1; string path = 2; @@ -43,6 +45,7 @@ message InterchainQueryPacketData { // non-deterministic fields left empty (e.g. Codespace, Log, Info and ...). message InterchainQueryPacketAck { bytes data = 1; } +// InterchainQueryRequestPacket message InterchainQueryRequestPacket { repeated InterchainQueryRequest requests = 1 [ (gogoproto.nullable) = false ]; } diff --git a/proto/feeabstraction/feeabs/v1beta1/params.proto b/proto/feeabstraction/feeabs/v1beta1/params.proto index 4d822ce6..3e027690 100644 --- a/proto/feeabstraction/feeabs/v1beta1/params.proto +++ b/proto/feeabstraction/feeabs/v1beta1/params.proto @@ -1,11 +1,6 @@ syntax = "proto3"; package feeabstraction.feeabs.v1beta1; -import "gogoproto/gogo.proto"; -import "google/api/annotations.proto"; -import "cosmos/base/query/v1beta1/pagination.proto"; -import "google/protobuf/duration.proto"; - option go_package = "github.com/osmosis-labs/fee-abstraction/v8/x/feeabs/types"; // Params defines the parameters for the feeabs module. diff --git a/proto/feeabstraction/feeabs/v1beta1/proposal.proto b/proto/feeabstraction/feeabs/v1beta1/proposal.proto index a432e850..a1ffdcec 100644 --- a/proto/feeabstraction/feeabs/v1beta1/proposal.proto +++ b/proto/feeabstraction/feeabs/v1beta1/proposal.proto @@ -2,17 +2,17 @@ syntax = "proto3"; package feeabstraction.feeabs.v1beta1; import "gogoproto/gogo.proto"; -import "google/protobuf/timestamp.proto"; -import "google/api/annotations.proto"; option go_package = "github.com/osmosis-labs/fee-abstraction/v8/x/feeabs/types"; +// HostChainFeeAbsStatus enum HostChainFeeAbsStatus { UPDATED = 0; OUTDATED = 1; FROZEN = 2; } +// HostChainFeeAbsConfig message HostChainFeeAbsConfig { // ibc token is allowed to be used as fee token string ibc_denom = 1 [ (gogoproto.moretags) = "yaml:\"allowed_token\"" ]; @@ -24,6 +24,7 @@ message HostChainFeeAbsConfig { HostChainFeeAbsStatus status = 4; } +// AddHostZoneProposal message AddHostZoneProposal { option (gogoproto.goproto_getters) = false; // the title of the proposal @@ -34,6 +35,7 @@ message AddHostZoneProposal { HostChainFeeAbsConfig host_chain_config = 3; } +// DeleteHostZoneProposal message DeleteHostZoneProposal { option (gogoproto.goproto_getters) = false; // the title of the proposal @@ -44,6 +46,7 @@ message DeleteHostZoneProposal { string ibc_denom = 3; } +// SetHostZoneProposal message SetHostZoneProposal { option (gogoproto.goproto_getters) = false; // the title of the proposal diff --git a/proto/feeabstraction/feeabs/v1beta1/query.proto b/proto/feeabstraction/feeabs/v1beta1/query.proto index 75462273..c1b0bce9 100644 --- a/proto/feeabstraction/feeabs/v1beta1/query.proto +++ b/proto/feeabstraction/feeabs/v1beta1/query.proto @@ -3,8 +3,6 @@ package feeabstraction.feeabs.v1beta1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "feeabstraction/feeabs/v1beta1/params.proto"; -import "feeabstraction/feeabs/v1beta1/osmosisibc.proto"; import "feeabstraction/feeabs/v1beta1/proposal.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -24,12 +22,14 @@ service Query { option (google.api.http).get = "/fee-abstraction/feeabs/v1/module-balances"; } + // HostChainConfig rpc HostChainConfig(QueryHostChainConfigRequest) returns (QueryHostChainConfigResponse) { option (google.api.http).get = "/fee-abstraction/feeabs/v1/host-chain-config/{ibc_denom}"; } + // AllHostChainConfig rpc AllHostChainConfig(AllQueryHostChainConfigRequest) returns (AllQueryHostChainConfigResponse) { option (google.api.http).get = @@ -37,8 +37,10 @@ service Query { } } +// QueryHostChainConfigRequest message QueryHostChainConfigRequest { string ibc_denom = 1; } +// QueryHostChainConfigResponse message QueryHostChainConfigResponse { HostChainFeeAbsConfig host_chain_config = 1 [ (gogoproto.moretags) = "yaml:\"host_chain_config\"", @@ -50,6 +52,7 @@ message QueryHostChainConfigResponse { // RPC method. message QueryOsmosisArithmeticTwapRequest { string ibc_denom = 1; } +// QueryOsmosisArithmeticTwapResponse message QueryOsmosisArithmeticTwapResponse { string arithmetic_twap = 1 [ (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", @@ -62,6 +65,7 @@ message QueryOsmosisArithmeticTwapResponse { // method. message QueryFeeabsModuleBalacesRequest {} +// QueryFeeabsModuleBalacesResponse message QueryFeeabsModuleBalacesResponse { repeated cosmos.base.v1beta1.Coin balances = 1 [ (gogoproto.nullable) = false, @@ -71,8 +75,10 @@ message QueryFeeabsModuleBalacesResponse { string address = 2; } +// AllQueryHostChainConfigRequest message AllQueryHostChainConfigRequest {} +// AllQueryHostChainConfigResponse message AllQueryHostChainConfigResponse { repeated HostChainFeeAbsConfig all_host_chain_config = 1 [ (gogoproto.moretags) = "yaml:\"all_host_chain_config\"", diff --git a/proto/feeabstraction/feeabs/v1beta1/tx.proto b/proto/feeabstraction/feeabs/v1beta1/tx.proto index fb8acc42..5dfa3f7b 100644 --- a/proto/feeabstraction/feeabs/v1beta1/tx.proto +++ b/proto/feeabstraction/feeabs/v1beta1/tx.proto @@ -2,14 +2,14 @@ syntax = "proto3"; package feeabstraction.feeabs.v1beta1; import "gogoproto/gogo.proto"; -import "feeabstraction/feeabs/v1beta1/params.proto"; -import "feeabstraction/feeabs/v1beta1/epoch.proto"; +import "cosmos/msg/v1/msg.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "google/protobuf/timestamp.proto"; option go_package = "github.com/osmosis-labs/fee-abstraction/v8/x/feeabs/types"; service Msg { + option (cosmos.msg.v1.service) = true; + rpc SendQueryIbcDenomTWAP(MsgSendQueryIbcDenomTWAP) returns (MsgSendQueryIbcDenomTWAPResponse); rpc SwapCrossChain(MsgSwapCrossChain) returns (MsgSwapCrossChainResponse); diff --git a/x/feeabs/types/epoch.pb.go b/x/feeabs/types/epoch.pb.go index 8da96553..975f06a7 100644 --- a/x/feeabs/types/epoch.pb.go +++ b/x/feeabs/types/epoch.pb.go @@ -28,6 +28,7 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +// EpochInfo defines information of a epoch type EpochInfo struct { // identifier is a unique reference to this particular timer. Identifier string `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"` @@ -153,6 +154,7 @@ func (m *EpochInfo) GetCurrentEpochStartHeight() int64 { return 0 } +// ExponentialBackoff defines backoff epoch type ExponentialBackoff struct { Jump int64 `protobuf:"varint,1,opt,name=jump,proto3" json:"jump,omitempty"` FutureEpoch int64 `protobuf:"varint,2,opt,name=future_epoch,json=futureEpoch,proto3" json:"future_epoch,omitempty"` diff --git a/x/feeabs/types/genesis.pb.go b/x/feeabs/types/genesis.pb.go index 4948c43f..77812011 100644 --- a/x/feeabs/types/genesis.pb.go +++ b/x/feeabs/types/genesis.pb.go @@ -5,10 +5,8 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - _ "google.golang.org/genproto/googleapis/api/annotations" io "io" math "math" math_bits "math/bits" @@ -95,29 +93,26 @@ func init() { } var fileDescriptor_a6133d256fb92bdc = []byte{ - // 339 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x90, 0xc1, 0x4a, 0xeb, 0x40, - 0x14, 0x86, 0x33, 0xb7, 0x97, 0x5c, 0x6e, 0xaa, 0x9b, 0xa0, 0x58, 0x8a, 0xa6, 0xa5, 0x20, 0x44, - 0xa5, 0x19, 0x5a, 0x37, 0xea, 0xb2, 0xa0, 0xd2, 0x9d, 0xb4, 0xae, 0xdc, 0xc8, 0x24, 0x3d, 0x9d, - 0x0e, 0x34, 0x39, 0x63, 0x66, 0x5a, 0xec, 0x5b, 0xf8, 0x52, 0x42, 0x97, 0x5d, 0xba, 0x2a, 0xd2, - 0xbe, 0x81, 0x4f, 0x20, 0xc9, 0xa4, 0xa2, 0x9b, 0xba, 0x9b, 0x03, 0xdf, 0xff, 0x9d, 0x39, 0xbf, - 0x73, 0x36, 0x04, 0x60, 0xa1, 0xd2, 0x29, 0x8b, 0xb4, 0xc0, 0x84, 0x9a, 0x91, 0x4e, 0x5b, 0x21, - 0x68, 0xd6, 0xa2, 0x1c, 0x12, 0x50, 0x42, 0x05, 0x32, 0x45, 0x8d, 0xee, 0xd1, 0x4f, 0x38, 0x30, - 0x63, 0x50, 0xc0, 0xd5, 0x3d, 0x8e, 0x1c, 0x73, 0x92, 0x66, 0x2f, 0x13, 0xaa, 0x1e, 0x72, 0x44, - 0x3e, 0x06, 0xca, 0xa4, 0xa0, 0x2c, 0x49, 0x50, 0xb3, 0x2c, 0x5b, 0x28, 0xab, 0xa7, 0x11, 0xaa, - 0x18, 0x15, 0x0d, 0x99, 0x02, 0xfa, 0x34, 0x81, 0x74, 0xf6, 0xb5, 0x5b, 0x32, 0x2e, 0x92, 0x1c, - 0xde, 0xb0, 0xdb, 0xff, 0x2a, 0x59, 0xca, 0xe2, 0x8d, 0xf7, 0x64, 0x3b, 0x0b, 0x12, 0xa3, 0x91, - 0x41, 0x1b, 0xaf, 0xc4, 0xd9, 0xb9, 0x35, 0x77, 0xf6, 0x35, 0xd3, 0xe0, 0xde, 0x3b, 0xb6, 0x71, - 0x55, 0x48, 0x9d, 0xf8, 0xe5, 0xf6, 0x71, 0xb0, 0xf5, 0xee, 0xe0, 0x2e, 0x87, 0x3b, 0xfb, 0xf3, - 0x65, 0xcd, 0xfa, 0x58, 0xd6, 0x76, 0x67, 0x2c, 0x1e, 0x5f, 0x35, 0x8c, 0xa2, 0xd1, 0x2b, 0x5c, - 0xee, 0x8d, 0x63, 0xe7, 0x5b, 0x55, 0xe5, 0x4f, 0xbd, 0xe4, 0x97, 0xdb, 0xfe, 0x2f, 0xd6, 0xeb, - 0x0c, 0xee, 0x26, 0x43, 0xec, 0xfc, 0xcd, 0xc4, 0xbd, 0x22, 0xed, 0x1e, 0x38, 0xff, 0x24, 0xa6, - 0xfa, 0x51, 0x0c, 0x2a, 0xa5, 0x3a, 0xf1, 0xff, 0xf7, 0xec, 0x6c, 0xec, 0x0e, 0x3a, 0xfd, 0xf9, - 0xca, 0x23, 0x8b, 0x95, 0x47, 0xde, 0x57, 0x1e, 0x79, 0x59, 0x7b, 0xd6, 0x62, 0xed, 0x59, 0x6f, - 0x6b, 0xcf, 0x7a, 0xb8, 0xe4, 0x42, 0x8f, 0x26, 0x61, 0x10, 0x61, 0x4c, 0xf3, 0xba, 0x85, 0x6a, - 0x8e, 0xb3, 0x3a, 0x86, 0x00, 0xcd, 0xef, 0x2d, 0x4d, 0x2f, 0xe8, 0xf3, 0xa6, 0x2a, 0x3d, 0x93, - 0xa0, 0x42, 0x3b, 0xef, 0xe8, 0xfc, 0x33, 0x00, 0x00, 0xff, 0xff, 0xef, 0x6a, 0xbb, 0x31, 0x28, - 0x02, 0x00, 0x00, + // 297 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4e, 0x4b, 0x4d, 0x4d, + 0x4c, 0x2a, 0x2e, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0xcc, 0xcf, 0xd3, 0x87, 0x70, 0xf5, 0xcb, 0x0c, + 0x93, 0x52, 0x4b, 0x12, 0x0d, 0xf5, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, + 0xf2, 0x4b, 0xf2, 0x85, 0x64, 0x51, 0x15, 0xeb, 0x41, 0xb8, 0x7a, 0x50, 0xc5, 0x52, 0x22, 0xe9, + 0xf9, 0xe9, 0xf9, 0x60, 0x95, 0xfa, 0x20, 0x16, 0x44, 0x93, 0x94, 0x16, 0x7e, 0x1b, 0x0a, 0x12, + 0x8b, 0x12, 0x73, 0xa1, 0x16, 0x48, 0x69, 0xe2, 0x57, 0x9b, 0x5a, 0x90, 0x9f, 0x9c, 0x01, 0x51, + 0xaa, 0x74, 0x94, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, 0xba, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0xa1, 0x10, + 0x2e, 0x36, 0x88, 0x59, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xaa, 0x7a, 0x78, 0x5d, 0xab, + 0x17, 0x00, 0x56, 0xec, 0x24, 0x7a, 0xe2, 0x9e, 0x3c, 0xc3, 0xa7, 0x7b, 0xf2, 0xbc, 0x95, 0x89, + 0xb9, 0x39, 0x56, 0x4a, 0x10, 0x23, 0x94, 0x82, 0xa0, 0x66, 0x09, 0xb9, 0x71, 0xb1, 0x81, 0x6d, + 0x2d, 0x96, 0x60, 0x52, 0x60, 0xd6, 0xe0, 0x36, 0xd2, 0x20, 0x60, 0xaa, 0x2b, 0x48, 0xb1, 0x67, + 0x5e, 0x5a, 0xbe, 0x13, 0x0b, 0xc8, 0xe0, 0x20, 0xa8, 0x6e, 0x21, 0x71, 0x2e, 0xf6, 0x82, 0xfc, + 0xa2, 0x92, 0xf8, 0xcc, 0x14, 0x09, 0x66, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x36, 0x10, 0xd7, 0x33, + 0xc5, 0x29, 0xf8, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, + 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x2c, 0xd3, 0x33, + 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0x33, 0x8b, + 0x75, 0x73, 0x40, 0xc1, 0x91, 0x96, 0x9a, 0xaa, 0x8b, 0x1c, 0x4a, 0x65, 0x16, 0xfa, 0x15, 0xb0, + 0xa0, 0x2a, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x87, 0x91, 0x31, 0x20, 0x00, 0x00, 0xff, + 0xff, 0x85, 0x47, 0x10, 0x1e, 0xde, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/feeabs/types/osmosisibc.pb.go b/x/feeabs/types/osmosisibc.pb.go index b2b349f6..e549ccbc 100644 --- a/x/feeabs/types/osmosisibc.pb.go +++ b/x/feeabs/types/osmosisibc.pb.go @@ -10,7 +10,6 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" - _ "google.golang.org/genproto/googleapis/api/annotations" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -30,6 +29,7 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +// QueryArithmeticTwapToNowRequest type QueryArithmeticTwapToNowRequest struct { PoolId uint64 `protobuf:"varint,1,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` BaseAsset string `protobuf:"bytes,2,opt,name=base_asset,json=baseAsset,proto3" json:"base_asset,omitempty"` @@ -98,6 +98,7 @@ func (m *QueryArithmeticTwapToNowRequest) GetStartTime() time.Time { return time.Time{} } +// QueryArithmeticTwapToNowResponse type QueryArithmeticTwapToNowResponse struct { ArithmeticTwap cosmossdk_io_math.LegacyDec `protobuf:"bytes,1,opt,name=arithmetic_twap,json=arithmeticTwap,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"arithmetic_twap" yaml:"arithmetic_twap"` } @@ -135,6 +136,7 @@ func (m *QueryArithmeticTwapToNowResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryArithmeticTwapToNowResponse proto.InternalMessageInfo +// InterchainQueryRequest type InterchainQueryRequest struct { Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"` @@ -287,6 +289,7 @@ func (m *InterchainQueryPacketAck) GetData() []byte { return nil } +// InterchainQueryRequestPacket type InterchainQueryRequestPacket struct { Requests []InterchainQueryRequest `protobuf:"bytes,1,rep,name=requests,proto3" json:"requests"` } @@ -439,44 +442,43 @@ func init() { } var fileDescriptor_29d8511a7187d317 = []byte{ - // 589 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x94, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xc7, 0x63, 0x1a, 0x15, 0xb2, 0x41, 0x45, 0x58, 0xa8, 0x84, 0xb6, 0xb1, 0x23, 0x9f, 0x72, - 0xe9, 0x5a, 0x2d, 0x42, 0x02, 0x24, 0x04, 0x4d, 0x7b, 0xa9, 0x84, 0x2a, 0x30, 0x91, 0x40, 0x5c, - 0xa2, 0xb1, 0xb3, 0x71, 0x56, 0x8d, 0xbd, 0xae, 0x77, 0xd2, 0x90, 0x57, 0xe0, 0xd4, 0xc7, 0xea, - 0xb1, 0x07, 0x0e, 0x88, 0x43, 0x40, 0xcd, 0x1b, 0xf4, 0x09, 0xd0, 0xae, 0xed, 0xa4, 0x1f, 0x86, - 0xdb, 0xec, 0xcc, 0x7f, 0x7e, 0xbb, 0x33, 0x1e, 0x0f, 0xa1, 0x03, 0xc6, 0xc0, 0x97, 0x98, 0x42, - 0x80, 0x5c, 0xc4, 0x6e, 0x76, 0x74, 0x4f, 0x77, 0x7c, 0x86, 0xb0, 0xe3, 0x0a, 0x19, 0x09, 0xc9, - 0x25, 0xf7, 0x03, 0x9a, 0xa4, 0x02, 0x85, 0xd9, 0xbc, 0xa9, 0xcf, 0xd3, 0x69, 0xae, 0xdf, 0x78, - 0x12, 0x8a, 0x50, 0x68, 0xa5, 0xab, 0xac, 0x2c, 0x69, 0xc3, 0x0e, 0x85, 0x08, 0x47, 0xcc, 0xd5, - 0x27, 0x7f, 0x3c, 0x70, 0x91, 0x47, 0x4c, 0x22, 0x44, 0x49, 0x2e, 0xd8, 0xca, 0x05, 0x90, 0x70, - 0x17, 0xe2, 0x58, 0x20, 0x28, 0xb8, 0xcc, 0xa3, 0x9b, 0xc8, 0xe2, 0x3e, 0x4b, 0x23, 0x1e, 0xa3, - 0x0b, 0x7e, 0xc0, 0x5d, 0x9c, 0x26, 0x2c, 0x0f, 0x3a, 0x3f, 0x0c, 0x62, 0x7f, 0x1c, 0xb3, 0x74, - 0xba, 0x97, 0x72, 0x1c, 0x46, 0x0c, 0x79, 0xd0, 0x9d, 0x40, 0xd2, 0x15, 0x47, 0x62, 0xe2, 0xb1, - 0x93, 0x31, 0x93, 0x68, 0x3e, 0x25, 0xf7, 0x13, 0x21, 0x46, 0x3d, 0xde, 0x6f, 0x18, 0x2d, 0xa3, - 0x5d, 0xf5, 0x56, 0xd5, 0xf1, 0xb0, 0x6f, 0x36, 0x09, 0xf1, 0x41, 0xb2, 0x1e, 0x48, 0xc9, 0xb0, - 0x71, 0xaf, 0x65, 0xb4, 0x6b, 0x5e, 0x4d, 0x79, 0xf6, 0x94, 0xc3, 0xb4, 0x49, 0xfd, 0x64, 0x2c, - 0xb0, 0x88, 0xaf, 0xe8, 0x38, 0xd1, 0xae, 0x4c, 0xf0, 0x85, 0x10, 0x89, 0x90, 0x62, 0x4f, 0x15, - 0xd4, 0xa8, 0xb6, 0x8c, 0x76, 0x7d, 0x77, 0x83, 0x66, 0xc5, 0xd0, 0xa2, 0x5a, 0xda, 0x2d, 0xaa, - 0xed, 0x34, 0xcf, 0x67, 0x76, 0xe5, 0x6a, 0x66, 0x3f, 0x9e, 0x42, 0x34, 0x7a, 0xed, 0x2c, 0x73, - 0x9d, 0xb3, 0xdf, 0xb6, 0xe1, 0xd5, 0xb4, 0x43, 0xc9, 0x9d, 0xef, 0x06, 0x69, 0xfd, 0xbb, 0x2c, - 0x99, 0x88, 0x58, 0x32, 0x73, 0x40, 0x1e, 0xc1, 0x22, 0xdc, 0xc3, 0x09, 0x24, 0xba, 0xbe, 0x5a, - 0xe7, 0x8d, 0xba, 0xe7, 0xd7, 0xcc, 0xde, 0x0c, 0xf4, 0x07, 0x94, 0xfd, 0x63, 0xca, 0x85, 0x1b, - 0x01, 0x0e, 0xe9, 0x7b, 0x16, 0x42, 0x30, 0x3d, 0x60, 0xc1, 0xd5, 0xcc, 0x5e, 0xcf, 0x9e, 0x71, - 0x8b, 0xe1, 0x78, 0x6b, 0x70, 0xe3, 0x52, 0xe7, 0x1d, 0x59, 0x3f, 0x8c, 0x91, 0xa5, 0xc1, 0x10, - 0x78, 0xac, 0x5f, 0x55, 0x74, 0xd6, 0x24, 0xd5, 0x3e, 0x20, 0xe8, 0x6b, 0x1f, 0x7a, 0xda, 0x56, - 0xbe, 0x04, 0x70, 0x98, 0xb7, 0x53, 0xdb, 0xce, 0x3e, 0x79, 0x76, 0x8b, 0xf0, 0x01, 0x82, 0x63, - 0x86, 0x07, 0x79, 0x42, 0x19, 0x24, 0x62, 0x91, 0x28, 0x20, 0xca, 0x76, 0x28, 0x69, 0x94, 0x42, - 0xf6, 0x82, 0xe3, 0x32, 0x86, 0x33, 0x21, 0x5b, 0xe5, 0xcf, 0xce, 0xd2, 0xcc, 0xcf, 0xe4, 0x41, - 0x9a, 0x39, 0x64, 0xc3, 0x68, 0xad, 0xb4, 0xeb, 0xbb, 0x2f, 0xe8, 0x7f, 0xc7, 0x9b, 0x96, 0xe3, - 0x3a, 0x55, 0xd5, 0x6e, 0x6f, 0x01, 0x73, 0x8e, 0x48, 0x7d, 0x5f, 0x37, 0x5e, 0xab, 0xcc, 0xb7, - 0x77, 0xee, 0x69, 0xd2, 0xe5, 0x48, 0x53, 0x35, 0xd2, 0x34, 0x47, 0xe9, 0x84, 0x3b, 0xbc, 0x2e, - 0x59, 0xcb, 0x78, 0x8b, 0x2f, 0xdf, 0x21, 0xb5, 0x34, 0xb7, 0x0b, 0xa6, 0x55, 0xc2, 0xcc, 0x14, - 0xd7, 0xa1, 0xcb, 0xb4, 0xce, 0xa7, 0xf3, 0x4b, 0xcb, 0xb8, 0xb8, 0xb4, 0x8c, 0x3f, 0x97, 0x96, - 0x71, 0x36, 0xb7, 0x2a, 0x17, 0x73, 0xab, 0xf2, 0x73, 0x6e, 0x55, 0xbe, 0xbe, 0x0a, 0x39, 0x0e, - 0xc7, 0x3e, 0x0d, 0x44, 0x54, 0x6c, 0x80, 0xed, 0x91, 0x5a, 0x0b, 0x03, 0xc6, 0xb6, 0xaf, 0x6f, - 0x8b, 0xd3, 0x97, 0xee, 0xb7, 0x62, 0x65, 0xe8, 0x9f, 0xd2, 0x5f, 0xd5, 0x53, 0xff, 0xfc, 0x6f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x57, 0xb2, 0x72, 0x58, 0x04, 0x00, 0x00, + // 575 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0x8e, 0x69, 0x54, 0xc8, 0x06, 0x15, 0x61, 0xa1, 0x12, 0x52, 0x62, 0x47, 0x3e, 0xe5, 0xd2, + 0xb5, 0x5a, 0x84, 0x04, 0x48, 0x08, 0x92, 0xf6, 0x52, 0x09, 0x55, 0x60, 0x22, 0x81, 0xb8, 0x44, + 0xeb, 0xcd, 0xc6, 0x59, 0x25, 0xf6, 0xba, 0xde, 0x49, 0x43, 0x5e, 0x81, 0x53, 0x1f, 0xab, 0xc7, + 0x1e, 0x38, 0x20, 0x0e, 0x01, 0x25, 0x6f, 0xd0, 0x27, 0x40, 0xbb, 0xb6, 0x93, 0xfe, 0x98, 0xde, + 0x66, 0x67, 0xbe, 0xef, 0x9b, 0x9f, 0x9d, 0x5d, 0x84, 0x07, 0x8c, 0x11, 0x5f, 0x42, 0x42, 0x28, + 0x70, 0x11, 0xb9, 0xe9, 0xd1, 0x3d, 0xdd, 0xf3, 0x19, 0x90, 0x3d, 0x57, 0xc8, 0x50, 0x48, 0x2e, + 0xb9, 0x4f, 0x71, 0x9c, 0x08, 0x10, 0x66, 0xe3, 0x3a, 0x3e, 0xa3, 0xe3, 0x0c, 0x5f, 0x7f, 0x12, + 0x88, 0x40, 0x68, 0xa4, 0xab, 0xac, 0x94, 0x54, 0xb7, 0x03, 0x21, 0x82, 0x31, 0x73, 0xf5, 0xc9, + 0x9f, 0x0c, 0x5c, 0xe0, 0x21, 0x93, 0x40, 0xc2, 0x38, 0x03, 0xec, 0x00, 0x8b, 0xfa, 0x2c, 0x09, + 0x79, 0x04, 0x2e, 0xf1, 0x29, 0x77, 0x61, 0x16, 0x33, 0x99, 0x06, 0x9d, 0x9f, 0x06, 0xb2, 0x3f, + 0x4d, 0x58, 0x32, 0x6b, 0x27, 0x1c, 0x86, 0x21, 0x03, 0x4e, 0xbb, 0x53, 0x12, 0x77, 0xc5, 0xb1, + 0x98, 0x7a, 0xec, 0x64, 0xc2, 0x24, 0x98, 0x4f, 0xd1, 0xfd, 0x58, 0x88, 0x71, 0x8f, 0xf7, 0x6b, + 0x46, 0xd3, 0x68, 0x95, 0xbd, 0x4d, 0x75, 0x3c, 0xea, 0x9b, 0x0d, 0x84, 0x7c, 0x22, 0x59, 0x8f, + 0x48, 0xc9, 0xa0, 0x76, 0xaf, 0x69, 0xb4, 0x2a, 0x5e, 0x45, 0x79, 0xda, 0xca, 0x61, 0xda, 0xa8, + 0x7a, 0x32, 0x11, 0x90, 0xc7, 0x37, 0x74, 0x1c, 0x69, 0x57, 0x0a, 0xf8, 0x8a, 0x90, 0x04, 0x92, + 0x40, 0x4f, 0x95, 0x5c, 0x2b, 0x37, 0x8d, 0x56, 0x75, 0xbf, 0x8e, 0xd3, 0x7e, 0x70, 0xde, 0x0f, + 0xee, 0xe6, 0xfd, 0x74, 0x1a, 0xe7, 0x73, 0xbb, 0x74, 0x39, 0xb7, 0x1f, 0xcf, 0x48, 0x38, 0x7e, + 0xe3, 0xac, 0xb9, 0xce, 0xd9, 0x1f, 0xdb, 0xf0, 0x2a, 0xda, 0xa1, 0xe0, 0xce, 0x0f, 0x03, 0x35, + 0xff, 0xdf, 0x96, 0x8c, 0x45, 0x24, 0x99, 0x39, 0x40, 0x8f, 0xc8, 0x2a, 0xdc, 0x83, 0x29, 0x89, + 0x75, 0x7f, 0x95, 0xce, 0x5b, 0x95, 0xe7, 0xf7, 0xdc, 0xde, 0xa1, 0xfa, 0x8a, 0x64, 0x7f, 0x84, + 0xb9, 0x70, 0x43, 0x02, 0x43, 0xfc, 0x81, 0x05, 0x84, 0xce, 0x0e, 0x19, 0xbd, 0x9c, 0xdb, 0xdb, + 0x69, 0x19, 0x37, 0x34, 0x1c, 0x6f, 0x8b, 0x5c, 0x4b, 0xea, 0xbc, 0x47, 0xdb, 0x47, 0x11, 0xb0, + 0x84, 0x0e, 0x09, 0x8f, 0x74, 0x55, 0xf9, 0x64, 0x4d, 0x54, 0xee, 0x13, 0x20, 0x3a, 0xed, 0x43, + 0x4f, 0xdb, 0xca, 0x17, 0x13, 0x18, 0x66, 0xe3, 0xd4, 0xb6, 0x73, 0x80, 0x9e, 0xdd, 0x50, 0xf8, + 0x48, 0xe8, 0x88, 0xc1, 0x61, 0x46, 0x28, 0x12, 0x09, 0x59, 0x28, 0x72, 0x11, 0x65, 0x3b, 0x18, + 0xd5, 0x0a, 0x45, 0xda, 0x74, 0x54, 0xa4, 0xe1, 0x4c, 0xd1, 0xf3, 0xe2, 0xb2, 0x53, 0x9a, 0xf9, + 0x05, 0x3d, 0x48, 0x52, 0x87, 0xac, 0x19, 0xcd, 0x8d, 0x56, 0x75, 0xff, 0x25, 0xbe, 0x73, 0x81, + 0x71, 0xb1, 0x5c, 0xa7, 0xac, 0xc6, 0xed, 0xad, 0xc4, 0x9c, 0x63, 0x54, 0x3d, 0xd0, 0x83, 0xd7, + 0x28, 0xf3, 0xdd, 0xad, 0x3c, 0x0d, 0xbc, 0x5e, 0x69, 0xac, 0x56, 0x1a, 0x67, 0x52, 0x9a, 0x70, + 0x4b, 0xaf, 0x8b, 0xb6, 0x52, 0xbd, 0xd5, 0xcd, 0x77, 0x50, 0x25, 0xc9, 0xec, 0x5c, 0xd3, 0x2a, + 0xd0, 0x4c, 0x11, 0x57, 0x45, 0xd7, 0xb4, 0xce, 0xe7, 0xf3, 0x85, 0x65, 0x5c, 0x2c, 0x2c, 0xe3, + 0xef, 0xc2, 0x32, 0xce, 0x96, 0x56, 0xe9, 0x62, 0x69, 0x95, 0x7e, 0x2d, 0xad, 0xd2, 0xb7, 0xd7, + 0x01, 0x87, 0xe1, 0xc4, 0xc7, 0x54, 0x84, 0xf9, 0x1b, 0xdf, 0x1d, 0xab, 0x87, 0x3f, 0x60, 0x6c, + 0xf7, 0xea, 0x7f, 0x70, 0xfa, 0xca, 0xfd, 0x9e, 0x7f, 0x0a, 0xfa, 0x51, 0xfa, 0x9b, 0x7a, 0xeb, + 0x5f, 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x6b, 0xc1, 0x75, 0x1f, 0x3a, 0x04, 0x00, 0x00, } func (m *QueryArithmeticTwapToNowRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/feeabs/types/params.pb.go b/x/feeabs/types/params.pb.go index 17b8c51c..b41d76e5 100644 --- a/x/feeabs/types/params.pb.go +++ b/x/feeabs/types/params.pb.go @@ -5,11 +5,7 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - _ "google.golang.org/genproto/googleapis/api/annotations" - _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" math_bits "math/bits" @@ -126,32 +122,29 @@ func init() { } var fileDescriptor_e9fa451f85bd9084 = []byte{ - // 397 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x92, 0xbf, 0x8e, 0x13, 0x31, - 0x10, 0xc6, 0xb3, 0x07, 0x44, 0x3a, 0x97, 0xab, 0x20, 0x56, 0xd1, 0xdd, 0x82, 0xa8, 0xd0, 0x49, - 0x17, 0x13, 0x21, 0x24, 0x28, 0xe1, 0x44, 0x91, 0x06, 0x0e, 0xee, 0x2a, 0x1a, 0x6b, 0xec, 0x4c, - 0x76, 0x2d, 0x65, 0x6d, 0xc7, 0xf6, 0x26, 0xdc, 0x5b, 0xf0, 0x4a, 0x74, 0x94, 0x29, 0x29, 0x51, - 0xf2, 0x22, 0xc8, 0x7f, 0x12, 0x85, 0x2e, 0x93, 0xef, 0xf7, 0x1b, 0x7f, 0xd2, 0x0e, 0xb9, 0x5a, - 0x20, 0x02, 0x77, 0xde, 0x82, 0xf0, 0x52, 0x2b, 0x9a, 0x46, 0xba, 0x9e, 0x72, 0xf4, 0x30, 0xa5, - 0x06, 0x2c, 0x74, 0x6e, 0x62, 0xac, 0xf6, 0xba, 0xbc, 0xfc, 0x9f, 0x9d, 0xa4, 0x71, 0x92, 0xd9, - 0xf1, 0xa8, 0xd1, 0x8d, 0x8e, 0x24, 0x0d, 0xbf, 0x92, 0x34, 0xbe, 0x68, 0xb4, 0x6e, 0x96, 0x48, - 0xc1, 0x48, 0x0a, 0x4a, 0x69, 0x0f, 0xc1, 0xcd, 0x2b, 0xc7, 0x57, 0x42, 0xbb, 0x4e, 0x3b, 0xca, - 0xc1, 0x21, 0x5d, 0xf5, 0x68, 0x1f, 0x4e, 0x9e, 0x6e, 0xa4, 0x8a, 0x70, 0x66, 0xeb, 0xbc, 0x29, - 0x4e, 0xbc, 0x5f, 0xd0, 0x79, 0x6f, 0x4f, 0xf2, 0x97, 0xbf, 0xce, 0xc8, 0xf0, 0x36, 0xf6, 0x2d, - 0xdf, 0x92, 0x67, 0x41, 0x5d, 0x23, 0x93, 0x5c, 0xe0, 0x9c, 0x49, 0xc5, 0xe2, 0x3b, 0xd2, 0x55, - 0xc5, 0x8b, 0xe2, 0xd5, 0xf9, 0xb7, 0x51, 0x8a, 0x67, 0x21, 0x9d, 0xa9, 0x2f, 0x29, 0x0b, 0x5a, - 0xc6, 0x58, 0xec, 0xc2, 0xfc, 0x06, 0x0c, 0x33, 0xe0, 0xdb, 0xea, 0x2c, 0x69, 0x39, 0xfe, 0x1a, - 0xd2, 0xfb, 0x0d, 0x98, 0x5b, 0xf0, 0x6d, 0x79, 0x49, 0x88, 0x68, 0x41, 0x2a, 0xa6, 0xa0, 0xc3, - 0xea, 0x51, 0x24, 0xcf, 0xe3, 0x3f, 0x9f, 0xa1, 0xc3, 0xf2, 0x35, 0x19, 0x49, 0x2e, 0x98, 0xb7, - 0xa0, 0xdc, 0x02, 0x2d, 0x13, 0x2d, 0x28, 0x85, 0xcb, 0xea, 0x71, 0x04, 0x4b, 0xc9, 0xc5, 0x7d, - 0x8e, 0x6e, 0x52, 0x52, 0x4e, 0xc9, 0xd3, 0x60, 0xa4, 0x0e, 0x52, 0xac, 0x8e, 0xca, 0x93, 0xa3, - 0x12, 0x1b, 0xcc, 0xc4, 0xea, 0xa0, 0x7c, 0x22, 0xcf, 0x0f, 0xd5, 0x85, 0xd5, 0xce, 0xa5, 0x42, - 0x2e, 0xf4, 0x87, 0xf9, 0xdc, 0xa2, 0x73, 0xd5, 0x30, 0xca, 0x17, 0x19, 0xbb, 0x39, 0x52, 0x77, - 0x1b, 0x30, 0x1f, 0x12, 0xf3, 0xf1, 0xee, 0xf7, 0xae, 0x2e, 0xb6, 0xbb, 0xba, 0xf8, 0xbb, 0xab, - 0x8b, 0x9f, 0xfb, 0x7a, 0xb0, 0xdd, 0xd7, 0x83, 0x3f, 0xfb, 0x7a, 0xf0, 0xfd, 0x7d, 0x23, 0x7d, - 0xdb, 0xf3, 0x89, 0xd0, 0x1d, 0xcd, 0x2b, 0xae, 0x97, 0xe1, 0x54, 0x16, 0x88, 0xd7, 0xa7, 0x17, - 0xb4, 0x7e, 0x47, 0x7f, 0x1c, 0xce, 0xc8, 0x3f, 0x18, 0x74, 0x7c, 0x18, 0xbf, 0xcf, 0x9b, 0x7f, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x88, 0x79, 0xce, 0x98, 0x6c, 0x02, 0x00, 0x00, + // 339 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xc1, 0x4e, 0x2a, 0x31, + 0x14, 0x86, 0x19, 0xee, 0xbd, 0x24, 0x74, 0x39, 0xe1, 0xc6, 0x59, 0xc8, 0x68, 0x5c, 0x19, 0x13, + 0x66, 0x24, 0xc6, 0x44, 0x97, 0x4a, 0x5c, 0xb0, 0x51, 0x14, 0x56, 0x6e, 0x9a, 0x33, 0xe5, 0xe0, + 0x34, 0x61, 0xda, 0xd2, 0x16, 0x90, 0xb7, 0xf0, 0x95, 0xdc, 0xb9, 0x64, 0xe9, 0xd2, 0xc0, 0x8b, + 0x98, 0x69, 0x07, 0xa2, 0xcb, 0xd3, 0xff, 0xfb, 0x9a, 0x3f, 0xf9, 0xc9, 0xd9, 0x04, 0x11, 0x32, + 0x63, 0x35, 0x30, 0xcb, 0xa5, 0x48, 0xfd, 0x99, 0x2e, 0xba, 0x19, 0x5a, 0xe8, 0xa6, 0x0a, 0x34, + 0x14, 0x26, 0x51, 0x5a, 0x5a, 0x19, 0xb6, 0x7f, 0xb3, 0x89, 0x3f, 0x93, 0x8a, 0x3d, 0x79, 0xaf, + 0x93, 0xc6, 0xc0, 0xf1, 0xe1, 0x25, 0x39, 0x10, 0x60, 0xf9, 0x02, 0x29, 0xcf, 0x18, 0x8e, 0x29, + 0x17, 0x54, 0x9a, 0x42, 0x1a, 0x6e, 0xa2, 0xe0, 0x38, 0x38, 0x6d, 0x3e, 0xb5, 0x7c, 0xdc, 0x2f, + 0xd3, 0xbe, 0x78, 0xf0, 0x59, 0xa9, 0x55, 0x18, 0x9d, 0xcd, 0x51, 0xaf, 0xa8, 0x5d, 0x82, 0xa2, + 0x0a, 0x6c, 0x1e, 0xd5, 0xbd, 0x56, 0xc5, 0x8f, 0x65, 0x3a, 0x5a, 0x82, 0x1a, 0x80, 0xcd, 0xc3, + 0x36, 0x21, 0x2c, 0x07, 0x2e, 0xa8, 0x80, 0x02, 0xa3, 0x3f, 0x8e, 0x6c, 0xba, 0x97, 0x7b, 0x28, + 0x30, 0x3c, 0x27, 0x2d, 0x9e, 0x31, 0x6a, 0x35, 0x08, 0x33, 0x41, 0x4d, 0x59, 0x0e, 0x42, 0xe0, + 0x34, 0xfa, 0xeb, 0xc0, 0x90, 0x67, 0x6c, 0x54, 0x45, 0x3d, 0x9f, 0x84, 0x5d, 0xf2, 0xbf, 0x34, + 0x7c, 0x07, 0xce, 0x66, 0x7b, 0xe5, 0xdf, 0x5e, 0x71, 0x0d, 0xfa, 0x6c, 0xb6, 0x53, 0xee, 0xc8, + 0xd1, 0xae, 0x3a, 0xd3, 0xd2, 0x18, 0x5f, 0xc8, 0x94, 0xfd, 0x61, 0x3c, 0xd6, 0x68, 0x4c, 0xd4, + 0x70, 0xf2, 0x61, 0x85, 0xf5, 0xf6, 0xd4, 0x70, 0x09, 0xea, 0xc6, 0x33, 0xb7, 0xc3, 0x8f, 0x4d, + 0x1c, 0xac, 0x37, 0x71, 0xf0, 0xb5, 0x89, 0x83, 0xb7, 0x6d, 0x5c, 0x5b, 0x6f, 0xe3, 0xda, 0xe7, + 0x36, 0xae, 0x3d, 0x5f, 0xbf, 0x70, 0x9b, 0xcf, 0xb3, 0x84, 0xc9, 0x22, 0xad, 0xbe, 0xe8, 0x4c, + 0xcb, 0xa9, 0x26, 0x88, 0x9d, 0x9f, 0x0b, 0x2e, 0xae, 0xd2, 0xd7, 0xdd, 0x8c, 0x76, 0xa5, 0xd0, + 0x64, 0x0d, 0x37, 0xdf, 0xc5, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb2, 0x62, 0x8a, 0xd0, 0xec, + 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/feeabs/types/proposal.pb.go b/x/feeabs/types/proposal.pb.go index 0d5e3497..ddad8769 100644 --- a/x/feeabs/types/proposal.pb.go +++ b/x/feeabs/types/proposal.pb.go @@ -7,8 +7,6 @@ import ( fmt "fmt" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - _ "google.golang.org/genproto/googleapis/api/annotations" - _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -25,6 +23,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +// HostChainFeeAbsStatus type HostChainFeeAbsStatus int32 const ( @@ -53,6 +52,7 @@ func (HostChainFeeAbsStatus) EnumDescriptor() ([]byte, []int) { return fileDescriptor_c397b73ee3101036, []int{0} } +// HostChainFeeAbsConfig type HostChainFeeAbsConfig struct { // ibc token is allowed to be used as fee token IbcDenom string `protobuf:"bytes,1,opt,name=ibc_denom,json=ibcDenom,proto3" json:"ibc_denom,omitempty" yaml:"allowed_token"` @@ -125,6 +125,7 @@ func (m *HostChainFeeAbsConfig) GetStatus() HostChainFeeAbsStatus { return HostChainFeeAbsStatus_UPDATED } +// AddHostZoneProposal type AddHostZoneProposal struct { // the title of the proposal Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` @@ -167,6 +168,7 @@ func (m *AddHostZoneProposal) XXX_DiscardUnknown() { var xxx_messageInfo_AddHostZoneProposal proto.InternalMessageInfo +// DeleteHostZoneProposal type DeleteHostZoneProposal struct { // the title of the proposal Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` @@ -209,6 +211,7 @@ func (m *DeleteHostZoneProposal) XXX_DiscardUnknown() { var xxx_messageInfo_DeleteHostZoneProposal proto.InternalMessageInfo +// SetHostZoneProposal type SetHostZoneProposal struct { // the title of the proposal Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"` @@ -264,40 +267,38 @@ func init() { } var fileDescriptor_c397b73ee3101036 = []byte{ - // 515 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x93, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xc7, 0xe3, 0x36, 0xa4, 0xed, 0x06, 0x41, 0x59, 0x02, 0x8d, 0x5a, 0x70, 0xa2, 0x9c, 0x22, - 0x44, 0x6d, 0x95, 0x0f, 0x09, 0x2a, 0x84, 0x94, 0x36, 0xad, 0xa8, 0x84, 0x68, 0xe4, 0xa4, 0x97, - 0x5c, 0xcc, 0xda, 0x9e, 0x38, 0x2b, 0xec, 0x1d, 0x2b, 0xbb, 0x29, 0xf4, 0x0d, 0x38, 0xf2, 0x08, - 0xbc, 0x04, 0xef, 0xc0, 0xb1, 0x47, 0x4e, 0x08, 0x25, 0x6f, 0x00, 0x2f, 0x80, 0xd6, 0xeb, 0xa2, - 0x00, 0x12, 0x12, 0x12, 0x17, 0x6e, 0xfe, 0x8f, 0x7f, 0x33, 0xb3, 0xf3, 0x45, 0xee, 0x8e, 0x00, - 0x58, 0x20, 0xd5, 0x84, 0x85, 0x8a, 0xa3, 0x70, 0x8d, 0x74, 0x4f, 0x77, 0x02, 0x50, 0x6c, 0xc7, - 0xcd, 0x26, 0x98, 0xa1, 0x64, 0x89, 0x93, 0x4d, 0x50, 0x21, 0xbd, 0xfd, 0x33, 0xed, 0x18, 0xe9, - 0x14, 0xf4, 0x66, 0x2d, 0xc6, 0x18, 0x73, 0xd2, 0xd5, 0x5f, 0xc6, 0x69, 0xb3, 0x11, 0x23, 0xc6, - 0x09, 0xb8, 0xb9, 0x0a, 0xa6, 0x23, 0x57, 0xf1, 0x14, 0xa4, 0x62, 0x69, 0x56, 0x00, 0xb7, 0x0a, - 0x80, 0x65, 0xdc, 0x65, 0x42, 0xa0, 0x62, 0x3a, 0xb8, 0x34, 0x7f, 0x5b, 0xdf, 0x2c, 0x72, 0xe3, - 0x19, 0x4a, 0xb5, 0x3f, 0x66, 0x5c, 0x1c, 0x02, 0x74, 0x02, 0xb9, 0x8f, 0x62, 0xc4, 0x63, 0xfa, - 0x90, 0xac, 0xf1, 0x20, 0xf4, 0x23, 0x10, 0x98, 0xd6, 0xad, 0xa6, 0xd5, 0x5e, 0xdb, 0xab, 0x7f, - 0xfd, 0xdc, 0xa8, 0x9d, 0xb1, 0x34, 0xd9, 0x6d, 0xb1, 0x24, 0xc1, 0xd7, 0x10, 0xf9, 0x0a, 0x5f, - 0x81, 0x68, 0x79, 0xab, 0x3c, 0x08, 0xbb, 0x9a, 0xa4, 0x4f, 0xc8, 0x16, 0xca, 0x14, 0x25, 0x97, - 0x7e, 0x86, 0x98, 0x18, 0xc0, 0x44, 0xf1, 0xb9, 0xa8, 0x2f, 0xe9, 0x40, 0xde, 0x46, 0x81, 0xf4, - 0x10, 0x93, 0x81, 0x06, 0x72, 0xdf, 0x23, 0x41, 0x37, 0xc8, 0x4a, 0xee, 0xc5, 0xa3, 0xfa, 0x72, - 0xd3, 0x6a, 0x97, 0xbd, 0x8a, 0x96, 0x47, 0x11, 0x7d, 0x4e, 0x2a, 0x52, 0x31, 0x35, 0x95, 0xf5, - 0x72, 0xd3, 0x6a, 0x5f, 0xb9, 0xf7, 0xc0, 0xf9, 0x63, 0xb3, 0x9c, 0x5f, 0x6a, 0xea, 0xe7, 0xbe, - 0x5e, 0x11, 0xa3, 0xf5, 0xc1, 0x22, 0xd7, 0x3b, 0x51, 0xa4, 0xa1, 0x21, 0x0a, 0xe8, 0x15, 0x73, - 0xa0, 0x35, 0x72, 0x49, 0x71, 0x95, 0x80, 0xa9, 0xd7, 0x33, 0x82, 0x36, 0x49, 0x35, 0x02, 0x19, - 0x4e, 0x78, 0xa6, 0x33, 0x15, 0x25, 0x2c, 0x9a, 0xe8, 0x4b, 0x72, 0x6d, 0x8c, 0x52, 0xf9, 0xa1, - 0xce, 0xe8, 0x87, 0x79, 0x03, 0xf3, 0x02, 0xaa, 0x7f, 0xfb, 0x50, 0xd3, 0x7c, 0xef, 0xea, 0xf8, - 0xc2, 0x6c, 0x0c, 0xbb, 0xe5, 0xb7, 0xef, 0x1b, 0xa5, 0x96, 0x24, 0x37, 0xbb, 0x90, 0x80, 0x82, - 0x7f, 0xf6, 0xf2, 0xad, 0xc5, 0x29, 0x2f, 0xe7, 0xff, 0x7f, 0xcc, 0xb2, 0x48, 0xaa, 0x9b, 0xd5, - 0x07, 0xf5, 0xbf, 0x35, 0xeb, 0xce, 0xd3, 0xdf, 0x36, 0xdb, 0x6c, 0x01, 0xad, 0x92, 0x95, 0x93, - 0x5e, 0xb7, 0x33, 0x38, 0xe8, 0xae, 0x97, 0xe8, 0x65, 0xb2, 0x7a, 0x7c, 0x32, 0x30, 0xca, 0xa2, - 0x84, 0x54, 0x0e, 0xbd, 0xe3, 0xe1, 0xc1, 0x8b, 0xf5, 0xa5, 0xbd, 0xfe, 0xc7, 0x99, 0x6d, 0x9d, - 0xcf, 0x6c, 0xeb, 0xcb, 0xcc, 0xb6, 0xde, 0xcd, 0xed, 0xd2, 0xf9, 0xdc, 0x2e, 0x7d, 0x9a, 0xdb, - 0xa5, 0xe1, 0xe3, 0x98, 0xab, 0xf1, 0x34, 0x70, 0x42, 0x4c, 0xdd, 0x62, 0x93, 0xb7, 0x13, 0x7d, - 0xd8, 0x23, 0x80, 0xed, 0xc5, 0x7b, 0x3f, 0x7d, 0xe4, 0xbe, 0xb9, 0x38, 0x7a, 0x75, 0x96, 0x81, - 0x0c, 0x2a, 0xf9, 0xd9, 0xdd, 0xff, 0x1e, 0x00, 0x00, 0xff, 0xff, 0xd4, 0xfd, 0x81, 0x32, 0x1a, - 0x04, 0x00, 0x00, + // 483 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x53, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0xf6, 0xb6, 0x21, 0x6d, 0x37, 0x08, 0xca, 0x12, 0xa8, 0x45, 0x85, 0x1b, 0xf9, 0x14, 0x21, + 0x6a, 0xab, 0xfc, 0x48, 0x50, 0x21, 0xa4, 0xb4, 0x69, 0x45, 0x25, 0x44, 0x23, 0x27, 0xbd, 0xe4, + 0x62, 0xfc, 0x33, 0x49, 0x56, 0x6c, 0x3c, 0x56, 0x76, 0x5b, 0xe8, 0x1b, 0x70, 0xe4, 0x11, 0x78, + 0x09, 0xde, 0x81, 0x63, 0x8f, 0x9c, 0x10, 0x4a, 0xde, 0x00, 0x5e, 0x00, 0xad, 0xd7, 0x41, 0x01, + 0x24, 0x24, 0x24, 0x2e, 0xdc, 0xfc, 0x8d, 0xbf, 0x99, 0xd9, 0xef, 0x9b, 0x19, 0x7a, 0x77, 0x00, + 0x10, 0xc5, 0x52, 0x4d, 0xa2, 0x44, 0x71, 0xcc, 0x7c, 0x03, 0xfd, 0xb3, 0x9d, 0x18, 0x54, 0xb4, + 0xe3, 0xe7, 0x13, 0xcc, 0x51, 0x46, 0xc2, 0xcb, 0x27, 0xa8, 0x90, 0xdd, 0xfe, 0x99, 0xed, 0x19, + 0xe8, 0x95, 0xec, 0x5b, 0xf5, 0x21, 0x0e, 0xb1, 0x60, 0xfa, 0xfa, 0xcb, 0x24, 0xb9, 0xdf, 0x08, + 0xbd, 0xf1, 0x0c, 0xa5, 0xda, 0x1f, 0x45, 0x3c, 0x3b, 0x04, 0x68, 0xc5, 0x72, 0x1f, 0xb3, 0x01, + 0x1f, 0xb2, 0x87, 0x74, 0x8d, 0xc7, 0x49, 0x98, 0x42, 0x86, 0x63, 0x9b, 0x34, 0x48, 0x73, 0x6d, + 0xcf, 0xfe, 0xfa, 0x79, 0xab, 0x7e, 0x1e, 0x8d, 0xc5, 0xae, 0x1b, 0x09, 0x81, 0xaf, 0x21, 0x0d, + 0x15, 0xbe, 0x82, 0xcc, 0x0d, 0x56, 0x79, 0x9c, 0xb4, 0x35, 0x93, 0x3d, 0xa1, 0x9b, 0x28, 0xc7, + 0x28, 0xb9, 0x0c, 0x73, 0x44, 0x61, 0x08, 0xa6, 0x4a, 0xc8, 0x33, 0x7b, 0x49, 0x17, 0x0a, 0x36, + 0x4a, 0x4a, 0x07, 0x51, 0xf4, 0x34, 0xa1, 0xc8, 0x3d, 0xca, 0xd8, 0x06, 0x5d, 0x29, 0xb2, 0x78, + 0x6a, 0x2f, 0x37, 0x48, 0xb3, 0x12, 0x54, 0x35, 0x3c, 0x4a, 0xd9, 0x73, 0x5a, 0x95, 0x2a, 0x52, + 0xa7, 0xd2, 0xae, 0x34, 0x48, 0xf3, 0xca, 0xbd, 0x07, 0xde, 0x1f, 0xd5, 0x7a, 0xbf, 0x68, 0xea, + 0x16, 0xb9, 0x41, 0x59, 0xc3, 0xfd, 0x40, 0xe8, 0xf5, 0x56, 0x9a, 0x6a, 0x52, 0x1f, 0x33, 0xe8, + 0x94, 0x46, 0xb2, 0x3a, 0xbd, 0xa4, 0xb8, 0x12, 0x60, 0xf4, 0x06, 0x06, 0xb0, 0x06, 0xad, 0xa5, + 0x20, 0x93, 0x09, 0xcf, 0x75, 0xa7, 0x52, 0xc2, 0x62, 0x88, 0xbd, 0xa4, 0xd7, 0x46, 0x28, 0x55, + 0x98, 0xe8, 0x8e, 0x61, 0x52, 0x18, 0x58, 0x08, 0xa8, 0xfd, 0xed, 0x43, 0x8d, 0xf9, 0xc1, 0xd5, + 0xd1, 0x3c, 0x6c, 0x02, 0xbb, 0x95, 0xb7, 0xef, 0xb7, 0x2c, 0x57, 0xd2, 0x9b, 0x6d, 0x10, 0xa0, + 0xe0, 0x9f, 0xbd, 0x7c, 0x73, 0x71, 0xca, 0xcb, 0xc5, 0xff, 0x1f, 0xb3, 0x2c, 0x9b, 0x6a, 0xb3, + 0xba, 0xa0, 0xfe, 0x37, 0xb3, 0xee, 0x3c, 0xfd, 0x6d, 0xb3, 0xcd, 0x16, 0xb0, 0x1a, 0x5d, 0x39, + 0xe9, 0xb4, 0x5b, 0xbd, 0x83, 0xf6, 0xba, 0xc5, 0x2e, 0xd3, 0xd5, 0xe3, 0x93, 0x9e, 0x41, 0x84, + 0x51, 0x5a, 0x3d, 0x0c, 0x8e, 0xfb, 0x07, 0x2f, 0xd6, 0x97, 0xf6, 0xba, 0x1f, 0xa7, 0x0e, 0xb9, + 0x98, 0x3a, 0xe4, 0xcb, 0xd4, 0x21, 0xef, 0x66, 0x8e, 0x75, 0x31, 0x73, 0xac, 0x4f, 0x33, 0xc7, + 0xea, 0x3f, 0x1e, 0x72, 0x35, 0x3a, 0x8d, 0xbd, 0x04, 0xc7, 0x7e, 0xb9, 0xc9, 0xdb, 0x42, 0x5f, + 0xe6, 0x00, 0x60, 0x7b, 0xf1, 0x60, 0xcf, 0x1e, 0xf9, 0x6f, 0xe6, 0x57, 0xab, 0xce, 0x73, 0x90, + 0x71, 0xb5, 0x38, 0xbb, 0xfb, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x42, 0xf0, 0x3b, 0x14, 0xdb, + 0x03, 0x00, 0x00, } func (m *HostChainFeeAbsConfig) Marshal() (dAtA []byte, err error) { diff --git a/x/feeabs/types/query.pb.go b/x/feeabs/types/query.pb.go index dd0fccf3..7c1a5a45 100644 --- a/x/feeabs/types/query.pb.go +++ b/x/feeabs/types/query.pb.go @@ -32,6 +32,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package +// QueryHostChainConfigRequest type QueryHostChainConfigRequest struct { IbcDenom string `protobuf:"bytes,1,opt,name=ibc_denom,json=ibcDenom,proto3" json:"ibc_denom,omitempty"` } @@ -76,6 +77,7 @@ func (m *QueryHostChainConfigRequest) GetIbcDenom() string { return "" } +// QueryHostChainConfigResponse type QueryHostChainConfigResponse struct { HostChainConfig HostChainFeeAbsConfig `protobuf:"bytes,1,opt,name=host_chain_config,json=hostChainConfig,proto3" json:"host_chain_config" yaml:"host_chain_config"` } @@ -166,6 +168,7 @@ func (m *QueryOsmosisArithmeticTwapRequest) GetIbcDenom() string { return "" } +// QueryOsmosisArithmeticTwapResponse type QueryOsmosisArithmeticTwapResponse struct { ArithmeticTwap cosmossdk_io_math.LegacyDec `protobuf:"bytes,1,opt,name=arithmetic_twap,json=arithmeticTwap,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"arithmetic_twap" yaml:"arithmetic_twap"` } @@ -241,6 +244,7 @@ func (m *QueryFeeabsModuleBalacesRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryFeeabsModuleBalacesRequest proto.InternalMessageInfo +// QueryFeeabsModuleBalacesResponse type QueryFeeabsModuleBalacesResponse struct { Balances github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=balances,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"balances" yaml:"balances"` Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"` @@ -293,6 +297,7 @@ func (m *QueryFeeabsModuleBalacesResponse) GetAddress() string { return "" } +// AllQueryHostChainConfigRequest type AllQueryHostChainConfigRequest struct { } @@ -329,6 +334,7 @@ func (m *AllQueryHostChainConfigRequest) XXX_DiscardUnknown() { var xxx_messageInfo_AllQueryHostChainConfigRequest proto.InternalMessageInfo +// AllQueryHostChainConfigResponse type AllQueryHostChainConfigResponse struct { AllHostChainConfig []HostChainFeeAbsConfig `protobuf:"bytes,1,rep,name=all_host_chain_config,json=allHostChainConfig,proto3" json:"all_host_chain_config" yaml:"all_host_chain_config"` } @@ -389,55 +395,54 @@ func init() { } var fileDescriptor_7cd2729237176027 = []byte{ - // 764 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x4f, 0x4f, 0x13, 0x4d, - 0x1c, 0xee, 0x40, 0x5e, 0x5e, 0x18, 0x92, 0xb7, 0x79, 0x27, 0x60, 0x6a, 0xc1, 0x6d, 0xd9, 0x78, - 0x40, 0xc2, 0xee, 0x4a, 0xf5, 0x80, 0x35, 0x60, 0xff, 0x10, 0xe2, 0x41, 0x63, 0xac, 0x9e, 0xbc, - 0x34, 0xb3, 0xdb, 0xa1, 0xdd, 0x30, 0xbb, 0xb3, 0x74, 0xb6, 0x60, 0x35, 0x5e, 0x38, 0x6b, 0x62, - 0xe2, 0x47, 0xf0, 0xe6, 0xcd, 0x9b, 0x1f, 0x81, 0x44, 0x4d, 0x48, 0xbc, 0x18, 0x4d, 0xaa, 0x01, - 0x3e, 0x01, 0x9f, 0xc0, 0xec, 0xec, 0x74, 0xb5, 0xa5, 0x6c, 0x49, 0x3d, 0xc1, 0x64, 0x9e, 0xdf, - 0xf3, 0x7b, 0x9e, 0xdf, 0xef, 0xd9, 0x29, 0xbc, 0xb6, 0x45, 0x08, 0x36, 0xb9, 0xdf, 0xc4, 0x96, - 0x6f, 0x33, 0xd7, 0x08, 0x8f, 0xc6, 0xee, 0x8a, 0x49, 0x7c, 0xbc, 0x62, 0xec, 0xb4, 0x48, 0xb3, - 0xad, 0x7b, 0x4d, 0xe6, 0x33, 0x74, 0xa5, 0x17, 0xaa, 0x87, 0x47, 0x5d, 0x42, 0xd3, 0x33, 0x75, - 0x56, 0x67, 0x02, 0x69, 0x04, 0xff, 0x85, 0x45, 0xe9, 0xf9, 0x3a, 0x63, 0x75, 0x4a, 0x0c, 0xec, - 0xd9, 0x06, 0x76, 0x5d, 0xe6, 0xe3, 0xa0, 0x96, 0xcb, 0xdb, 0xa5, 0xf8, 0xee, 0x1e, 0x6e, 0x62, - 0xa7, 0x8b, 0xd5, 0xe3, 0xb1, 0x8c, 0x3b, 0x8c, 0xdb, 0xdc, 0x36, 0x2d, 0x89, 0x5f, 0x1e, 0xc2, - 0xdd, 0x64, 0x1e, 0xe3, 0x98, 0x4a, 0xb4, 0x62, 0x09, 0x02, 0xc3, 0xc4, 0x9c, 0x44, 0x18, 0x8b, - 0xd9, 0x6e, 0x78, 0xaf, 0xe6, 0xe1, 0xdc, 0xc3, 0x60, 0x16, 0x77, 0x19, 0xf7, 0xcb, 0x0d, 0x6c, - 0xbb, 0x65, 0xe6, 0x6e, 0xd9, 0xf5, 0x0a, 0xd9, 0x69, 0x11, 0xee, 0xa3, 0x39, 0x38, 0x65, 0x9b, - 0x56, 0xb5, 0x46, 0x5c, 0xe6, 0xa4, 0x40, 0x16, 0x2c, 0x4e, 0x55, 0x26, 0x6d, 0xd3, 0xda, 0x08, - 0xce, 0xea, 0x5b, 0x00, 0xe7, 0x07, 0x17, 0x73, 0x8f, 0xb9, 0x9c, 0xa0, 0x7d, 0x00, 0xff, 0x6f, - 0x30, 0xee, 0x57, 0xad, 0xe0, 0xb2, 0x6a, 0x89, 0x5b, 0x41, 0x33, 0x9d, 0xbb, 0xa9, 0xc7, 0x8e, - 0x5d, 0x8f, 0x38, 0x37, 0x09, 0x29, 0x9a, 0x3c, 0x64, 0x2e, 0x65, 0x0f, 0x3a, 0x99, 0xc4, 0x69, - 0x27, 0x93, 0x6a, 0x63, 0x87, 0xe6, 0xd5, 0x33, 0xe4, 0x6a, 0x25, 0xd9, 0xe8, 0x15, 0xa3, 0x16, - 0xe0, 0x82, 0x10, 0xf9, 0x20, 0x1c, 0x64, 0xb1, 0x69, 0xfb, 0x0d, 0x87, 0xf8, 0xb6, 0xf5, 0x78, - 0x0f, 0x7b, 0x17, 0xf2, 0xf9, 0x12, 0x40, 0x35, 0x8e, 0x42, 0xba, 0xdd, 0x82, 0x49, 0x1c, 0xdd, - 0x54, 0xfd, 0x3d, 0xec, 0x85, 0x4c, 0xa5, 0xb5, 0x40, 0xf4, 0xb7, 0x4e, 0x66, 0x2e, 0xdc, 0x05, - 0xaf, 0x6d, 0xeb, 0x36, 0x33, 0x1c, 0xec, 0x37, 0xf4, 0x7b, 0xa4, 0x8e, 0xad, 0xf6, 0x06, 0xb1, - 0x4e, 0x3b, 0x99, 0x4b, 0xa1, 0xa7, 0x3e, 0x0e, 0xb5, 0xf2, 0x1f, 0xee, 0xe9, 0xa7, 0x2e, 0xc0, - 0x8c, 0x50, 0xb3, 0x29, 0x06, 0x76, 0x9f, 0xd5, 0x5a, 0x94, 0x94, 0x30, 0xc5, 0x16, 0xe1, 0xd2, - 0x8e, 0xfa, 0x01, 0xc0, 0xec, 0xf9, 0x18, 0xa9, 0xf7, 0x19, 0x9c, 0x34, 0x31, 0xc5, 0xae, 0x45, - 0x78, 0x0a, 0x64, 0xc7, 0x17, 0xa7, 0x73, 0x97, 0xf5, 0x50, 0xa1, 0x1e, 0xa4, 0x25, 0xda, 0x44, - 0x99, 0xd9, 0x6e, 0xa9, 0x2c, 0x07, 0x9f, 0x0c, 0x45, 0x76, 0x0b, 0xd5, 0x77, 0x3f, 0x32, 0x8b, - 0x75, 0xdb, 0x6f, 0xb4, 0x4c, 0xdd, 0x62, 0x8e, 0x21, 0xd3, 0x16, 0xfe, 0xd1, 0x78, 0x6d, 0xdb, - 0xf0, 0xdb, 0x1e, 0xe1, 0x82, 0x83, 0x57, 0xa2, 0x7e, 0x28, 0x05, 0xff, 0xc5, 0xb5, 0x5a, 0x93, - 0x70, 0x9e, 0x1a, 0x13, 0xd3, 0xee, 0x1e, 0xd5, 0x2c, 0x54, 0x8a, 0x94, 0xc6, 0x64, 0x52, 0x7d, - 0x0f, 0x60, 0xe6, 0x5c, 0x88, 0xf4, 0xf6, 0x0a, 0xc0, 0x59, 0x4c, 0x69, 0x75, 0x50, 0xfa, 0xc6, - 0x47, 0x4e, 0xdf, 0x55, 0x39, 0x84, 0x79, 0xb9, 0xa9, 0x41, 0x0d, 0xd4, 0x0a, 0xc2, 0x94, 0xf6, - 0xe9, 0xca, 0x7d, 0x9f, 0x80, 0xff, 0x08, 0xc1, 0xe8, 0x04, 0xc0, 0xd9, 0x81, 0x39, 0x42, 0x85, - 0x21, 0x9a, 0x86, 0xa6, 0x38, 0x5d, 0xfc, 0x0b, 0x86, 0x70, 0x70, 0xea, 0xe6, 0xfe, 0x97, 0x93, - 0x37, 0x63, 0x05, 0xb4, 0x1e, 0xbc, 0x2b, 0xda, 0xc0, 0x77, 0xa6, 0xfb, 0x24, 0x69, 0xbf, 0x73, - 0xa9, 0x05, 0x49, 0x35, 0x9e, 0x47, 0x9f, 0xd0, 0x0b, 0xf4, 0x11, 0xc0, 0x99, 0xfe, 0xf0, 0x89, - 0xcd, 0xaf, 0x5f, 0x44, 0xe3, 0xf9, 0xd1, 0x4e, 0xdf, 0x19, 0xb9, 0x5e, 0x3a, 0xcc, 0x09, 0x87, - 0xcb, 0x68, 0x29, 0xc6, 0xa1, 0x23, 0x2a, 0xb5, 0x28, 0xae, 0x9f, 0x00, 0x4c, 0xf6, 0xad, 0x14, - 0xe5, 0x2f, 0x22, 0x64, 0x70, 0x84, 0xd3, 0xb7, 0x47, 0xaa, 0x95, 0x06, 0x0a, 0xc2, 0x40, 0x1e, - 0xad, 0xc6, 0x18, 0x08, 0x62, 0xa9, 0x89, 0x58, 0x6a, 0x61, 0x2c, 0x7b, 0x96, 0xf3, 0x19, 0x40, - 0x54, 0x3c, 0x13, 0x52, 0xb4, 0x36, 0x44, 0x55, 0xfc, 0x77, 0x99, 0x5e, 0x1f, 0xb5, 0x5c, 0xfa, - 0x5a, 0x15, 0xbe, 0x72, 0xe8, 0x7a, 0x8c, 0x2f, 0x4c, 0xa9, 0x76, 0xc6, 0x5b, 0xe9, 0xd1, 0xc1, - 0x91, 0x02, 0x0e, 0x8f, 0x14, 0xf0, 0xf3, 0x48, 0x01, 0xaf, 0x8f, 0x95, 0xc4, 0xe1, 0xb1, 0x92, - 0xf8, 0x7a, 0xac, 0x24, 0x9e, 0xdc, 0xfa, 0xe3, 0x6d, 0xea, 0xc6, 0x96, 0x06, 0x5c, 0xfd, 0x2d, - 0x76, 0x57, 0x8d, 0xa7, 0xdd, 0x3e, 0xe2, 0xc9, 0x32, 0x27, 0xc4, 0x0f, 0xe4, 0x8d, 0x5f, 0x01, - 0x00, 0x00, 0xff, 0xff, 0xf7, 0x3b, 0x6f, 0x6f, 0x4a, 0x08, 0x00, 0x00, + // 749 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xcd, 0x6e, 0xd3, 0x4a, + 0x14, 0xce, 0xb4, 0xba, 0xbd, 0xed, 0x54, 0xba, 0xd1, 0x1d, 0xb5, 0x57, 0xb9, 0x69, 0x71, 0x52, + 0x8b, 0x45, 0x41, 0xb5, 0x4d, 0x03, 0x8b, 0x12, 0xd4, 0x92, 0x9f, 0xaa, 0x62, 0x01, 0x42, 0x04, + 0x56, 0x6c, 0xa2, 0xb1, 0x33, 0x4d, 0xac, 0x4e, 0x3c, 0x6e, 0xc6, 0x69, 0x09, 0x88, 0x4d, 0xd7, + 0x20, 0x21, 0xf1, 0x08, 0xec, 0xd8, 0xb1, 0xe3, 0x11, 0x2a, 0x01, 0x52, 0x25, 0x36, 0x08, 0xa4, + 0x80, 0xda, 0x3e, 0x41, 0x9f, 0x00, 0x79, 0x66, 0x62, 0x48, 0x9a, 0xba, 0x55, 0x58, 0x25, 0xa3, + 0x73, 0xce, 0x77, 0xbe, 0xef, 0x9c, 0x6f, 0xc6, 0xf0, 0xca, 0x26, 0x21, 0xd8, 0xe6, 0x41, 0x0b, + 0x3b, 0x81, 0xcb, 0x3c, 0x4b, 0x1e, 0xad, 0x9d, 0x65, 0x9b, 0x04, 0x78, 0xd9, 0xda, 0x6e, 0x93, + 0x56, 0xc7, 0xf4, 0x5b, 0x2c, 0x60, 0xe8, 0x52, 0x7f, 0xaa, 0x29, 0x8f, 0xa6, 0x4a, 0x4d, 0xcf, + 0xd4, 0x59, 0x9d, 0x89, 0x4c, 0x2b, 0xfc, 0x27, 0x8b, 0xd2, 0xf3, 0x75, 0xc6, 0xea, 0x94, 0x58, + 0xd8, 0x77, 0x2d, 0xec, 0x79, 0x2c, 0xc0, 0x61, 0x2d, 0x57, 0xd1, 0xa5, 0xf8, 0xee, 0x7e, 0x8b, + 0xf9, 0x8c, 0x63, 0xaa, 0xb2, 0x35, 0x87, 0xf1, 0x26, 0xe3, 0x96, 0x8d, 0x39, 0x89, 0x72, 0x1c, + 0xe6, 0x7a, 0x32, 0xae, 0xe7, 0xe1, 0xdc, 0x83, 0x90, 0xef, 0x1d, 0xc6, 0x83, 0x72, 0x03, 0xbb, + 0x5e, 0x99, 0x79, 0x9b, 0x6e, 0xbd, 0x42, 0xb6, 0xdb, 0x84, 0x07, 0x68, 0x0e, 0x4e, 0xb9, 0xb6, + 0x53, 0xad, 0x11, 0x8f, 0x35, 0x53, 0x20, 0x0b, 0x16, 0xa7, 0x2a, 0x93, 0xae, 0xed, 0xac, 0x87, + 0x67, 0xfd, 0x0d, 0x80, 0xf3, 0xc3, 0x8b, 0xb9, 0xcf, 0x3c, 0x4e, 0xd0, 0x1e, 0x80, 0xff, 0x36, + 0x18, 0x0f, 0xaa, 0x4e, 0x18, 0xac, 0x3a, 0x22, 0x2a, 0x60, 0xa6, 0x73, 0x37, 0xcc, 0xd8, 0xd1, + 0x98, 0x11, 0xe6, 0x06, 0x21, 0x45, 0x9b, 0x4b, 0xe4, 0x52, 0x76, 0xbf, 0x9b, 0x49, 0x9c, 0x74, + 0x33, 0xa9, 0x0e, 0x6e, 0xd2, 0xbc, 0x7e, 0x0a, 0x5c, 0xaf, 0x24, 0x1b, 0xfd, 0x64, 0xf4, 0x02, + 0x5c, 0x10, 0x24, 0xef, 0x87, 0x73, 0x70, 0x79, 0xb1, 0xe5, 0x06, 0x8d, 0x26, 0x09, 0x5c, 0xe7, + 0xd1, 0x2e, 0xf6, 0x2f, 0xa4, 0xf3, 0x05, 0x80, 0x7a, 0x1c, 0x84, 0x52, 0xbb, 0x09, 0x93, 0x38, + 0x8a, 0x54, 0x83, 0x5d, 0xec, 0x4b, 0xa4, 0xd2, 0x6a, 0x48, 0xfa, 0x6b, 0x37, 0x33, 0x27, 0x77, + 0xc1, 0x6b, 0x5b, 0xa6, 0xcb, 0xac, 0x26, 0x0e, 0x1a, 0xe6, 0x5d, 0x52, 0xc7, 0x4e, 0x67, 0x9d, + 0x38, 0x27, 0xdd, 0xcc, 0x7f, 0x52, 0xd3, 0x00, 0x86, 0x5e, 0xf9, 0x07, 0xf7, 0xf5, 0xd3, 0x17, + 0x60, 0x46, 0xb0, 0xd9, 0x10, 0x03, 0xbb, 0xc7, 0x6a, 0x6d, 0x4a, 0x4a, 0x98, 0x62, 0x87, 0x70, + 0x25, 0x47, 0x7f, 0x0f, 0x60, 0xf6, 0xec, 0x1c, 0xc5, 0xf7, 0x29, 0x9c, 0xb4, 0x31, 0xc5, 0x9e, + 0x43, 0x78, 0x0a, 0x64, 0xc7, 0x17, 0xa7, 0x73, 0xff, 0x9b, 0x92, 0xa1, 0x19, 0xba, 0x25, 0xda, + 0x44, 0x99, 0xb9, 0x5e, 0xa9, 0xac, 0x06, 0x9f, 0x94, 0x24, 0x7b, 0x85, 0xfa, 0xdb, 0xef, 0x99, + 0xc5, 0xba, 0x1b, 0x34, 0xda, 0xb6, 0xe9, 0xb0, 0xa6, 0xa5, 0xdc, 0x26, 0x7f, 0x0c, 0x5e, 0xdb, + 0xb2, 0x82, 0x8e, 0x4f, 0xb8, 0xc0, 0xe0, 0x95, 0xa8, 0x1f, 0x4a, 0xc1, 0xbf, 0x71, 0xad, 0xd6, + 0x22, 0x9c, 0xa7, 0xc6, 0xc4, 0xb4, 0x7b, 0x47, 0x3d, 0x0b, 0xb5, 0x22, 0xa5, 0x31, 0x9e, 0xd4, + 0xdf, 0x01, 0x98, 0x39, 0x33, 0x45, 0x69, 0x7b, 0x09, 0xe0, 0x2c, 0xa6, 0xb4, 0x3a, 0xcc, 0x7d, + 0xe3, 0x23, 0xbb, 0xef, 0xb2, 0x1a, 0xc2, 0xbc, 0xda, 0xd4, 0xb0, 0x06, 0x7a, 0x05, 0x61, 0x4a, + 0x07, 0x78, 0xe5, 0xbe, 0x4d, 0xc0, 0xbf, 0x04, 0x61, 0x74, 0x0c, 0xe0, 0xec, 0x50, 0x1f, 0xa1, + 0xc2, 0x39, 0x9c, 0xce, 0x75, 0x71, 0xba, 0xf8, 0x07, 0x08, 0x72, 0x70, 0xfa, 0xc6, 0xde, 0xe7, + 0xe3, 0xd7, 0x63, 0x05, 0xb4, 0x16, 0xbe, 0x2b, 0xc6, 0xd0, 0x77, 0xc6, 0x62, 0x12, 0xc1, 0xf8, + 0xe5, 0x4b, 0x23, 0x74, 0xaa, 0xf5, 0x2c, 0xba, 0x42, 0xcf, 0xd1, 0x07, 0x00, 0x67, 0x06, 0xcd, + 0x27, 0x36, 0xbf, 0x76, 0x11, 0x8e, 0x67, 0x5b, 0x3b, 0x7d, 0x7b, 0xe4, 0x7a, 0xa5, 0x30, 0x27, + 0x14, 0x2e, 0xa1, 0xab, 0x31, 0x0a, 0x9b, 0xa2, 0xd2, 0x88, 0xec, 0xfa, 0x11, 0xc0, 0xe4, 0xc0, + 0x4a, 0x51, 0xfe, 0x22, 0x44, 0x86, 0x5b, 0x38, 0x7d, 0x6b, 0xa4, 0x5a, 0x25, 0xa0, 0x20, 0x04, + 0xe4, 0xd1, 0x4a, 0x8c, 0x80, 0xd0, 0x96, 0x86, 0xb0, 0xa5, 0x21, 0x6d, 0xd9, 0xb7, 0x9c, 0x4f, + 0x00, 0xa2, 0xe2, 0x29, 0x93, 0xa2, 0xd5, 0x73, 0x58, 0xc5, 0xdf, 0xcb, 0xf4, 0xda, 0xa8, 0xe5, + 0x4a, 0xd7, 0x8a, 0xd0, 0x95, 0x43, 0xd7, 0x62, 0x74, 0x61, 0x4a, 0x8d, 0x53, 0xda, 0x4a, 0x0f, + 0xf7, 0x0f, 0x35, 0x70, 0x70, 0xa8, 0x81, 0x1f, 0x87, 0x1a, 0x78, 0x75, 0xa4, 0x25, 0x0e, 0x8e, + 0xb4, 0xc4, 0x97, 0x23, 0x2d, 0xf1, 0xf8, 0xe6, 0x6f, 0x6f, 0x53, 0xcf, 0xb6, 0x34, 0xc4, 0x1a, + 0x6c, 0xb1, 0xb3, 0x62, 0x3d, 0xe9, 0xf5, 0x11, 0x4f, 0x96, 0x3d, 0x21, 0x3e, 0x90, 0xd7, 0x7f, + 0x06, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x92, 0x7f, 0x16, 0xee, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -456,7 +461,9 @@ type QueryClient interface { OsmosisArithmeticTwap(ctx context.Context, in *QueryOsmosisArithmeticTwapRequest, opts ...grpc.CallOption) (*QueryOsmosisArithmeticTwapResponse, error) // FeeabsModuleBalances return total balances of feeabs module FeeabsModuleBalances(ctx context.Context, in *QueryFeeabsModuleBalacesRequest, opts ...grpc.CallOption) (*QueryFeeabsModuleBalacesResponse, error) + // HostChainConfig HostChainConfig(ctx context.Context, in *QueryHostChainConfigRequest, opts ...grpc.CallOption) (*QueryHostChainConfigResponse, error) + // AllHostChainConfig AllHostChainConfig(ctx context.Context, in *AllQueryHostChainConfigRequest, opts ...grpc.CallOption) (*AllQueryHostChainConfigResponse, error) } @@ -510,7 +517,9 @@ type QueryServer interface { OsmosisArithmeticTwap(context.Context, *QueryOsmosisArithmeticTwapRequest) (*QueryOsmosisArithmeticTwapResponse, error) // FeeabsModuleBalances return total balances of feeabs module FeeabsModuleBalances(context.Context, *QueryFeeabsModuleBalacesRequest) (*QueryFeeabsModuleBalacesResponse, error) + // HostChainConfig HostChainConfig(context.Context, *QueryHostChainConfigRequest) (*QueryHostChainConfigResponse, error) + // AllHostChainConfig AllHostChainConfig(context.Context, *AllQueryHostChainConfigRequest) (*AllQueryHostChainConfigResponse, error) } diff --git a/x/feeabs/types/tx.pb.go b/x/feeabs/types/tx.pb.go index 4acd59f3..3387e301 100644 --- a/x/feeabs/types/tx.pb.go +++ b/x/feeabs/types/tx.pb.go @@ -8,13 +8,13 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -301,40 +301,38 @@ func init() { } var fileDescriptor_bc180c3e894b3e83 = []byte{ - // 513 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x8e, 0x1b, 0xa9, 0xa2, 0x5b, 0x40, 0xc2, 0x02, 0x91, 0xba, 0xc2, 0x09, 0x16, 0x42, 0x01, - 0x29, 0x5e, 0x5a, 0x0e, 0xb4, 0x48, 0x08, 0xb9, 0x41, 0x95, 0x38, 0x44, 0x82, 0x04, 0x09, 0x89, - 0x4b, 0xb5, 0xb6, 0x27, 0x8e, 0x45, 0xec, 0xb1, 0x3c, 0xeb, 0xd2, 0x48, 0x3c, 0x04, 0x9c, 0x78, - 0x07, 0x6e, 0x1c, 0x78, 0x87, 0x1e, 0x7b, 0xe4, 0x54, 0x50, 0xf2, 0x06, 0x3c, 0x01, 0xf2, 0x5f, - 0xd4, 0x02, 0x0e, 0xa1, 0x27, 0x7b, 0x76, 0xbf, 0xef, 0x9b, 0x6f, 0x46, 0x33, 0xcb, 0xee, 0x0e, - 0x01, 0x84, 0x4d, 0x32, 0x16, 0x8e, 0xf4, 0x31, 0xe4, 0x79, 0xc8, 0x0f, 0xb7, 0x6c, 0x90, 0x62, - 0x8b, 0xcb, 0x23, 0x33, 0x8a, 0x51, 0xa2, 0x7a, 0xeb, 0x3c, 0xce, 0xcc, 0x43, 0xb3, 0xc0, 0x69, - 0xd7, 0x3d, 0xf4, 0x30, 0x43, 0xf2, 0xf4, 0x2f, 0x27, 0x69, 0xf7, 0x17, 0x8b, 0x47, 0x22, 0x16, - 0x01, 0x15, 0xd8, 0x7b, 0x8b, 0xb1, 0x10, 0xa1, 0x33, 0x2a, 0xa0, 0xba, 0x83, 0x14, 0x20, 0x71, - 0x5b, 0x10, 0xcc, 0x01, 0x0e, 0xfa, 0x61, 0x71, 0xdf, 0xf4, 0x10, 0xbd, 0x31, 0xf0, 0x2c, 0xb2, - 0x93, 0x21, 0x97, 0x7e, 0x00, 0x24, 0x45, 0x10, 0xe5, 0x00, 0xe3, 0xab, 0xc2, 0xb4, 0x1e, 0x79, - 0xfb, 0x49, 0xe8, 0xee, 0x03, 0x58, 0x36, 0xf5, 0xd0, 0x4d, 0xc6, 0x60, 0x39, 0x0e, 0x26, 0xa1, - 0x54, 0x6f, 0xb3, 0xcb, 0xc3, 0x18, 0x83, 0x03, 0xe1, 0xba, 0x31, 0x10, 0x35, 0x94, 0x96, 0xd2, - 0x5e, 0xeb, 0xaf, 0xa7, 0x67, 0x56, 0x7e, 0xa4, 0x4a, 0xb6, 0x2a, 0x82, 0x14, 0xdc, 0x58, 0x69, - 0xd5, 0xdb, 0xeb, 0xdb, 0x1b, 0x66, 0xee, 0xc9, 0x4c, 0x3d, 0x95, 0x5d, 0x31, 0xbb, 0xe8, 0x87, - 0x7b, 0xd6, 0xf1, 0x69, 0xb3, 0xf6, 0xf3, 0xb4, 0x79, 0x65, 0x22, 0x82, 0xf1, 0x63, 0x23, 0xa7, - 0x19, 0x9f, 0xbf, 0x37, 0xdb, 0x9e, 0x2f, 0x47, 0x89, 0x6d, 0x3a, 0x18, 0xf0, 0xa2, 0xa2, 0xfc, - 0xd3, 0x21, 0xf7, 0x2d, 0x97, 0x93, 0x08, 0x28, 0x53, 0xa0, 0x7e, 0x91, 0xcb, 0xb8, 0xc3, 0x8c, - 0x6a, 0xdb, 0x7d, 0xa0, 0x08, 0x43, 0x02, 0xe3, 0x09, 0x6b, 0xf4, 0xc8, 0x1b, 0x40, 0xe8, 0xbe, - 0x4c, 0x20, 0x9e, 0x3c, 0xb7, 0x9d, 0x67, 0x10, 0x62, 0xf0, 0xea, 0xb5, 0xf5, 0x62, 0x89, 0xd2, - 0x0c, 0x83, 0xb5, 0xaa, 0xe8, 0xf3, 0x14, 0x03, 0x76, 0x2d, 0xc5, 0xbc, 0x13, 0x51, 0x37, 0x46, - 0xa2, 0xee, 0x48, 0xf8, 0xe1, 0x32, 0x6d, 0xdb, 0x64, 0x6b, 0xbe, 0xed, 0x1c, 0xb8, 0xa9, 0x60, - 0x63, 0x25, 0xbb, 0xbf, 0xe4, 0x17, 0x09, 0x8c, 0x4d, 0xb6, 0xf1, 0x87, 0x68, 0x99, 0x71, 0xfb, - 0x4b, 0x9d, 0xd5, 0x7b, 0xe4, 0xa9, 0x1f, 0x15, 0x76, 0xe3, 0xef, 0xa5, 0x3d, 0x32, 0x17, 0x8e, - 0xa8, 0x59, 0x55, 0x94, 0xf6, 0xf4, 0x82, 0xc4, 0xd2, 0x9b, 0xfa, 0x9e, 0x5d, 0xfd, 0xad, 0x15, - 0x0f, 0x96, 0x90, 0x3c, 0xc7, 0xd0, 0x76, 0xfe, 0x97, 0x31, 0xcf, 0xfe, 0x49, 0x61, 0x37, 0xab, - 0x26, 0x79, 0xf7, 0xdf, 0xaa, 0x15, 0x54, 0xcd, 0xba, 0x30, 0xb5, 0x74, 0xb6, 0x37, 0x38, 0x9e, - 0xea, 0xca, 0xc9, 0x54, 0x57, 0x7e, 0x4c, 0x75, 0xe5, 0xc3, 0x4c, 0xaf, 0x9d, 0xcc, 0xf4, 0xda, - 0xb7, 0x99, 0x5e, 0x7b, 0xb3, 0x7b, 0x66, 0xf4, 0xb3, 0x91, 0xf7, 0xa9, 0x33, 0x4e, 0xd7, 0x7d, - 0x08, 0xd0, 0x39, 0xfb, 0x0a, 0x1c, 0xee, 0xf0, 0xa3, 0xf2, 0x29, 0xc8, 0x36, 0xc2, 0x5e, 0xcd, - 0x56, 0xf8, 0xe1, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x41, 0x2d, 0x19, 0xb9, 0x04, 0x00, - 0x00, + // 496 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4f, 0x6b, 0x13, 0x41, + 0x14, 0xcf, 0x34, 0x58, 0xec, 0x54, 0x05, 0x17, 0xa5, 0xe9, 0x16, 0x37, 0x71, 0x10, 0x09, 0x42, + 0x66, 0x4c, 0x3d, 0xd8, 0x0a, 0x22, 0xdb, 0x48, 0xc1, 0x43, 0x40, 0x13, 0x41, 0xf0, 0x52, 0x66, + 0x77, 0x27, 0xdb, 0xc5, 0xec, 0x4c, 0xd8, 0x37, 0x1b, 0x1b, 0xf0, 0xe0, 0x47, 0xd0, 0x93, 0xdf, + 0xc1, 0x93, 0x17, 0xc1, 0x8f, 0xd0, 0x63, 0x8f, 0x9e, 0xaa, 0x24, 0x07, 0xef, 0x7e, 0x02, 0xd9, + 0x7f, 0xa1, 0x55, 0x57, 0xd3, 0x9e, 0x76, 0x67, 0xde, 0xfb, 0xfd, 0x79, 0xc3, 0x7b, 0x0f, 0xdf, + 0x1e, 0x08, 0xc1, 0x1d, 0xd0, 0x11, 0x77, 0x75, 0xa0, 0x24, 0xcb, 0x8e, 0x6c, 0xdc, 0x76, 0x84, + 0xe6, 0x6d, 0xa6, 0x0f, 0xe8, 0x28, 0x52, 0x5a, 0x19, 0x37, 0x4e, 0xe7, 0xd1, 0xec, 0x48, 0xf3, + 0x3c, 0xf3, 0x9a, 0xaf, 0x7c, 0x95, 0x66, 0xb2, 0xe4, 0x2f, 0x03, 0x99, 0x6b, 0xae, 0x82, 0x50, + 0x01, 0x0b, 0xc1, 0x67, 0xe3, 0x76, 0xf2, 0xc9, 0x03, 0x56, 0x1e, 0x70, 0x38, 0x88, 0xb9, 0x96, + 0xab, 0x02, 0x99, 0xc5, 0xc9, 0x67, 0x84, 0xcd, 0x2e, 0xf8, 0xbb, 0xb1, 0xf4, 0x76, 0x85, 0xb0, + 0x1d, 0xe8, 0x2a, 0x2f, 0x1e, 0x0a, 0xdb, 0x75, 0x55, 0x2c, 0xb5, 0x71, 0x13, 0x5f, 0x1a, 0x44, + 0x2a, 0xdc, 0xe3, 0x9e, 0x17, 0x09, 0x80, 0x1a, 0x6a, 0xa0, 0xe6, 0x4a, 0x6f, 0x35, 0xb9, 0xb3, + 0xb3, 0x2b, 0x43, 0xe3, 0x65, 0x1e, 0x26, 0xc9, 0xb5, 0xa5, 0x46, 0xb5, 0xb9, 0xba, 0xb9, 0x4e, + 0x33, 0x49, 0x9a, 0x48, 0x16, 0xb6, 0x69, 0x47, 0x05, 0x72, 0xc7, 0x3e, 0x3c, 0xae, 0x57, 0x7e, + 0x1e, 0xd7, 0x2f, 0x4f, 0x78, 0x38, 0x7c, 0x40, 0x32, 0x18, 0xf9, 0xf8, 0xad, 0xde, 0xf4, 0x03, + 0xbd, 0x1f, 0x3b, 0xd4, 0x55, 0x21, 0xcb, 0x0d, 0x67, 0x9f, 0x16, 0x78, 0xaf, 0x98, 0x9e, 0x8c, + 0x04, 0xa4, 0x0c, 0xd0, 0xcb, 0xb5, 0xc8, 0x2d, 0x4c, 0xca, 0x6d, 0xf7, 0x04, 0x8c, 0x94, 0x04, + 0x41, 0x1e, 0xe2, 0x5a, 0x17, 0xfc, 0xbe, 0x90, 0xde, 0xb3, 0x58, 0x44, 0x93, 0x27, 0x8e, 0xfb, + 0x58, 0x48, 0x15, 0x3e, 0x7f, 0x61, 0x3f, 0x5d, 0xa0, 0x34, 0x42, 0x70, 0xa3, 0x0c, 0x3e, 0x97, + 0xe8, 0xe3, 0xab, 0x49, 0xce, 0x6b, 0x3e, 0xea, 0x44, 0x0a, 0xa0, 0xb3, 0xcf, 0x03, 0xb9, 0xc8, + 0xb3, 0x6d, 0xe0, 0x95, 0xc0, 0x71, 0xf7, 0xbc, 0x84, 0xb0, 0xb6, 0x94, 0xc6, 0x2f, 0x06, 0xb9, + 0x00, 0xd9, 0xc0, 0xeb, 0x7f, 0x90, 0x16, 0x8a, 0x9b, 0x5f, 0xaa, 0xb8, 0xda, 0x05, 0xdf, 0x78, + 0x8f, 0xf0, 0xf5, 0xbf, 0x97, 0x76, 0x9f, 0xfe, 0xb3, 0x87, 0x68, 0x59, 0x51, 0xe6, 0xa3, 0x73, + 0x02, 0x0b, 0x6f, 0xc6, 0x1b, 0x7c, 0xe5, 0xb7, 0xa7, 0xb8, 0xbb, 0x00, 0xe5, 0x29, 0x84, 0xb9, + 0x75, 0x56, 0xc4, 0x5c, 0xfd, 0x03, 0xc2, 0x6b, 0x65, 0x9d, 0xbc, 0xfd, 0x7f, 0xd6, 0x12, 0xa8, + 0x69, 0x9f, 0x1b, 0x5a, 0x38, 0x33, 0x2f, 0xbc, 0xfd, 0xf1, 0xe9, 0x0e, 0xda, 0xe9, 0x1f, 0x4e, + 0x2d, 0x74, 0x34, 0xb5, 0xd0, 0xf7, 0xa9, 0x85, 0xde, 0xcd, 0xac, 0xca, 0xd1, 0xcc, 0xaa, 0x7c, + 0x9d, 0x59, 0x95, 0x97, 0xdb, 0x27, 0x26, 0x20, 0xed, 0xfc, 0x00, 0x5a, 0xc3, 0x64, 0x3f, 0x0c, + 0x84, 0x68, 0x9d, 0x5c, 0x1b, 0xe3, 0x2d, 0x76, 0x50, 0xec, 0x8e, 0x74, 0x30, 0x9c, 0xe5, 0x74, + 0x92, 0xef, 0xfd, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x3b, 0x5e, 0xdd, 0x1e, 0x61, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.