From c9a0813472d2f056e821f028ff5404392a86d34d Mon Sep 17 00:00:00 2001 From: rapha Date: Wed, 10 Apr 2024 13:53:27 +0200 Subject: [PATCH] refactor: move all proto files from v1beta1 to types --- docs/config.json | 26 +- docs/static/openapi.yml | 4 +- .../bundles/{v1beta1 => types}/bundles.proto | 2 +- .../bundles/{v1beta1 => types}/events.proto | 12 +- .../bundles/{v1beta1 => types}/genesis.proto | 6 +- .../bundles/{v1beta1 => types}/params.proto | 2 +- .../bundles/{v1beta1 => types}/query.proto | 4 +- .../kyve/bundles/{v1beta1 => types}/tx.proto | 2 +- .../{v1beta1 => types}/delegation.proto | 2 +- .../{v1beta1 => types}/events.proto | 10 +- .../{v1beta1 => types}/genesis.proto | 6 +- .../{v1beta1 => types}/params.proto | 2 +- .../delegation/{v1beta1 => types}/query.proto | 4 +- .../delegation/{v1beta1 => types}/tx.proto | 2 +- .../funders/{v1beta1 => types}/events.proto | 4 +- .../funders/{v1beta1 => types}/funders.proto | 2 +- .../funders/{v1beta1 => types}/genesis.proto | 12 +- .../funders/{v1beta1 => types}/params.proto | 2 +- .../funders/{v1beta1 => types}/query.proto | 4 +- .../kyve/funders/{v1beta1 => types}/tx.proto | 2 +- .../global/{v1beta1 => types}/events.proto | 8 +- .../global/{v1beta1 => types}/genesis.proto | 4 +- .../global/{v1beta1 => types}/global.proto | 2 +- .../global/{v1beta1 => types}/query.proto | 4 +- proto/kyve/global/{v1beta1 => types}/tx.proto | 2 +- .../kyve/pool/{v1beta1 => types}/events.proto | 8 +- .../pool/{v1beta1 => types}/genesis.proto | 8 +- .../kyve/pool/{v1beta1 => types}/params.proto | 2 +- proto/kyve/pool/{v1beta1 => types}/pool.proto | 2 +- .../kyve/pool/{v1beta1 => types}/query.proto | 4 +- proto/kyve/pool/{v1beta1 => types}/tx.proto | 2 +- .../query/{v1beta1 => types}/account.proto | 8 +- .../query/{v1beta1 => types}/bundles.proto | 2 +- .../query/{v1beta1 => types}/delegation.proto | 4 +- .../query/{v1beta1 => types}/funders.proto | 2 +- .../query/{v1beta1 => types}/params.proto | 27 +- .../kyve/query/{v1beta1 => types}/pools.proto | 16 +- .../kyve/query/{v1beta1 => types}/query.proto | 6 +- .../query/{v1beta1 => types}/stakers.proto | 8 +- .../stakers/{v1beta1 => types}/events.proto | 8 +- .../stakers/{v1beta1 => types}/genesis.proto | 6 +- .../stakers/{v1beta1 => types}/params.proto | 2 +- .../stakers/{v1beta1 => types}/query.proto | 4 +- .../stakers/{v1beta1 => types}/stakers.proto | 2 +- .../kyve/stakers/{v1beta1 => types}/tx.proto | 2 +- .../kyve/team/{v1beta1 => types}/events.proto | 2 +- .../team/{v1beta1 => types}/genesis.proto | 4 +- proto/kyve/team/types/module.proto | 2 +- .../kyve/team/{v1beta1 => types}/query.proto | 8 +- proto/kyve/team/{v1beta1 => types}/team.proto | 2 +- proto/kyve/team/{v1beta1 => types}/tx.proto | 2 +- x/bundles/types/bundles.pb.go | 159 ++++++----- x/bundles/types/events.pb.go | 162 ++++++------ x/bundles/types/genesis.pb.go | 62 +++-- x/bundles/types/params.pb.go | 50 ++-- x/bundles/types/query.pb.go | 68 ++--- x/bundles/types/query.pb.gw.go | 2 +- x/bundles/types/tx.pb.go | 182 ++++++------- x/delegation/types/delegation.pb.go | 122 ++++----- x/delegation/types/events.pb.go | 104 ++++---- x/delegation/types/genesis.pb.go | 68 ++--- x/delegation/types/params.pb.go | 56 ++-- x/delegation/types/query.pb.go | 70 +++-- x/delegation/types/query.pb.gw.go | 2 +- x/delegation/types/tx.pb.go | 143 +++++----- x/funders/types/events.pb.go | 96 +++---- x/funders/types/funders.pb.go | 71 +++-- x/funders/types/genesis.pb.go | 52 ++-- x/funders/types/params.pb.go | 43 ++- x/funders/types/query.pb.go | 68 ++--- x/funders/types/query.pb.gw.go | 2 +- x/funders/types/tx.pb.go | 152 +++++------ x/global/types/events.pb.go | 44 ++-- x/global/types/genesis.pb.go | 39 ++- x/global/types/global.pb.go | 79 +++--- x/global/types/query.pb.go | 58 ++-- x/global/types/query.pb.gw.go | 2 +- x/global/types/tx.pb.go | 68 ++--- x/pool/types/events.pb.go | 142 +++++----- x/pool/types/genesis.pb.go | 46 ++-- x/pool/types/params.pb.go | 47 ++-- x/pool/types/pool.pb.go | 128 ++++----- x/pool/types/query.pb.go | 58 ++-- x/pool/types/query.pb.gw.go | 2 +- x/pool/types/tx.pb.go | 209 ++++++++------- x/query/types/account.pb.go | 191 +++++++------- x/query/types/account.pb.gw.go | 2 +- x/query/types/bundles.pb.go | 248 +++++++++--------- x/query/types/bundles.pb.gw.go | 2 +- x/query/types/delegation.pb.go | 152 ++++++----- x/query/types/delegation.pb.gw.go | 2 +- x/query/types/funders.pb.go | 208 +++++++-------- x/query/types/funders.pb.gw.go | 2 +- x/query/types/params.pb.go | 82 +++--- x/query/types/params.pb.gw.go | 2 +- x/query/types/pools.pb.go | 140 +++++----- x/query/types/pools.pb.gw.go | 2 +- x/query/types/query.pb.go | 135 +++++----- x/query/types/stakers.pb.go | 170 ++++++------ x/query/types/stakers.pb.gw.go | 2 +- x/stakers/types/events.pb.go | 100 +++---- x/stakers/types/genesis.pb.go | 67 +++-- x/stakers/types/params.pb.go | 40 +-- x/stakers/types/query.pb.go | 68 ++--- x/stakers/types/query.pb.gw.go | 2 +- x/stakers/types/stakers.pb.go | 94 ++++--- x/stakers/types/tx.pb.go | 196 +++++++------- x/team/types/events.pb.go | 73 +++--- x/team/types/genesis.pb.go | 47 ++-- x/team/types/module.pulsar.go | 82 +++--- x/team/types/query.pb.go | 232 ++++++++-------- x/team/types/query.pb.gw.go | 2 +- x/team/types/team.pb.go | 65 +++-- x/team/types/tx.pb.go | 150 +++++------ 114 files changed, 2728 insertions(+), 2759 deletions(-) rename proto/kyve/bundles/{v1beta1 => types}/bundles.proto (99%) rename proto/kyve/bundles/{v1beta1 => types}/events.proto (94%) rename proto/kyve/bundles/{v1beta1 => types}/genesis.proto (86%) rename proto/kyve/bundles/{v1beta1 => types}/params.proto (95%) rename proto/kyve/bundles/{v1beta1 => types}/query.proto (90%) rename proto/kyve/bundles/{v1beta1 => types}/tx.proto (99%) rename proto/kyve/delegation/{v1beta1 => types}/delegation.proto (99%) rename proto/kyve/delegation/{v1beta1 => types}/events.proto (90%) rename proto/kyve/delegation/{v1beta1 => types}/genesis.proto (89%) rename proto/kyve/delegation/{v1beta1 => types}/params.proto (96%) rename proto/kyve/delegation/{v1beta1 => types}/query.proto (91%) rename proto/kyve/delegation/{v1beta1 => types}/tx.proto (98%) rename proto/kyve/funders/{v1beta1 => types}/events.proto (97%) rename proto/kyve/funders/{v1beta1 => types}/funders.proto (98%) rename proto/kyve/funders/{v1beta1 => types}/genesis.proto (51%) rename proto/kyve/funders/{v1beta1 => types}/params.proto (95%) rename proto/kyve/funders/{v1beta1 => types}/query.proto (90%) rename proto/kyve/funders/{v1beta1 => types}/tx.proto (99%) rename proto/kyve/global/{v1beta1 => types}/events.proto (66%) rename proto/kyve/global/{v1beta1 => types}/genesis.proto (81%) rename proto/kyve/global/{v1beta1 => types}/global.proto (98%) rename proto/kyve/global/{v1beta1 => types}/query.proto (90%) rename proto/kyve/global/{v1beta1 => types}/tx.proto (97%) rename proto/kyve/pool/{v1beta1 => types}/events.proto (95%) rename proto/kyve/pool/{v1beta1 => types}/genesis.proto (64%) rename proto/kyve/pool/{v1beta1 => types}/params.proto (95%) rename proto/kyve/pool/{v1beta1 => types}/pool.proto (99%) rename proto/kyve/pool/{v1beta1 => types}/query.proto (91%) rename proto/kyve/pool/{v1beta1 => types}/tx.proto (99%) rename proto/kyve/query/{v1beta1 => types}/account.proto (96%) rename proto/kyve/query/{v1beta1 => types}/bundles.proto (99%) rename proto/kyve/query/{v1beta1 => types}/delegation.proto (98%) rename proto/kyve/query/{v1beta1 => types}/funders.proto (99%) rename proto/kyve/query/{v1beta1 => types}/params.proto (54%) rename proto/kyve/query/{v1beta1 => types}/pools.proto (85%) rename proto/kyve/query/{v1beta1 => types}/query.proto (97%) rename proto/kyve/query/{v1beta1 => types}/stakers.proto (95%) rename proto/kyve/stakers/{v1beta1 => types}/events.proto (91%) rename proto/kyve/stakers/{v1beta1 => types}/genesis.proto (88%) rename proto/kyve/stakers/{v1beta1 => types}/params.proto (90%) rename proto/kyve/stakers/{v1beta1 => types}/query.proto (90%) rename proto/kyve/stakers/{v1beta1 => types}/stakers.proto (99%) rename proto/kyve/stakers/{v1beta1 => types}/tx.proto (99%) rename proto/kyve/team/{v1beta1 => types}/events.proto (99%) rename proto/kyve/team/{v1beta1 => types}/genesis.proto (86%) rename proto/kyve/team/{v1beta1 => types}/query.proto (96%) rename proto/kyve/team/{v1beta1 => types}/team.proto (97%) rename proto/kyve/team/{v1beta1 => types}/tx.proto (99%) diff --git a/docs/config.json b/docs/config.json index 40381d27..eb83614e 100644 --- a/docs/config.json +++ b/docs/config.json @@ -7,7 +7,7 @@ }, "apis": [ { - "url": "./tmp-swagger-gen/kyve/bundles/v1beta1/query.swagger.json", + "url": "./tmp-swagger-gen/kyve/bundles/types/query.swagger.json", "operationIds": { "rename": { "Params": "BundlesParams" @@ -20,7 +20,7 @@ } }, { - "url": "./tmp-swagger-gen/kyve/delegation/v1beta1/query.swagger.json", + "url": "./tmp-swagger-gen/kyve/delegation/types/query.swagger.json", "operationIds": { "rename": { "Params": "DelegationParams" @@ -33,7 +33,7 @@ } }, { - "url": "./tmp-swagger-gen/kyve/global/v1beta1/query.swagger.json", + "url": "./tmp-swagger-gen/kyve/global/types/query.swagger.json", "operationIds": { "rename": { "Params": "GlobalParams" @@ -46,31 +46,31 @@ } }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/account.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/account.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/bundles.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/bundles.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/delegation.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/delegation.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/params.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/params.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/pools.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/pools.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/query.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/query.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/stakers.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/stakers.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/query/v1beta1/funders.swagger.json" + "url": "./tmp-swagger-gen/kyve/query/types/funders.swagger.json" }, { - "url": "./tmp-swagger-gen/kyve/stakers/v1beta1/query.swagger.json", + "url": "./tmp-swagger-gen/kyve/stakers/types/query.swagger.json", "operationIds": { "rename": { "Params": "StakersParams" @@ -83,7 +83,7 @@ } }, { - "url": "./tmp-swagger-gen/kyve/team/v1beta1/query.swagger.json", + "url": "./tmp-swagger-gen/kyve/team/types/query.swagger.json", "operationIds": { "rename": { "Params": "TeamParams" diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 8b1374fa..13ff0bc8 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -1078,7 +1078,7 @@ paths: funded ... pagination defines the pagination in the response. - cosmos.base.query.v1beta1.PageResponse pagination = 2; + cosmos.base.query.types.PageResponse pagination = 2; description: >- QueryAccountFundedListResponse is the response type for the Query/AccountFundedList RPC method. @@ -1279,7 +1279,7 @@ paths: address ... pagination defines an optional pagination for the request. - cosmos.base.query.v1beta1.PageRequest pagination = 2; + cosmos.base.query.types.PageRequest pagination = 2; in: path required: true type: string diff --git a/proto/kyve/bundles/v1beta1/bundles.proto b/proto/kyve/bundles/types/bundles.proto similarity index 99% rename from proto/kyve/bundles/v1beta1/bundles.proto rename to proto/kyve/bundles/types/bundles.proto index 8c50f54a..d8443876 100644 --- a/proto/kyve/bundles/v1beta1/bundles.proto +++ b/proto/kyve/bundles/types/bundles.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/bundles/v1beta1/events.proto b/proto/kyve/bundles/types/events.proto similarity index 94% rename from proto/kyve/bundles/v1beta1/events.proto rename to proto/kyve/bundles/types/events.proto index 749c9e97..6ad1f7a0 100644 --- a/proto/kyve/bundles/v1beta1/events.proto +++ b/proto/kyve/bundles/types/events.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "gogoproto/gogo.proto"; -import "kyve/bundles/v1beta1/bundles.proto"; -import "kyve/bundles/v1beta1/params.proto"; -import "kyve/bundles/v1beta1/tx.proto"; +import "kyve/bundles/types/bundles.proto"; +import "kyve/bundles/types/params.proto"; +import "kyve/bundles/types/tx.proto"; option go_package = "github.com/KYVENetwork/chain/x/bundles/types"; @@ -13,9 +13,9 @@ option go_package = "github.com/KYVENetwork/chain/x/bundles/types"; // emitted_by: MsgUpdateParams message EventUpdateParams { // old_params is the module's old parameters. - kyve.bundles.v1beta1.Params old_params = 1 [(gogoproto.nullable) = false]; + kyve.bundles.types.Params old_params = 1 [(gogoproto.nullable) = false]; // new_params is the module's new parameters. - kyve.bundles.v1beta1.Params new_params = 2 [(gogoproto.nullable) = false]; + kyve.bundles.types.Params new_params = 2 [(gogoproto.nullable) = false]; // payload is the parameter updates that were performed. string payload = 3; } diff --git a/proto/kyve/bundles/v1beta1/genesis.proto b/proto/kyve/bundles/types/genesis.proto similarity index 86% rename from proto/kyve/bundles/v1beta1/genesis.proto rename to proto/kyve/bundles/types/genesis.proto index 8d4d51b3..fb106d07 100644 --- a/proto/kyve/bundles/v1beta1/genesis.proto +++ b/proto/kyve/bundles/types/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "gogoproto/gogo.proto"; -import "kyve/bundles/v1beta1/bundles.proto"; -import "kyve/bundles/v1beta1/params.proto"; +import "kyve/bundles/types/bundles.proto"; +import "kyve/bundles/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/bundles/types"; diff --git a/proto/kyve/bundles/v1beta1/params.proto b/proto/kyve/bundles/types/params.proto similarity index 95% rename from proto/kyve/bundles/v1beta1/params.proto rename to proto/kyve/bundles/types/params.proto index a5255c55..abe30f72 100644 --- a/proto/kyve/bundles/v1beta1/params.proto +++ b/proto/kyve/bundles/types/params.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/bundles/v1beta1/query.proto b/proto/kyve/bundles/types/query.proto similarity index 90% rename from proto/kyve/bundles/v1beta1/query.proto rename to proto/kyve/bundles/types/query.proto index ba64d1e0..6fb376d9 100644 --- a/proto/kyve/bundles/v1beta1/query.proto +++ b/proto/kyve/bundles/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/bundles/v1beta1/params.proto"; +import "kyve/bundles/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/bundles/types"; diff --git a/proto/kyve/bundles/v1beta1/tx.proto b/proto/kyve/bundles/types/tx.proto similarity index 99% rename from proto/kyve/bundles/v1beta1/tx.proto rename to proto/kyve/bundles/types/tx.proto index 33990071..aef20624 100644 --- a/proto/kyve/bundles/v1beta1/tx.proto +++ b/proto/kyve/bundles/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.bundles.v1beta1; +package kyve.bundles.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/delegation/v1beta1/delegation.proto b/proto/kyve/delegation/types/delegation.proto similarity index 99% rename from proto/kyve/delegation/v1beta1/delegation.proto rename to proto/kyve/delegation/types/delegation.proto index 566e0084..d9bbe235 100644 --- a/proto/kyve/delegation/v1beta1/delegation.proto +++ b/proto/kyve/delegation/types/delegation.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/delegation/v1beta1/events.proto b/proto/kyve/delegation/types/events.proto similarity index 90% rename from proto/kyve/delegation/v1beta1/events.proto rename to proto/kyve/delegation/types/events.proto index 8cdc5593..c1a418df 100644 --- a/proto/kyve/delegation/v1beta1/events.proto +++ b/proto/kyve/delegation/types/events.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "gogoproto/gogo.proto"; -import "kyve/delegation/v1beta1/delegation.proto"; -import "kyve/delegation/v1beta1/params.proto"; +import "kyve/delegation/types/delegation.proto"; +import "kyve/delegation/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/delegation/types"; @@ -12,9 +12,9 @@ option go_package = "github.com/KYVENetwork/chain/x/delegation/types"; // emitted_by: MsgUpdateParams message EventUpdateParams { // old_params is the module's old parameters. - kyve.delegation.v1beta1.Params old_params = 1 [(gogoproto.nullable) = false]; + kyve.delegation.types.Params old_params = 1 [(gogoproto.nullable) = false]; // new_params is the module's new parameters. - kyve.delegation.v1beta1.Params new_params = 2 [(gogoproto.nullable) = false]; + kyve.delegation.types.Params new_params = 2 [(gogoproto.nullable) = false]; // payload is the parameter updates that were performed. string payload = 3; } diff --git a/proto/kyve/delegation/v1beta1/genesis.proto b/proto/kyve/delegation/types/genesis.proto similarity index 89% rename from proto/kyve/delegation/v1beta1/genesis.proto rename to proto/kyve/delegation/types/genesis.proto index 4038bdc7..6c7f48e5 100644 --- a/proto/kyve/delegation/v1beta1/genesis.proto +++ b/proto/kyve/delegation/types/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "gogoproto/gogo.proto"; -import "kyve/delegation/v1beta1/delegation.proto"; -import "kyve/delegation/v1beta1/params.proto"; +import "kyve/delegation/types/delegation.proto"; +import "kyve/delegation/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/delegation/types"; diff --git a/proto/kyve/delegation/v1beta1/params.proto b/proto/kyve/delegation/types/params.proto similarity index 96% rename from proto/kyve/delegation/v1beta1/params.proto rename to proto/kyve/delegation/types/params.proto index 7d16b289..9dde1cb9 100644 --- a/proto/kyve/delegation/v1beta1/params.proto +++ b/proto/kyve/delegation/types/params.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/delegation/v1beta1/query.proto b/proto/kyve/delegation/types/query.proto similarity index 91% rename from proto/kyve/delegation/v1beta1/query.proto rename to proto/kyve/delegation/types/query.proto index 99ac0940..0fa6e3b5 100644 --- a/proto/kyve/delegation/v1beta1/query.proto +++ b/proto/kyve/delegation/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/delegation/v1beta1/params.proto"; +import "kyve/delegation/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/delegation/types"; diff --git a/proto/kyve/delegation/v1beta1/tx.proto b/proto/kyve/delegation/types/tx.proto similarity index 98% rename from proto/kyve/delegation/v1beta1/tx.proto rename to proto/kyve/delegation/types/tx.proto index 64b98610..63e8db98 100644 --- a/proto/kyve/delegation/v1beta1/tx.proto +++ b/proto/kyve/delegation/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.delegation.v1beta1; +package kyve.delegation.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/funders/v1beta1/events.proto b/proto/kyve/funders/types/events.proto similarity index 97% rename from proto/kyve/funders/v1beta1/events.proto rename to proto/kyve/funders/types/events.proto index a41f62d6..c8717d94 100644 --- a/proto/kyve/funders/v1beta1/events.proto +++ b/proto/kyve/funders/types/events.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; import "gogoproto/gogo.proto"; -import "kyve/funders/v1beta1/params.proto"; +import "kyve/funders/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/funders/types"; diff --git a/proto/kyve/funders/v1beta1/funders.proto b/proto/kyve/funders/types/funders.proto similarity index 98% rename from proto/kyve/funders/v1beta1/funders.proto rename to proto/kyve/funders/types/funders.proto index 13867c80..9583092d 100644 --- a/proto/kyve/funders/v1beta1/funders.proto +++ b/proto/kyve/funders/types/funders.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; //import "gogoproto/gogo.proto"; diff --git a/proto/kyve/funders/v1beta1/genesis.proto b/proto/kyve/funders/types/genesis.proto similarity index 51% rename from proto/kyve/funders/v1beta1/genesis.proto rename to proto/kyve/funders/types/genesis.proto index f0686f39..49629441 100644 --- a/proto/kyve/funders/v1beta1/genesis.proto +++ b/proto/kyve/funders/types/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; import "gogoproto/gogo.proto"; -import "kyve/funders/v1beta1/funders.proto"; -import "kyve/funders/v1beta1/params.proto"; +import "kyve/funders/types/funders.proto"; +import "kyve/funders/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/funders/types"; @@ -13,9 +13,9 @@ message GenesisState { // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // funder_list ... - repeated kyve.funders.v1beta1.Funder funder_list = 2 [(gogoproto.nullable) = false]; + repeated kyve.funders.types.Funder funder_list = 2 [(gogoproto.nullable) = false]; // funding_list ... - repeated kyve.funders.v1beta1.Funding funding_list = 3 [(gogoproto.nullable) = false]; + repeated kyve.funders.types.Funding funding_list = 3 [(gogoproto.nullable) = false]; // funding_state ... - repeated kyve.funders.v1beta1.FundingState funding_state_list = 4 [(gogoproto.nullable) = false]; + repeated kyve.funders.types.FundingState funding_state_list = 4 [(gogoproto.nullable) = false]; } diff --git a/proto/kyve/funders/v1beta1/params.proto b/proto/kyve/funders/types/params.proto similarity index 95% rename from proto/kyve/funders/v1beta1/params.proto rename to proto/kyve/funders/types/params.proto index df0acccc..d3284888 100644 --- a/proto/kyve/funders/v1beta1/params.proto +++ b/proto/kyve/funders/types/params.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; option go_package = "github.com/KYVENetwork/chain/x/funders/types"; diff --git a/proto/kyve/funders/v1beta1/query.proto b/proto/kyve/funders/types/query.proto similarity index 90% rename from proto/kyve/funders/v1beta1/query.proto rename to proto/kyve/funders/types/query.proto index 58d13403..cf2d3528 100644 --- a/proto/kyve/funders/v1beta1/query.proto +++ b/proto/kyve/funders/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/funders/v1beta1/params.proto"; +import "kyve/funders/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/funders/types"; diff --git a/proto/kyve/funders/v1beta1/tx.proto b/proto/kyve/funders/types/tx.proto similarity index 99% rename from proto/kyve/funders/v1beta1/tx.proto rename to proto/kyve/funders/types/tx.proto index 4b776eff..99298e88 100644 --- a/proto/kyve/funders/v1beta1/tx.proto +++ b/proto/kyve/funders/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.funders.v1beta1; +package kyve.funders.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/global/v1beta1/events.proto b/proto/kyve/global/types/events.proto similarity index 66% rename from proto/kyve/global/v1beta1/events.proto rename to proto/kyve/global/types/events.proto index eab53058..8f091f05 100644 --- a/proto/kyve/global/v1beta1/events.proto +++ b/proto/kyve/global/types/events.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.global.v1beta1; +package kyve.global.types; import "gogoproto/gogo.proto"; -import "kyve/global/v1beta1/global.proto"; +import "kyve/global/types/global.proto"; option go_package = "github.com/KYVENetwork/chain/x/global/types"; @@ -11,9 +11,9 @@ option go_package = "github.com/KYVENetwork/chain/x/global/types"; // emitted_by: MsgUpdateParams message EventUpdateParams { // old_params is the module's old parameters. - kyve.global.v1beta1.Params old_params = 1 [(gogoproto.nullable) = false]; + kyve.global.types.Params old_params = 1 [(gogoproto.nullable) = false]; // new_params is the module's new parameters. - kyve.global.v1beta1.Params new_params = 2 [(gogoproto.nullable) = false]; + kyve.global.types.Params new_params = 2 [(gogoproto.nullable) = false]; // payload is the parameter updates that were performed. string payload = 3; } diff --git a/proto/kyve/global/v1beta1/genesis.proto b/proto/kyve/global/types/genesis.proto similarity index 81% rename from proto/kyve/global/v1beta1/genesis.proto rename to proto/kyve/global/types/genesis.proto index 5eabbce5..cfe214be 100644 --- a/proto/kyve/global/v1beta1/genesis.proto +++ b/proto/kyve/global/types/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.global.v1beta1; +package kyve.global.types; import "gogoproto/gogo.proto"; -import "kyve/global/v1beta1/global.proto"; +import "kyve/global/types/global.proto"; option go_package = "github.com/KYVENetwork/chain/x/global/types"; diff --git a/proto/kyve/global/v1beta1/global.proto b/proto/kyve/global/types/global.proto similarity index 98% rename from proto/kyve/global/v1beta1/global.proto rename to proto/kyve/global/types/global.proto index 5dc16915..0ad77c57 100644 --- a/proto/kyve/global/v1beta1/global.proto +++ b/proto/kyve/global/types/global.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.global.v1beta1; +package kyve.global.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/global/v1beta1/query.proto b/proto/kyve/global/types/query.proto similarity index 90% rename from proto/kyve/global/v1beta1/query.proto rename to proto/kyve/global/types/query.proto index 1bf65f0d..68c89948 100644 --- a/proto/kyve/global/v1beta1/query.proto +++ b/proto/kyve/global/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.global.v1beta1; +package kyve.global.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/global/v1beta1/global.proto"; +import "kyve/global/types/global.proto"; option go_package = "github.com/KYVENetwork/chain/x/global/types"; diff --git a/proto/kyve/global/v1beta1/tx.proto b/proto/kyve/global/types/tx.proto similarity index 97% rename from proto/kyve/global/v1beta1/tx.proto rename to proto/kyve/global/types/tx.proto index c5c9077a..810d64db 100644 --- a/proto/kyve/global/v1beta1/tx.proto +++ b/proto/kyve/global/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.global.v1beta1; +package kyve.global.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/pool/v1beta1/events.proto b/proto/kyve/pool/types/events.proto similarity index 95% rename from proto/kyve/pool/v1beta1/events.proto rename to proto/kyve/pool/types/events.proto index 2c0d83fc..8396e9bd 100644 --- a/proto/kyve/pool/v1beta1/events.proto +++ b/proto/kyve/pool/types/events.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "gogoproto/gogo.proto"; -import "kyve/pool/v1beta1/params.proto"; +import "kyve/pool/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/pool/types"; @@ -11,9 +11,9 @@ option go_package = "github.com/KYVENetwork/chain/x/pool/types"; // emitted_by: MsgUpdateParams message EventUpdateParams { // old_params is the module's old parameters. - kyve.pool.v1beta1.Params old_params = 1 [(gogoproto.nullable) = false]; + kyve.pool.types.Params old_params = 1 [(gogoproto.nullable) = false]; // new_params is the module's new parameters. - kyve.pool.v1beta1.Params new_params = 2 [(gogoproto.nullable) = false]; + kyve.pool.types.Params new_params = 2 [(gogoproto.nullable) = false]; // payload is the parameter updates that were performed. string payload = 3; } diff --git a/proto/kyve/pool/v1beta1/genesis.proto b/proto/kyve/pool/types/genesis.proto similarity index 64% rename from proto/kyve/pool/v1beta1/genesis.proto rename to proto/kyve/pool/types/genesis.proto index ca5286ab..084e787b 100644 --- a/proto/kyve/pool/v1beta1/genesis.proto +++ b/proto/kyve/pool/types/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "gogoproto/gogo.proto"; -import "kyve/pool/v1beta1/params.proto"; -import "kyve/pool/v1beta1/pool.proto"; +import "kyve/pool/types/params.proto"; +import "kyve/pool/types/pool.proto"; option go_package = "github.com/KYVENetwork/chain/x/pool/types"; @@ -13,7 +13,7 @@ message GenesisState { // params ... Params params = 1 [(gogoproto.nullable) = false]; // pool_list ... - repeated kyve.pool.v1beta1.Pool pool_list = 2 [(gogoproto.nullable) = false]; + repeated kyve.pool.types.Pool pool_list = 2 [(gogoproto.nullable) = false]; // pool_count ... uint64 pool_count = 3; } diff --git a/proto/kyve/pool/v1beta1/params.proto b/proto/kyve/pool/types/params.proto similarity index 95% rename from proto/kyve/pool/v1beta1/params.proto rename to proto/kyve/pool/types/params.proto index 9f810f7f..43a68f37 100644 --- a/proto/kyve/pool/v1beta1/params.proto +++ b/proto/kyve/pool/types/params.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/pool/v1beta1/pool.proto b/proto/kyve/pool/types/pool.proto similarity index 99% rename from proto/kyve/pool/v1beta1/pool.proto rename to proto/kyve/pool/types/pool.proto index c82e9305..c611a801 100644 --- a/proto/kyve/pool/v1beta1/pool.proto +++ b/proto/kyve/pool/types/pool.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/pool/v1beta1/query.proto b/proto/kyve/pool/types/query.proto similarity index 91% rename from proto/kyve/pool/v1beta1/query.proto rename to proto/kyve/pool/types/query.proto index 8589b372..67cc4f63 100644 --- a/proto/kyve/pool/v1beta1/query.proto +++ b/proto/kyve/pool/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/pool/v1beta1/params.proto"; +import "kyve/pool/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/pool/types"; diff --git a/proto/kyve/pool/v1beta1/tx.proto b/proto/kyve/pool/types/tx.proto similarity index 99% rename from proto/kyve/pool/v1beta1/tx.proto rename to proto/kyve/pool/types/tx.proto index f211f738..2316655e 100644 --- a/proto/kyve/pool/v1beta1/tx.proto +++ b/proto/kyve/pool/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.pool.v1beta1; +package kyve.pool.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/query/v1beta1/account.proto b/proto/kyve/query/types/account.proto similarity index 96% rename from proto/kyve/query/v1beta1/account.proto rename to proto/kyve/query/types/account.proto index cb0dd48a..37cfb549 100644 --- a/proto/kyve/query/v1beta1/account.proto +++ b/proto/kyve/query/types/account.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/query/v1beta1/query.proto"; +import "kyve/query/types/query.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; @@ -99,7 +99,7 @@ message QueryAccountFundedListRequest { // address ... string address = 1; // pagination defines an optional pagination for the request. - // cosmos.base.query.v1beta1.PageRequest pagination = 2; + // cosmos.base.query.types.PageRequest pagination = 2; } // QueryAccountFundedListResponse is the response type for the Query/AccountFundedList RPC method. @@ -107,7 +107,7 @@ message QueryAccountFundedListResponse { // funded ... repeated Funded funded = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - // cosmos.base.query.v1beta1.PageResponse pagination = 2; + // cosmos.base.query.types.PageResponse pagination = 2; } // Funded ... diff --git a/proto/kyve/query/v1beta1/bundles.proto b/proto/kyve/query/types/bundles.proto similarity index 99% rename from proto/kyve/query/v1beta1/bundles.proto rename to proto/kyve/query/types/bundles.proto index 56f5f900..2cca1ff8 100644 --- a/proto/kyve/query/v1beta1/bundles.proto +++ b/proto/kyve/query/types/bundles.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/query/v1beta1/delegation.proto b/proto/kyve/query/types/delegation.proto similarity index 98% rename from proto/kyve/query/v1beta1/delegation.proto rename to proto/kyve/query/types/delegation.proto index b57a80e7..bc970da1 100644 --- a/proto/kyve/query/v1beta1/delegation.proto +++ b/proto/kyve/query/types/delegation.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/query/v1beta1/query.proto"; +import "kyve/query/types/query.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; diff --git a/proto/kyve/query/v1beta1/funders.proto b/proto/kyve/query/types/funders.proto similarity index 99% rename from proto/kyve/query/v1beta1/funders.proto rename to proto/kyve/query/types/funders.proto index 54bd18c3..ada795c0 100644 --- a/proto/kyve/query/v1beta1/funders.proto +++ b/proto/kyve/query/types/funders.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/query/v1beta1/params.proto b/proto/kyve/query/types/params.proto similarity index 54% rename from proto/kyve/query/v1beta1/params.proto rename to proto/kyve/query/types/params.proto index a90d05c3..a945398b 100644 --- a/proto/kyve/query/v1beta1/params.proto +++ b/proto/kyve/query/types/params.proto @@ -1,16 +1,15 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; -// TODO change gov import import "cosmos/gov/v1/gov.proto"; import "google/api/annotations.proto"; -import "kyve/bundles/v1beta1/params.proto"; -import "kyve/delegation/v1beta1/params.proto"; -import "kyve/funders/v1beta1/params.proto"; -import "kyve/global/v1beta1/global.proto"; -import "kyve/pool/v1beta1/params.proto"; -import "kyve/stakers/v1beta1/params.proto"; +import "kyve/bundles/types/params.proto"; +import "kyve/delegation/types/params.proto"; +import "kyve/funders/types/params.proto"; +import "kyve/global/types/global.proto"; +import "kyve/pool/types/params.proto"; +import "kyve/stakers/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; @@ -32,17 +31,17 @@ message QueryParamsRequest {} // QueryParamsResponse ... message QueryParamsResponse { // bundles_params ... - kyve.bundles.v1beta1.Params bundles_params = 1; + kyve.bundles.types.Params bundles_params = 1; // delegation_params ... - kyve.delegation.v1beta1.Params delegation_params = 2; + kyve.delegation.types.Params delegation_params = 2; // global_params ... - kyve.global.v1beta1.Params global_params = 3; + kyve.global.types.Params global_params = 3; // gov_params ... cosmos.gov.v1.Params gov_params = 4; // stakers_params ... - kyve.stakers.v1beta1.Params stakers_params = 5; + kyve.stakers.types.Params stakers_params = 5; // pool_params ... - kyve.pool.v1beta1.Params pool_params = 6; + kyve.pool.types.Params pool_params = 6; // funders_params ... - kyve.funders.v1beta1.Params funders_params = 7; + kyve.funders.types.Params funders_params = 7; } diff --git a/proto/kyve/query/v1beta1/pools.proto b/proto/kyve/query/types/pools.proto similarity index 85% rename from proto/kyve/query/v1beta1/pools.proto rename to proto/kyve/query/types/pools.proto index 596df84e..44dbe00a 100644 --- a/proto/kyve/query/v1beta1/pools.proto +++ b/proto/kyve/query/types/pools.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/bundles/v1beta1/bundles.proto"; -import "kyve/funders/v1beta1/funders.proto"; -import "kyve/pool/v1beta1/pool.proto"; +import "kyve/bundles/types/bundles.proto"; +import "kyve/funders/types/funders.proto"; +import "kyve/pool/types/pool.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; @@ -55,9 +55,9 @@ message PoolResponse { // id ... uint64 id = 1; // data ... - kyve.pool.v1beta1.Pool data = 2; + kyve.pool.types.Pool data = 2; // bundle_proposal ... - kyve.bundles.v1beta1.BundleProposal bundle_proposal = 3; + kyve.bundles.types.BundleProposal bundle_proposal = 3; // stakers ... repeated string stakers = 4; // total_stake ... @@ -65,13 +65,13 @@ message PoolResponse { // total_delegation ... uint64 total_delegation = 6; // status ... - kyve.pool.v1beta1.PoolStatus status = 7; + kyve.pool.types.PoolStatus status = 7; // account ... string account = 8; // account_balance ... uint64 account_balance = 9; // funders ... - repeated kyve.funders.v1beta1.Funding fundings = 10; + repeated kyve.funders.types.Funding fundings = 10; } // ========= diff --git a/proto/kyve/query/v1beta1/query.proto b/proto/kyve/query/types/query.proto similarity index 97% rename from proto/kyve/query/v1beta1/query.proto rename to proto/kyve/query/types/query.proto index 1502ff68..31e5251d 100644 --- a/proto/kyve/query/v1beta1/query.proto +++ b/proto/kyve/query/types/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "gogoproto/gogo.proto"; -import "kyve/pool/v1beta1/pool.proto"; +import "kyve/pool/types/pool.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; @@ -53,7 +53,7 @@ message BasicPool { // status of the pool if pool is able // to produce bundles, etc. - kyve.pool.v1beta1.PoolStatus status = 9; + kyve.pool.types.PoolStatus status = 9; } // FullStaker aggregates information from the staker and its delegators diff --git a/proto/kyve/query/v1beta1/stakers.proto b/proto/kyve/query/types/stakers.proto similarity index 95% rename from proto/kyve/query/v1beta1/stakers.proto rename to proto/kyve/query/types/stakers.proto index 7bcfd3d5..ecec360d 100644 --- a/proto/kyve/query/v1beta1/stakers.proto +++ b/proto/kyve/query/types/stakers.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package kyve.query.v1beta1; +package kyve.query.types; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/query/v1beta1/query.proto"; -import "kyve/stakers/v1beta1/stakers.proto"; +import "kyve/query/types/query.proto"; +import "kyve/stakers/types/stakers.proto"; option go_package = "github.com/KYVENetwork/chain/x/query/types"; @@ -107,7 +107,7 @@ message StakerPoolResponse { // staker ... FullStaker staker = 1; // valaccount ... - kyve.stakers.v1beta1.Valaccount valaccount = 2; + kyve.stakers.types.Valaccount valaccount = 2; } // ========================= diff --git a/proto/kyve/stakers/v1beta1/events.proto b/proto/kyve/stakers/types/events.proto similarity index 91% rename from proto/kyve/stakers/v1beta1/events.proto rename to proto/kyve/stakers/types/events.proto index 82b6cd10..7ad2481b 100644 --- a/proto/kyve/stakers/v1beta1/events.proto +++ b/proto/kyve/stakers/types/events.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; import "gogoproto/gogo.proto"; -import "kyve/stakers/v1beta1/params.proto"; +import "kyve/stakers/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/stakers/types"; @@ -11,9 +11,9 @@ option go_package = "github.com/KYVENetwork/chain/x/stakers/types"; // emitted_by: MsgUpdateParams message EventUpdateParams { // old_params is the module's old parameters. - kyve.stakers.v1beta1.Params old_params = 1 [(gogoproto.nullable) = false]; + kyve.stakers.types.Params old_params = 1 [(gogoproto.nullable) = false]; // new_params is the module's new parameters. - kyve.stakers.v1beta1.Params new_params = 2 [(gogoproto.nullable) = false]; + kyve.stakers.types.Params new_params = 2 [(gogoproto.nullable) = false]; // payload is the parameter updates that were performed. string payload = 3; } diff --git a/proto/kyve/stakers/v1beta1/genesis.proto b/proto/kyve/stakers/types/genesis.proto similarity index 88% rename from proto/kyve/stakers/v1beta1/genesis.proto rename to proto/kyve/stakers/types/genesis.proto index 7c85c711..36f50441 100644 --- a/proto/kyve/stakers/v1beta1/genesis.proto +++ b/proto/kyve/stakers/types/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; import "gogoproto/gogo.proto"; -import "kyve/stakers/v1beta1/params.proto"; -import "kyve/stakers/v1beta1/stakers.proto"; +import "kyve/stakers/types/params.proto"; +import "kyve/stakers/types/stakers.proto"; option go_package = "github.com/KYVENetwork/chain/x/stakers/types"; diff --git a/proto/kyve/stakers/v1beta1/params.proto b/proto/kyve/stakers/types/params.proto similarity index 90% rename from proto/kyve/stakers/v1beta1/params.proto rename to proto/kyve/stakers/types/params.proto index 551c9e54..bc638639 100644 --- a/proto/kyve/stakers/v1beta1/params.proto +++ b/proto/kyve/stakers/types/params.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; option go_package = "github.com/KYVENetwork/chain/x/stakers/types"; diff --git a/proto/kyve/stakers/v1beta1/query.proto b/proto/kyve/stakers/types/query.proto similarity index 90% rename from proto/kyve/stakers/v1beta1/query.proto rename to proto/kyve/stakers/types/query.proto index ed91f8e7..be9d2911 100644 --- a/proto/kyve/stakers/v1beta1/query.proto +++ b/proto/kyve/stakers/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/stakers/v1beta1/params.proto"; +import "kyve/stakers/types/params.proto"; option go_package = "github.com/KYVENetwork/chain/x/stakers/types"; diff --git a/proto/kyve/stakers/v1beta1/stakers.proto b/proto/kyve/stakers/types/stakers.proto similarity index 99% rename from proto/kyve/stakers/v1beta1/stakers.proto rename to proto/kyve/stakers/types/stakers.proto index b0ea821f..f91a9add 100644 --- a/proto/kyve/stakers/v1beta1/stakers.proto +++ b/proto/kyve/stakers/types/stakers.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; import "gogoproto/gogo.proto"; diff --git a/proto/kyve/stakers/v1beta1/tx.proto b/proto/kyve/stakers/types/tx.proto similarity index 99% rename from proto/kyve/stakers/v1beta1/tx.proto rename to proto/kyve/stakers/types/tx.proto index 333d2049..3be59217 100644 --- a/proto/kyve/stakers/v1beta1/tx.proto +++ b/proto/kyve/stakers/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.stakers.v1beta1; +package kyve.stakers.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/kyve/team/v1beta1/events.proto b/proto/kyve/team/types/events.proto similarity index 99% rename from proto/kyve/team/v1beta1/events.proto rename to proto/kyve/team/types/events.proto index d26eedc3..265ab120 100644 --- a/proto/kyve/team/v1beta1/events.proto +++ b/proto/kyve/team/types/events.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.team.v1beta1; +package kyve.team.types; option go_package = "github.com/KYVENetwork/chain/x/team/types"; diff --git a/proto/kyve/team/v1beta1/genesis.proto b/proto/kyve/team/types/genesis.proto similarity index 86% rename from proto/kyve/team/v1beta1/genesis.proto rename to proto/kyve/team/types/genesis.proto index c6063605..1d7122e4 100644 --- a/proto/kyve/team/v1beta1/genesis.proto +++ b/proto/kyve/team/types/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package kyve.team.v1beta1; +package kyve.team.types; import "gogoproto/gogo.proto"; -import "kyve/team/v1beta1/team.proto"; +import "kyve/team/types/team.proto"; option go_package = "github.com/KYVENetwork/chain/x/team/types"; diff --git a/proto/kyve/team/types/module.proto b/proto/kyve/team/types/module.proto index 03ea93fc..c156bb1e 100644 --- a/proto/kyve/team/types/module.proto +++ b/proto/kyve/team/types/module.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.team.types; +package kyve.team; import "cosmos/app/v1alpha1/module.proto"; diff --git a/proto/kyve/team/v1beta1/query.proto b/proto/kyve/team/types/query.proto similarity index 96% rename from proto/kyve/team/v1beta1/query.proto rename to proto/kyve/team/types/query.proto index 5a535a31..fc8fe26e 100644 --- a/proto/kyve/team/v1beta1/query.proto +++ b/proto/kyve/team/types/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package kyve.team.v1beta1; +package kyve.team.types; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -import "kyve/team/v1beta1/team.proto"; +import "kyve/team/types/team.proto"; option go_package = "github.com/KYVENetwork/chain/x/team/types"; @@ -89,7 +89,7 @@ message QueryTeamVestingAccountsRequest {} // QueryAccountsResponse is response type for the Query/TeamVestingAccounts RPC method. message QueryTeamVestingAccountsResponse { // accounts holds all the team vesting accounts of this module. - repeated kyve.team.v1beta1.TeamVestingAccount accounts = 1 [(gogoproto.nullable) = false]; + repeated kyve.team.types.TeamVestingAccount accounts = 1 [(gogoproto.nullable) = false]; } // ========= @@ -105,7 +105,7 @@ message QueryTeamVestingAccountRequest { // QueryTeamVestingAccountResponse is the response type for the Query/TeamVestingAccount RPC method. message QueryTeamVestingAccountResponse { // account holds the requested team vesting account - kyve.team.v1beta1.TeamVestingAccount account = 1 [(gogoproto.nullable) = false]; + kyve.team.types.TeamVestingAccount account = 1 [(gogoproto.nullable) = false]; } // ========= diff --git a/proto/kyve/team/v1beta1/team.proto b/proto/kyve/team/types/team.proto similarity index 97% rename from proto/kyve/team/v1beta1/team.proto rename to proto/kyve/team/types/team.proto index df8ab1a0..4ebcedac 100644 --- a/proto/kyve/team/v1beta1/team.proto +++ b/proto/kyve/team/types/team.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.team.v1beta1; +package kyve.team.types; option go_package = "github.com/KYVENetwork/chain/x/team/types"; diff --git a/proto/kyve/team/v1beta1/tx.proto b/proto/kyve/team/types/tx.proto similarity index 99% rename from proto/kyve/team/v1beta1/tx.proto rename to proto/kyve/team/types/tx.proto index 9192c7ef..d4989757 100644 --- a/proto/kyve/team/v1beta1/tx.proto +++ b/proto/kyve/team/types/tx.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package kyve.team.v1beta1; +package kyve.team.types; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/x/bundles/types/bundles.pb.go b/x/bundles/types/bundles.pb.go index 1557b5ff..c3dde83f 100644 --- a/x/bundles/types/bundles.pb.go +++ b/x/bundles/types/bundles.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/bundles.proto +// source: kyve/bundles/types/bundles.proto package types @@ -65,7 +65,7 @@ func (x BundleStatus) String() string { } func (BundleStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{0} + return fileDescriptor_076307de319f1c0c, []int{0} } // BundleProposal represents the current bundle proposal @@ -109,7 +109,7 @@ func (m *BundleProposal) Reset() { *m = BundleProposal{} } func (m *BundleProposal) String() string { return proto.CompactTextString(m) } func (*BundleProposal) ProtoMessage() {} func (*BundleProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{0} + return fileDescriptor_076307de319f1c0c, []int{0} } func (m *BundleProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -287,7 +287,7 @@ func (m *FinalizedBundle) Reset() { *m = FinalizedBundle{} } func (m *FinalizedBundle) String() string { return proto.CompactTextString(m) } func (*FinalizedBundle) ProtoMessage() {} func (*FinalizedBundle) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{1} + return fileDescriptor_076307de319f1c0c, []int{1} } func (m *FinalizedBundle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -426,7 +426,7 @@ func (m *FinalizedAt) Reset() { *m = FinalizedAt{} } func (m *FinalizedAt) String() string { return proto.CompactTextString(m) } func (*FinalizedAt) ProtoMessage() {} func (*FinalizedAt) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{2} + return fileDescriptor_076307de319f1c0c, []int{2} } func (m *FinalizedAt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -481,7 +481,7 @@ func (m *StakeSecurity) Reset() { *m = StakeSecurity{} } func (m *StakeSecurity) String() string { return proto.CompactTextString(m) } func (*StakeSecurity) ProtoMessage() {} func (*StakeSecurity) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{3} + return fileDescriptor_076307de319f1c0c, []int{3} } func (m *StakeSecurity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -536,7 +536,7 @@ func (m *BundleVersionEntry) Reset() { *m = BundleVersionEntry{} } func (m *BundleVersionEntry) String() string { return proto.CompactTextString(m) } func (*BundleVersionEntry) ProtoMessage() {} func (*BundleVersionEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{4} + return fileDescriptor_076307de319f1c0c, []int{4} } func (m *BundleVersionEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -589,7 +589,7 @@ func (m *BundleVersionMap) Reset() { *m = BundleVersionMap{} } func (m *BundleVersionMap) String() string { return proto.CompactTextString(m) } func (*BundleVersionMap) ProtoMessage() {} func (*BundleVersionMap) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{5} + return fileDescriptor_076307de319f1c0c, []int{5} } func (m *BundleVersionMap) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -637,7 +637,7 @@ func (m *RoundRobinSingleValidatorProgress) Reset() { *m = RoundRobinSin func (m *RoundRobinSingleValidatorProgress) String() string { return proto.CompactTextString(m) } func (*RoundRobinSingleValidatorProgress) ProtoMessage() {} func (*RoundRobinSingleValidatorProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{6} + return fileDescriptor_076307de319f1c0c, []int{6} } func (m *RoundRobinSingleValidatorProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -692,7 +692,7 @@ func (m *RoundRobinProgress) Reset() { *m = RoundRobinProgress{} } func (m *RoundRobinProgress) String() string { return proto.CompactTextString(m) } func (*RoundRobinProgress) ProtoMessage() {} func (*RoundRobinProgress) Descriptor() ([]byte, []int) { - return fileDescriptor_889cf76d77a4de2b, []int{7} + return fileDescriptor_076307de319f1c0c, []int{7} } func (m *RoundRobinProgress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -736,81 +736,78 @@ func (m *RoundRobinProgress) GetProgressList() []*RoundRobinSingleValidatorProgr } func init() { - proto.RegisterEnum("kyve.bundles.v1beta1.BundleStatus", BundleStatus_name, BundleStatus_value) - proto.RegisterType((*BundleProposal)(nil), "kyve.bundles.v1beta1.BundleProposal") - proto.RegisterType((*FinalizedBundle)(nil), "kyve.bundles.v1beta1.FinalizedBundle") - proto.RegisterType((*FinalizedAt)(nil), "kyve.bundles.v1beta1.FinalizedAt") - proto.RegisterType((*StakeSecurity)(nil), "kyve.bundles.v1beta1.StakeSecurity") - proto.RegisterType((*BundleVersionEntry)(nil), "kyve.bundles.v1beta1.BundleVersionEntry") - proto.RegisterType((*BundleVersionMap)(nil), "kyve.bundles.v1beta1.BundleVersionMap") - proto.RegisterType((*RoundRobinSingleValidatorProgress)(nil), "kyve.bundles.v1beta1.RoundRobinSingleValidatorProgress") - proto.RegisterType((*RoundRobinProgress)(nil), "kyve.bundles.v1beta1.RoundRobinProgress") + proto.RegisterEnum("kyve.bundles.types.BundleStatus", BundleStatus_name, BundleStatus_value) + proto.RegisterType((*BundleProposal)(nil), "kyve.bundles.types.BundleProposal") + proto.RegisterType((*FinalizedBundle)(nil), "kyve.bundles.types.FinalizedBundle") + proto.RegisterType((*FinalizedAt)(nil), "kyve.bundles.types.FinalizedAt") + proto.RegisterType((*StakeSecurity)(nil), "kyve.bundles.types.StakeSecurity") + proto.RegisterType((*BundleVersionEntry)(nil), "kyve.bundles.types.BundleVersionEntry") + proto.RegisterType((*BundleVersionMap)(nil), "kyve.bundles.types.BundleVersionMap") + proto.RegisterType((*RoundRobinSingleValidatorProgress)(nil), "kyve.bundles.types.RoundRobinSingleValidatorProgress") + proto.RegisterType((*RoundRobinProgress)(nil), "kyve.bundles.types.RoundRobinProgress") } -func init() { - proto.RegisterFile("kyve/bundles/v1beta1/bundles.proto", fileDescriptor_889cf76d77a4de2b) -} +func init() { proto.RegisterFile("kyve/bundles/types/bundles.proto", fileDescriptor_076307de319f1c0c) } -var fileDescriptor_889cf76d77a4de2b = []byte{ - // 918 bytes of a gzipped FileDescriptorProto +var fileDescriptor_076307de319f1c0c = []byte{ + // 910 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xdd, 0x6e, 0x1a, 0x47, - 0x14, 0x66, 0x01, 0xf3, 0x73, 0x60, 0x09, 0x9d, 0xfc, 0x78, 0xed, 0xd4, 0x14, 0x13, 0x55, 0x42, - 0x55, 0x05, 0x8a, 0x7b, 0xd1, 0x6b, 0x1c, 0x40, 0xdd, 0xc6, 0x21, 0x74, 0x37, 0xa0, 0xa6, 0xaa, - 0xb4, 0x1a, 0xd8, 0x31, 0x8c, 0x0c, 0x3b, 0xab, 0xdd, 0x81, 0x18, 0x3f, 0x41, 0xa5, 0x4a, 0x55, - 0xdf, 0xa1, 0x7d, 0x8c, 0x3e, 0x40, 0x2f, 0x73, 0xd9, 0xcb, 0xca, 0x7e, 0x91, 0x6a, 0x66, 0x76, - 0x31, 0xc4, 0xb8, 0xcd, 0x4d, 0xef, 0x38, 0xdf, 0xf7, 0xcd, 0x99, 0xf3, 0xf3, 0x0d, 0x0b, 0xb5, - 0x8b, 0xd5, 0x92, 0x34, 0x47, 0x0b, 0xcf, 0x9d, 0x91, 0xb0, 0xb9, 0x7c, 0x3e, 0x22, 0x1c, 0x3f, - 0x8f, 0xe3, 0x86, 0x1f, 0x30, 0xce, 0xd0, 0x23, 0xa1, 0x69, 0xc4, 0x58, 0xa4, 0x39, 0x7c, 0x34, - 0x61, 0x13, 0x26, 0x05, 0x4d, 0xf1, 0x4b, 0x69, 0x6b, 0xbf, 0xa7, 0xa1, 0x74, 0x2a, 0x95, 0xfd, - 0x80, 0xf9, 0x2c, 0xc4, 0x33, 0xb4, 0x0f, 0x59, 0x9f, 0xb1, 0x99, 0x43, 0x5d, 0x43, 0xab, 0x6a, - 0xf5, 0xb4, 0x95, 0x11, 0xa1, 0xe9, 0xa2, 0x23, 0x80, 0x90, 0xb3, 0x00, 0x4f, 0x88, 0xe0, 0x92, - 0x55, 0xad, 0x9e, 0xb7, 0xf2, 0x11, 0x62, 0xba, 0xe8, 0x10, 0x72, 0x0b, 0x7f, 0xc6, 0xb0, 0x4b, - 0x02, 0x23, 0x25, 0xc9, 0x75, 0x8c, 0x9e, 0x81, 0xee, 0x91, 0x4b, 0xee, 0xac, 0x05, 0x69, 0x29, - 0x28, 0x0a, 0x70, 0x10, 0x8b, 0x9e, 0x42, 0xde, 0xc5, 0x1c, 0x3b, 0x21, 0xbd, 0x22, 0xc6, 0x9e, - 0xbc, 0x3a, 0x27, 0x00, 0x9b, 0x5e, 0x11, 0xf4, 0x19, 0x14, 0x54, 0x47, 0x8a, 0xce, 0x48, 0x1a, - 0x14, 0x24, 0x05, 0x8f, 0x21, 0xc3, 0x99, 0x73, 0x41, 0x56, 0x46, 0x56, 0xe6, 0xde, 0xe3, 0xec, - 0x25, 0x59, 0xa1, 0xcf, 0xa1, 0x14, 0x9f, 0x5b, 0xcc, 0xe7, 0x38, 0x58, 0x19, 0x39, 0x49, 0xeb, - 0xd1, 0x51, 0x05, 0xae, 0xef, 0x9e, 0xe2, 0x70, 0x6a, 0xe4, 0x55, 0xf5, 0x02, 0xf8, 0x06, 0x87, - 0x53, 0xd1, 0xf8, 0xc2, 0x77, 0x31, 0x27, 0xae, 0x83, 0xb9, 0x01, 0xf2, 0xea, 0x7c, 0x84, 0xb4, - 0x38, 0x3a, 0x86, 0xe2, 0x92, 0x71, 0x12, 0x84, 0xce, 0x12, 0xcf, 0xa8, 0x6b, 0x14, 0xaa, 0xa9, - 0x7a, 0xde, 0x2a, 0x28, 0x6c, 0x28, 0x20, 0x51, 0x45, 0x24, 0xa1, 0x9e, 0x12, 0x15, 0xa5, 0x48, - 0x57, 0xa8, 0xa9, 0xc0, 0x0d, 0x19, 0x1e, 0x85, 0x1c, 0x53, 0xcf, 0xd0, 0x37, 0x65, 0x2d, 0x05, - 0xa2, 0x03, 0xc8, 0x9d, 0x07, 0x6c, 0x2e, 0x9b, 0x2d, 0xc9, 0x5a, 0xb3, 0x22, 0x16, 0xed, 0x36, - 0xe0, 0x61, 0xbc, 0x23, 0x3f, 0x60, 0x4b, 0xea, 0x92, 0x40, 0x2c, 0xeb, 0x41, 0x55, 0xab, 0xeb, - 0xd6, 0x27, 0x11, 0xd5, 0x8f, 0x18, 0x53, 0xde, 0x38, 0x66, 0x73, 0x3f, 0x20, 0x61, 0x48, 0x99, - 0x27, 0xa4, 0x65, 0x29, 0xd5, 0x37, 0x50, 0xd3, 0xad, 0xfd, 0x92, 0x86, 0x07, 0x5d, 0xea, 0xe1, - 0x19, 0xbd, 0x22, 0xae, 0xf2, 0xcb, 0xfd, 0x3e, 0x29, 0x41, 0x32, 0xf2, 0x47, 0xda, 0x4a, 0xd2, - 0x0f, 0x7d, 0x93, 0xfa, 0x37, 0xdf, 0xa4, 0x3f, 0xf0, 0xcd, 0x11, 0x80, 0xec, 0x94, 0x7a, 0x2e, - 0xb9, 0x8c, 0x3c, 0x91, 0x17, 0x88, 0x29, 0x00, 0x31, 0x08, 0xce, 0x22, 0x52, 0x39, 0x22, 0xcb, - 0x99, 0xa2, 0xfe, 0x47, 0x3b, 0xb4, 0xa1, 0x78, 0x1e, 0xcf, 0x22, 0x36, 0x44, 0xe1, 0xe4, 0xb8, - 0xb1, 0xeb, 0xd9, 0x35, 0xd6, 0x53, 0x6b, 0x71, 0xab, 0x70, 0x7e, 0x1b, 0x6c, 0x2d, 0xb1, 0xf0, - 0x51, 0x4b, 0x2c, 0x7e, 0xfc, 0x12, 0xf5, 0x1d, 0x4b, 0x44, 0xdf, 0x42, 0x29, 0xe4, 0xf8, 0x82, - 0x38, 0x21, 0x19, 0x2f, 0x02, 0xca, 0x95, 0x79, 0x0a, 0x27, 0xcf, 0x76, 0x57, 0x6e, 0x0b, 0xad, - 0x1d, 0x49, 0x2d, 0x3d, 0xdc, 0x0c, 0x6b, 0x2f, 0xa0, 0xb0, 0xd1, 0x19, 0x7a, 0x02, 0x99, 0x29, - 0xa1, 0x93, 0x29, 0x8f, 0xad, 0xa0, 0x22, 0xf4, 0x29, 0xe4, 0x39, 0x9d, 0x93, 0x90, 0xe3, 0xb9, - 0x1f, 0x39, 0xe2, 0x16, 0xa8, 0x8d, 0x41, 0xdf, 0xba, 0x04, 0xd5, 0xa1, 0x2c, 0x1f, 0x82, 0x23, - 0xfc, 0xee, 0xf8, 0xec, 0x1d, 0x09, 0xa2, 0x84, 0x25, 0x89, 0x0f, 0x19, 0x27, 0x7d, 0x81, 0x0a, - 0x25, 0x67, 0x1c, 0xcf, 0x36, 0x95, 0x2a, 0x7f, 0x49, 0xe2, 0x6b, 0x65, 0xad, 0x0b, 0x48, 0x19, - 0x76, 0x48, 0x02, 0x31, 0x88, 0x8e, 0xc7, 0x83, 0xd5, 0xbd, 0x05, 0x1b, 0x90, 0x5d, 0x2a, 0x9d, - 0x4c, 0xb7, 0x67, 0xc5, 0x61, 0xed, 0x7b, 0x28, 0x6f, 0xe5, 0x79, 0x85, 0x7d, 0xd4, 0x86, 0x5c, - 0x44, 0x87, 0x86, 0x56, 0x4d, 0xd5, 0x0b, 0x27, 0xf5, 0xdd, 0xb3, 0xbc, 0x5b, 0x81, 0xb5, 0x3e, - 0x59, 0x7b, 0x0b, 0xc7, 0x16, 0x5b, 0x78, 0xae, 0xc5, 0x46, 0xd4, 0xb3, 0xa9, 0x37, 0x99, 0x11, - 0xf9, 0xaf, 0x81, 0x39, 0x0b, 0xfa, 0x01, 0x9b, 0x88, 0x0d, 0x8a, 0xc2, 0xb0, 0xeb, 0x8a, 0x9f, - 0xb2, 0xe2, 0xbc, 0x15, 0x87, 0xe2, 0xfd, 0xf8, 0x91, 0x4a, 0xd6, 0x9c, 0xb2, 0xd6, 0x71, 0xed, - 0x67, 0x0d, 0xd0, 0x6d, 0xee, 0x75, 0xb2, 0x7b, 0x9f, 0xee, 0x8f, 0xa0, 0xc7, 0x67, 0x9d, 0x19, - 0x0d, 0xb9, 0x91, 0x94, 0x5d, 0x7d, 0xbd, 0xbb, 0xab, 0xff, 0xac, 0xda, 0x2a, 0xc6, 0xd9, 0xce, - 0x68, 0xc8, 0xbf, 0xf8, 0x43, 0x83, 0xa2, 0x9a, 0x84, 0xcd, 0x31, 0x5f, 0x84, 0xe8, 0x08, 0x0e, - 0x4e, 0x07, 0xbd, 0xf6, 0x59, 0xc7, 0xb1, 0xdf, 0xb4, 0xde, 0x0c, 0x6c, 0x67, 0xd0, 0xb3, 0xfb, - 0x9d, 0x17, 0x66, 0xd7, 0xec, 0xb4, 0xcb, 0x09, 0xb4, 0x0f, 0x0f, 0xb7, 0xe9, 0x61, 0xeb, 0xcc, - 0x6c, 0x97, 0x35, 0x74, 0x00, 0x8f, 0xb7, 0x09, 0xb3, 0xa7, 0xa8, 0x24, 0x3a, 0x84, 0x27, 0xdb, - 0x54, 0xef, 0xb5, 0xd3, 0x1d, 0xf4, 0xda, 0x76, 0x39, 0x85, 0x9e, 0xc2, 0xfe, 0x1d, 0xee, 0xbb, - 0xc1, 0x6b, 0x6b, 0xf0, 0xaa, 0x9c, 0xbe, 0x7b, 0xb0, 0x6d, 0xda, 0xad, 0xd3, 0xb3, 0x4e, 0xbb, - 0xbc, 0x77, 0x98, 0xfe, 0xe9, 0xb7, 0x4a, 0xe2, 0xb4, 0xfb, 0xe7, 0x75, 0x45, 0x7b, 0x7f, 0x5d, - 0xd1, 0xfe, 0xbe, 0xae, 0x68, 0xbf, 0xde, 0x54, 0x12, 0xef, 0x6f, 0x2a, 0x89, 0xbf, 0x6e, 0x2a, - 0x89, 0x1f, 0xbe, 0x9c, 0x50, 0x3e, 0x5d, 0x8c, 0x1a, 0x63, 0x36, 0x6f, 0xbe, 0x7c, 0x3b, 0xec, - 0xf4, 0x08, 0x7f, 0xc7, 0x82, 0x8b, 0xe6, 0x78, 0x8a, 0xa9, 0xd7, 0xbc, 0x5c, 0x7f, 0xaf, 0xf9, - 0xca, 0x27, 0xe1, 0x28, 0x23, 0x3f, 0xbd, 0x5f, 0xfd, 0x13, 0x00, 0x00, 0xff, 0xff, 0x45, 0x66, - 0x7a, 0xef, 0xcc, 0x07, 0x00, 0x00, + 0x14, 0x66, 0x01, 0xf3, 0x73, 0x60, 0x09, 0x9d, 0x34, 0xf1, 0xda, 0xa9, 0x09, 0xa6, 0x6a, 0x85, + 0xaa, 0x0a, 0x24, 0x57, 0x7d, 0x00, 0x08, 0xa0, 0xac, 0xe2, 0x10, 0xba, 0x1b, 0x90, 0x92, 0x9b, + 0xd5, 0xc0, 0x8e, 0x61, 0x64, 0xd8, 0x59, 0xed, 0x0e, 0xc4, 0xf8, 0x09, 0xda, 0x5e, 0xf5, 0x1d, + 0xda, 0xc7, 0xe8, 0x03, 0xf4, 0x32, 0x97, 0xbd, 0xac, 0xec, 0x17, 0xa9, 0x66, 0x66, 0x17, 0x43, + 0x6c, 0xb7, 0xbe, 0xc9, 0x1d, 0xe7, 0xfb, 0xbe, 0x39, 0x73, 0x7e, 0xbe, 0x61, 0xa1, 0x7a, 0xbe, + 0x5e, 0x91, 0xe6, 0x78, 0xe9, 0xb9, 0x73, 0x12, 0x36, 0xf9, 0xda, 0x27, 0x61, 0x1c, 0x35, 0xfc, + 0x80, 0x71, 0x86, 0x90, 0x50, 0x34, 0x62, 0x4c, 0x2a, 0x0e, 0xbf, 0x9c, 0xb2, 0x29, 0x93, 0x74, + 0x53, 0xfc, 0x52, 0xca, 0xda, 0x1f, 0x69, 0x28, 0xb5, 0xa5, 0x6e, 0x10, 0x30, 0x9f, 0x85, 0x78, + 0x8e, 0xf6, 0x21, 0xeb, 0x33, 0x36, 0x77, 0xa8, 0x6b, 0x68, 0x55, 0xad, 0x9e, 0xb6, 0x32, 0x22, + 0x34, 0x5d, 0x74, 0x04, 0x10, 0x72, 0x16, 0xe0, 0x29, 0x11, 0x5c, 0xb2, 0xaa, 0xd5, 0xf3, 0x56, + 0x3e, 0x42, 0x4c, 0x17, 0x1d, 0x42, 0x6e, 0xe9, 0xcf, 0x19, 0x76, 0x49, 0x60, 0xa4, 0x24, 0xb9, + 0x89, 0xd1, 0xd7, 0xa0, 0x7b, 0xe4, 0x82, 0x3b, 0x1b, 0x41, 0x5a, 0x0a, 0x8a, 0x02, 0x1c, 0xc6, + 0xa2, 0x67, 0x90, 0x77, 0x31, 0xc7, 0x4e, 0x48, 0x2f, 0x89, 0xb1, 0x27, 0xaf, 0xce, 0x09, 0xc0, + 0xa6, 0x97, 0x04, 0x3d, 0x87, 0x82, 0xea, 0x47, 0xd1, 0x19, 0x49, 0x83, 0x82, 0xa4, 0xe0, 0x09, + 0x64, 0x38, 0x73, 0xce, 0xc9, 0xda, 0xc8, 0xca, 0xdc, 0x7b, 0x9c, 0xbd, 0x22, 0x6b, 0xf4, 0x0d, + 0x94, 0xe2, 0x73, 0xcb, 0xc5, 0x02, 0x07, 0x6b, 0x23, 0x27, 0x69, 0x3d, 0x3a, 0xaa, 0xc0, 0xcd, + 0xdd, 0x33, 0x1c, 0xce, 0x8c, 0xbc, 0xaa, 0x5e, 0x00, 0x2f, 0x71, 0x38, 0x13, 0x8d, 0x2f, 0x7d, + 0x17, 0x73, 0xe2, 0x3a, 0x98, 0x1b, 0x20, 0xaf, 0xce, 0x47, 0x48, 0x8b, 0xa3, 0x63, 0x28, 0xae, + 0x18, 0x27, 0x41, 0xe8, 0xac, 0xf0, 0x9c, 0xba, 0x46, 0xa1, 0x9a, 0xaa, 0xe7, 0xad, 0x82, 0xc2, + 0x46, 0x02, 0x12, 0x55, 0x44, 0x12, 0xea, 0x29, 0x51, 0x51, 0x8a, 0x74, 0x85, 0x9a, 0x0a, 0xdc, + 0x92, 0xe1, 0x71, 0xc8, 0x31, 0xf5, 0x0c, 0x7d, 0x5b, 0xd6, 0x52, 0x20, 0x3a, 0x80, 0xdc, 0x59, + 0xc0, 0x16, 0xb2, 0xd9, 0x92, 0xac, 0x35, 0x2b, 0x62, 0xd1, 0x6e, 0x03, 0x1e, 0xc7, 0x3b, 0xf2, + 0x03, 0xb6, 0xa2, 0x2e, 0x09, 0xc4, 0xb2, 0x1e, 0x55, 0xb5, 0xba, 0x6e, 0x7d, 0x11, 0x51, 0x83, + 0x88, 0x31, 0xe5, 0x8d, 0x13, 0xb6, 0xf0, 0x03, 0x12, 0x86, 0x94, 0x79, 0x42, 0x5a, 0x96, 0x52, + 0x7d, 0x0b, 0x35, 0xdd, 0xda, 0xaf, 0x69, 0x78, 0xd4, 0xa3, 0x1e, 0x9e, 0xd3, 0x4b, 0xe2, 0x2a, + 0xbf, 0xdc, 0xef, 0x93, 0x12, 0x24, 0x23, 0x7f, 0xa4, 0xad, 0x24, 0xfd, 0xd4, 0x37, 0xa9, 0xff, + 0xf2, 0x4d, 0xfa, 0x13, 0xdf, 0x1c, 0x01, 0xc8, 0x4e, 0xa9, 0xe7, 0x92, 0x8b, 0xc8, 0x13, 0x79, + 0x81, 0x98, 0x02, 0x10, 0x83, 0xe0, 0x2c, 0x22, 0x95, 0x23, 0xb2, 0x9c, 0x29, 0xea, 0x33, 0xda, + 0xa1, 0x0d, 0xc5, 0xb3, 0x78, 0x16, 0xb1, 0x21, 0x0a, 0x27, 0xcf, 0x1b, 0xb7, 0x1f, 0x5d, 0x63, + 0x33, 0xb3, 0x16, 0xb7, 0x0a, 0x67, 0x37, 0xc1, 0xce, 0x0a, 0x0b, 0x0f, 0x5a, 0x61, 0xf1, 0xe1, + 0x2b, 0xd4, 0xef, 0x58, 0x21, 0x7a, 0x09, 0xa5, 0x90, 0xe3, 0x73, 0xe2, 0x84, 0x64, 0xb2, 0x0c, + 0x28, 0x57, 0xd6, 0x29, 0x9c, 0x1c, 0xdf, 0x55, 0xb7, 0x2d, 0x94, 0x76, 0x24, 0xb4, 0xf4, 0x70, + 0x3b, 0xac, 0xbd, 0x80, 0xc2, 0x56, 0x5f, 0xe8, 0x29, 0x64, 0x66, 0x84, 0x4e, 0x67, 0x3c, 0xb6, + 0x81, 0x8a, 0xd0, 0x57, 0x90, 0xe7, 0x74, 0x41, 0x42, 0x8e, 0x17, 0x7e, 0xe4, 0x86, 0x1b, 0xa0, + 0x36, 0x01, 0x7d, 0xe7, 0x12, 0x54, 0x87, 0xb2, 0x7c, 0x04, 0x8e, 0xf0, 0xba, 0xe3, 0xb3, 0x0f, + 0x24, 0x88, 0x12, 0x96, 0x24, 0x3e, 0x62, 0x9c, 0x0c, 0x04, 0x2a, 0x94, 0x9c, 0x71, 0x3c, 0xdf, + 0x56, 0xaa, 0xfc, 0x25, 0x89, 0x6f, 0x94, 0xb5, 0x1e, 0x20, 0x65, 0xd6, 0x11, 0x09, 0xc4, 0x18, + 0xba, 0x1e, 0x0f, 0xd6, 0xf7, 0x16, 0x6c, 0x40, 0x76, 0xa5, 0x74, 0x32, 0xdd, 0x9e, 0x15, 0x87, + 0xb5, 0x11, 0x94, 0x77, 0xf2, 0xbc, 0xc6, 0x3e, 0x6a, 0x43, 0x2e, 0xa2, 0x43, 0x43, 0xab, 0xa6, + 0xea, 0x85, 0x93, 0x6f, 0xef, 0x9a, 0xe4, 0xed, 0xfb, 0xad, 0xcd, 0xb9, 0xda, 0x3b, 0x38, 0xb6, + 0xd8, 0xd2, 0x73, 0x2d, 0x36, 0xa6, 0x9e, 0x4d, 0xbd, 0xe9, 0x9c, 0xc8, 0xff, 0x0b, 0xcc, 0x59, + 0x30, 0x08, 0xd8, 0x54, 0x6c, 0x4f, 0x94, 0x85, 0x5d, 0x57, 0xfc, 0x94, 0xf5, 0xe6, 0xad, 0x38, + 0x14, 0x2f, 0xc7, 0x8f, 0x54, 0xb2, 0xe2, 0x94, 0xb5, 0x89, 0x6b, 0xbf, 0x68, 0x80, 0x6e, 0x72, + 0x6f, 0x92, 0xdd, 0xfb, 0x68, 0xdf, 0x83, 0x1e, 0x9f, 0x75, 0xe6, 0x34, 0xe4, 0x46, 0x52, 0xf6, + 0xf4, 0xe3, 0x5d, 0x3d, 0xfd, 0x6f, 0xcd, 0x56, 0x31, 0xce, 0x75, 0x4a, 0x43, 0xfe, 0xdd, 0x9f, + 0x1a, 0x14, 0xd5, 0x1c, 0x6c, 0x8e, 0xf9, 0x32, 0x44, 0x47, 0x70, 0xd0, 0x1e, 0xf6, 0x3b, 0xa7, + 0x5d, 0xc7, 0x7e, 0xdb, 0x7a, 0x3b, 0xb4, 0x9d, 0x61, 0xdf, 0x1e, 0x74, 0x5f, 0x98, 0x3d, 0xb3, + 0xdb, 0x29, 0x27, 0xd0, 0x3e, 0x3c, 0xde, 0xa5, 0x47, 0xad, 0x53, 0xb3, 0x53, 0xd6, 0xd0, 0x01, + 0x3c, 0xd9, 0x25, 0xcc, 0xbe, 0xa2, 0x92, 0xe8, 0x10, 0x9e, 0xee, 0x52, 0xfd, 0x37, 0x4e, 0x6f, + 0xd8, 0xef, 0xd8, 0xe5, 0x14, 0x7a, 0x06, 0xfb, 0xb7, 0xb8, 0x9f, 0x86, 0x6f, 0xac, 0xe1, 0xeb, + 0x72, 0xfa, 0xf6, 0xc1, 0x8e, 0x69, 0xb7, 0xda, 0xa7, 0xdd, 0x4e, 0x79, 0xef, 0x30, 0xfd, 0xf3, + 0xef, 0x95, 0x44, 0xbb, 0xf7, 0xd7, 0x55, 0x45, 0xfb, 0x78, 0x55, 0xd1, 0xfe, 0xb9, 0xaa, 0x68, + 0xbf, 0x5d, 0x57, 0x12, 0x1f, 0xaf, 0x2b, 0x89, 0xbf, 0xaf, 0x2b, 0x89, 0xf7, 0xdf, 0x4f, 0x29, + 0x9f, 0x2d, 0xc7, 0x8d, 0x09, 0x5b, 0x34, 0x5f, 0xbd, 0x1b, 0x75, 0xfb, 0x84, 0x7f, 0x60, 0xc1, + 0x79, 0x73, 0x32, 0xc3, 0xd4, 0x6b, 0x5e, 0xec, 0x7e, 0xa3, 0xc7, 0x19, 0xf9, 0xc9, 0xfd, 0xe1, + 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x10, 0x1b, 0xd9, 0xc0, 0x07, 0x00, 0x00, } func (m *BundleProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/bundles/types/events.pb.go b/x/bundles/types/events.pb.go index ffbbf676..ee9add6e 100644 --- a/x/bundles/types/events.pb.go +++ b/x/bundles/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/events.proto +// source: kyve/bundles/types/events.proto package types @@ -38,7 +38,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{0} + return fileDescriptor_ff9b6da0b82d8036, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -98,14 +98,14 @@ type EventBundleVote struct { // storage_id is the unique ID of the bundle. StorageId string `protobuf:"bytes,3,opt,name=storage_id,json=storageId,proto3" json:"storage_id,omitempty"` // vote is for what the validator voted with - Vote VoteType `protobuf:"varint,4,opt,name=vote,proto3,enum=kyve.bundles.v1beta1.VoteType" json:"vote,omitempty"` + Vote VoteType `protobuf:"varint,4,opt,name=vote,proto3,enum=kyve.bundles.types.VoteType" json:"vote,omitempty"` } func (m *EventBundleVote) Reset() { *m = EventBundleVote{} } func (m *EventBundleVote) String() string { return proto.CompactTextString(m) } func (*EventBundleVote) ProtoMessage() {} func (*EventBundleVote) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{1} + return fileDescriptor_ff9b6da0b82d8036, []int{1} } func (m *EventBundleVote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -203,7 +203,7 @@ func (m *EventBundleProposed) Reset() { *m = EventBundleProposed{} } func (m *EventBundleProposed) String() string { return proto.CompactTextString(m) } func (*EventBundleProposed) ProtoMessage() {} func (*EventBundleProposed) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{2} + return fileDescriptor_ff9b6da0b82d8036, []int{2} } func (m *EventBundleProposed) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -346,7 +346,7 @@ type EventBundleFinalized struct { // total voting power of the pool Total uint64 `protobuf:"varint,6,opt,name=total,proto3" json:"total,omitempty"` // status of the finalized bundle - Status BundleStatus `protobuf:"varint,7,opt,name=status,proto3,enum=kyve.bundles.v1beta1.BundleStatus" json:"status,omitempty"` + Status BundleStatus `protobuf:"varint,7,opt,name=status,proto3,enum=kyve.bundles.types.BundleStatus" json:"status,omitempty"` // amount which funders provided to the total bundle reward (in ukyve) FundersPayout uint64 `protobuf:"varint,8,opt,name=funders_payout,json=fundersPayout,proto3" json:"funders_payout,omitempty"` // amount which the inflation pool provided to the total reward (in ukyve) @@ -371,7 +371,7 @@ func (m *EventBundleFinalized) Reset() { *m = EventBundleFinalized{} } func (m *EventBundleFinalized) String() string { return proto.CompactTextString(m) } func (*EventBundleFinalized) ProtoMessage() {} func (*EventBundleFinalized) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{3} + return fileDescriptor_ff9b6da0b82d8036, []int{3} } func (m *EventBundleFinalized) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -528,7 +528,7 @@ func (m *EventClaimedUploaderRole) Reset() { *m = EventClaimedUploaderRo func (m *EventClaimedUploaderRole) String() string { return proto.CompactTextString(m) } func (*EventClaimedUploaderRole) ProtoMessage() {} func (*EventClaimedUploaderRole) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{4} + return fileDescriptor_ff9b6da0b82d8036, []int{4} } func (m *EventClaimedUploaderRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -595,7 +595,7 @@ func (m *EventSkippedUploaderRole) Reset() { *m = EventSkippedUploaderRo func (m *EventSkippedUploaderRole) String() string { return proto.CompactTextString(m) } func (*EventSkippedUploaderRole) ProtoMessage() {} func (*EventSkippedUploaderRole) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{5} + return fileDescriptor_ff9b6da0b82d8036, []int{5} } func (m *EventSkippedUploaderRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -667,7 +667,7 @@ func (m *EventPointIncreased) Reset() { *m = EventPointIncreased{} } func (m *EventPointIncreased) String() string { return proto.CompactTextString(m) } func (*EventPointIncreased) ProtoMessage() {} func (*EventPointIncreased) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{6} + return fileDescriptor_ff9b6da0b82d8036, []int{6} } func (m *EventPointIncreased) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -730,7 +730,7 @@ func (m *EventPointsReset) Reset() { *m = EventPointsReset{} } func (m *EventPointsReset) String() string { return proto.CompactTextString(m) } func (*EventPointsReset) ProtoMessage() {} func (*EventPointsReset) Descriptor() ([]byte, []int) { - return fileDescriptor_a02f505e55d81e92, []int{7} + return fileDescriptor_ff9b6da0b82d8036, []int{7} } func (m *EventPointsReset) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -774,76 +774,76 @@ func (m *EventPointsReset) GetStaker() string { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.bundles.v1beta1.EventUpdateParams") - proto.RegisterType((*EventBundleVote)(nil), "kyve.bundles.v1beta1.EventBundleVote") - proto.RegisterType((*EventBundleProposed)(nil), "kyve.bundles.v1beta1.EventBundleProposed") - proto.RegisterType((*EventBundleFinalized)(nil), "kyve.bundles.v1beta1.EventBundleFinalized") - proto.RegisterType((*EventClaimedUploaderRole)(nil), "kyve.bundles.v1beta1.EventClaimedUploaderRole") - proto.RegisterType((*EventSkippedUploaderRole)(nil), "kyve.bundles.v1beta1.EventSkippedUploaderRole") - proto.RegisterType((*EventPointIncreased)(nil), "kyve.bundles.v1beta1.EventPointIncreased") - proto.RegisterType((*EventPointsReset)(nil), "kyve.bundles.v1beta1.EventPointsReset") -} - -func init() { proto.RegisterFile("kyve/bundles/v1beta1/events.proto", fileDescriptor_a02f505e55d81e92) } - -var fileDescriptor_a02f505e55d81e92 = []byte{ - // 895 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xdf, 0x6e, 0x1b, 0xc5, - 0x17, 0xce, 0xa6, 0x1b, 0x27, 0x7b, 0xfc, 0x27, 0xce, 0x36, 0xbf, 0x1f, 0x4b, 0xa0, 0x6e, 0x62, - 0x84, 0x08, 0x2a, 0xb2, 0xd5, 0x70, 0xc7, 0x5d, 0x52, 0x5a, 0x61, 0x55, 0x42, 0xd6, 0xa6, 0xad, - 0x04, 0x37, 0xd6, 0x38, 0x73, 0x6c, 0x8f, 0xbc, 0xde, 0x59, 0xcd, 0xcc, 0xda, 0x71, 0x9e, 0x02, - 0x09, 0xf1, 0x24, 0x7d, 0x05, 0x2e, 0x7a, 0xd9, 0x4b, 0xae, 0x10, 0x4a, 0x5e, 0x04, 0xcd, 0x9f, - 0xdd, 0x98, 0xe0, 0x42, 0xcb, 0x9d, 0xcf, 0x77, 0xbe, 0xf9, 0xce, 0xb7, 0xe7, 0x9c, 0x19, 0xc3, - 0xd1, 0x74, 0x39, 0xc7, 0xee, 0x30, 0x4f, 0x69, 0x82, 0xb2, 0x3b, 0x7f, 0x3c, 0x44, 0x45, 0x1e, - 0x77, 0x71, 0x8e, 0xa9, 0x92, 0x9d, 0x4c, 0x70, 0xc5, 0xc3, 0x7d, 0x4d, 0xe9, 0x38, 0x4a, 0xc7, - 0x51, 0x0e, 0xf6, 0xc7, 0x7c, 0xcc, 0x0d, 0xa1, 0xab, 0x7f, 0x59, 0xee, 0x41, 0x7b, 0xad, 0x5c, - 0x71, 0xd6, 0x72, 0xd6, 0x97, 0xcc, 0x88, 0x20, 0xb3, 0x82, 0xf2, 0x60, 0x2d, 0x45, 0x5d, 0xda, - 0x74, 0xfb, 0xb5, 0x07, 0x7b, 0x4f, 0xb5, 0xc5, 0x97, 0x19, 0x25, 0x0a, 0xfb, 0xe6, 0x68, 0x78, - 0x0a, 0xc0, 0x13, 0x3a, 0xb0, 0x42, 0x91, 0x77, 0xe8, 0x1d, 0x57, 0x4f, 0x3e, 0xed, 0xac, 0x33, - 0xdf, 0xb1, 0x27, 0xce, 0xfc, 0x37, 0xbf, 0x3f, 0xdc, 0x88, 0x03, 0x9e, 0xd0, 0x5b, 0x89, 0x14, - 0x17, 0x85, 0xc4, 0xe6, 0xfb, 0x4b, 0xa4, 0xb8, 0x70, 0x12, 0x11, 0x6c, 0x67, 0x64, 0x99, 0x70, - 0x42, 0xa3, 0x7b, 0x87, 0xde, 0x71, 0x10, 0x17, 0x61, 0xfb, 0x17, 0x0f, 0x76, 0x8d, 0xeb, 0x33, - 0x23, 0xf5, 0x8a, 0x2b, 0x0c, 0x3f, 0x82, 0xed, 0x8c, 0xf3, 0x64, 0xc0, 0xa8, 0x31, 0xec, 0xc7, - 0x15, 0x1d, 0xf6, 0x68, 0xf8, 0x7f, 0xa8, 0x48, 0x45, 0xa6, 0x28, 0x8c, 0x8b, 0x20, 0x76, 0x51, - 0xf8, 0x00, 0x40, 0x2a, 0x2e, 0xc8, 0x18, 0xf5, 0x19, 0x5b, 0x21, 0x70, 0x48, 0x8f, 0x86, 0x27, - 0xe0, 0xcf, 0xb9, 0xc2, 0xc8, 0x3f, 0xf4, 0x8e, 0x1b, 0x27, 0xad, 0xf5, 0xd6, 0x75, 0xe5, 0x17, - 0xcb, 0x0c, 0x63, 0xc3, 0x6d, 0xff, 0x7a, 0x0f, 0xee, 0xaf, 0xf8, 0xea, 0x0b, 0x9e, 0x71, 0x89, - 0xf4, 0xdd, 0xde, 0x1a, 0xb0, 0xc9, 0xa8, 0xf1, 0xe5, 0xc7, 0x9b, 0x8c, 0xfe, 0x9b, 0xa7, 0x03, - 0xd8, 0xc9, 0x33, 0xdd, 0x01, 0x14, 0xc6, 0x57, 0x10, 0x97, 0x71, 0xf8, 0x09, 0x04, 0x94, 0x28, - 0x32, 0x90, 0xec, 0x0a, 0xa3, 0x2d, 0xa3, 0xb8, 0xa3, 0x81, 0x73, 0x76, 0x85, 0x5a, 0x77, 0x24, - 0xf8, 0x6c, 0xc0, 0x52, 0x8a, 0x97, 0x51, 0xc5, 0x64, 0x03, 0x8d, 0xf4, 0x34, 0x10, 0x3e, 0x84, - 0xaa, 0xfd, 0x32, 0x7b, 0x7a, 0xdb, 0xe4, 0xc1, 0x42, 0xe6, 0xfc, 0xc7, 0xb0, 0x63, 0xce, 0x4f, - 0x71, 0x19, 0xed, 0xd8, 0x59, 0xe8, 0xf8, 0x39, 0x2e, 0xc3, 0xff, 0x41, 0x45, 0x71, 0x93, 0x08, - 0x4c, 0x62, 0x4b, 0x71, 0x0d, 0x7f, 0x0e, 0x8d, 0x42, 0x32, 0x9f, 0xcd, 0x88, 0x58, 0x46, 0x60, - 0xd2, 0x75, 0xa7, 0x6a, 0xc1, 0xd2, 0xf5, 0x84, 0xc8, 0x49, 0x54, 0xb5, 0x9f, 0xa4, 0x81, 0xef, - 0x88, 0x9c, 0x68, 0x5b, 0x99, 0x6b, 0xe1, 0x80, 0xa8, 0xa8, 0x66, 0x6d, 0x15, 0xd0, 0xa9, 0x0a, - 0x3b, 0x70, 0xbf, 0x68, 0x57, 0x26, 0xf8, 0x9c, 0x51, 0x14, 0xba, 0x6f, 0xf5, 0x43, 0xef, 0xb8, - 0x1e, 0xef, 0xb9, 0x54, 0xdf, 0x65, 0x7a, 0x54, 0x9b, 0xba, 0xe0, 0xb3, 0x4c, 0xa0, 0x94, 0x8c, - 0xa7, 0x9a, 0xda, 0x30, 0xd4, 0xfa, 0x0a, 0xda, 0xa3, 0xed, 0xd7, 0x3e, 0xec, 0xaf, 0x8c, 0xf1, - 0x19, 0x4b, 0x49, 0xc2, 0xae, 0x3e, 0x64, 0x8e, 0xfb, 0xb0, 0x35, 0x27, 0x89, 0x1b, 0xa1, 0x1f, - 0xdb, 0x40, 0x2f, 0x34, 0x4b, 0x2d, 0xee, 0x1b, 0xbc, 0x08, 0x75, 0x86, 0x0c, 0xa5, 0x22, 0x2c, - 0x75, 0xa3, 0x2b, 0x42, 0xad, 0xa4, 0xb8, 0x22, 0x89, 0x1b, 0x9a, 0x0d, 0xc2, 0x6f, 0xcc, 0x4e, - 0xab, 0x5c, 0x9a, 0x59, 0x35, 0x4e, 0xda, 0xeb, 0xd7, 0xd3, 0xfa, 0x3f, 0x37, 0xcc, 0xd8, 0x9d, - 0xd0, 0x4d, 0x18, 0xe5, 0x29, 0x45, 0x21, 0x07, 0x19, 0x59, 0xf2, 0x5c, 0x99, 0x89, 0xfa, 0x71, - 0xdd, 0xa1, 0x7d, 0x03, 0x86, 0x5f, 0x42, 0x93, 0xa5, 0xa3, 0x84, 0x28, 0xdd, 0x29, 0x47, 0x0c, - 0x0c, 0x71, 0xb7, 0xc4, 0x1d, 0xf5, 0x0b, 0xd8, 0x15, 0xb8, 0x20, 0x82, 0x0e, 0x94, 0x40, 0x22, - 0x73, 0x37, 0x6c, 0x3f, 0x6e, 0x58, 0xf8, 0x85, 0x43, 0x57, 0x88, 0xe5, 0x1a, 0x57, 0x57, 0x89, - 0x2f, 0x8b, 0x65, 0x7e, 0x04, 0x7b, 0x8e, 0x48, 0x31, 0xc1, 0xb1, 0x29, 0xe6, 0xe6, 0xdf, 0xb4, - 0x89, 0x6f, 0x4b, 0x3c, 0x3c, 0x82, 0x5a, 0x51, 0xde, 0x74, 0xaa, 0x6e, 0x78, 0x55, 0x57, 0xdb, - 0xf4, 0xeb, 0x08, 0x6a, 0xa3, 0x62, 0x8a, 0x7a, 0x95, 0x1a, 0x96, 0x52, 0x62, 0xa7, 0xea, 0x2f, - 0x77, 0x6b, 0xf7, 0xce, 0xdd, 0xfa, 0x0c, 0xea, 0x29, 0x5e, 0xaa, 0x5b, 0xd7, 0x4d, 0x43, 0xa8, - 0x69, 0xb0, 0xf0, 0xdc, 0x1e, 0x41, 0x64, 0x96, 0xe6, 0x49, 0x42, 0xd8, 0x0c, 0xcb, 0x6f, 0x89, - 0x79, 0x82, 0xef, 0xbf, 0x38, 0x47, 0x50, 0xd3, 0xcf, 0x66, 0x59, 0xc8, 0x3e, 0x01, 0xd5, 0x14, - 0x17, 0x65, 0x9d, 0x9f, 0x3d, 0x57, 0xe8, 0x7c, 0xca, 0xb2, 0xec, 0xbf, 0x16, 0x7a, 0x04, 0x7b, - 0x99, 0xc0, 0x39, 0xe3, 0xb9, 0xbc, 0x5b, 0xad, 0x59, 0x24, 0xca, 0x71, 0xdc, 0x75, 0xe5, 0xff, - 0xdd, 0xd5, 0xcc, 0xbd, 0x7c, 0x7d, 0xce, 0x52, 0xd5, 0x4b, 0x2f, 0xf4, 0xc8, 0xff, 0xe9, 0xc6, - 0xbc, 0xeb, 0x55, 0xd6, 0x57, 0x34, 0x17, 0x02, 0x53, 0x35, 0xc8, 0xb4, 0x94, 0x74, 0x57, 0xa8, - 0xee, 0x50, 0xa3, 0x2f, 0xdb, 0x4f, 0xa0, 0x79, 0x5b, 0x4e, 0xc6, 0x28, 0x51, 0x7d, 0x70, 0xad, - 0xb3, 0x67, 0x6f, 0xae, 0x5b, 0xde, 0xdb, 0xeb, 0x96, 0xf7, 0xc7, 0x75, 0xcb, 0xfb, 0xe9, 0xa6, - 0xb5, 0xf1, 0xf6, 0xa6, 0xb5, 0xf1, 0xdb, 0x4d, 0x6b, 0xe3, 0xc7, 0xaf, 0xc6, 0x4c, 0x4d, 0xf2, - 0x61, 0xe7, 0x82, 0xcf, 0xba, 0xcf, 0x7f, 0x78, 0xf5, 0xf4, 0x7b, 0x54, 0x0b, 0x2e, 0xa6, 0xdd, - 0x8b, 0x09, 0x61, 0x69, 0xf7, 0xb2, 0xfc, 0x3f, 0x55, 0xcb, 0x0c, 0xe5, 0xb0, 0x62, 0xfe, 0x4b, - 0xbf, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x0d, 0xeb, 0x71, 0xdc, 0x02, 0x08, 0x00, 0x00, + proto.RegisterType((*EventUpdateParams)(nil), "kyve.bundles.types.EventUpdateParams") + proto.RegisterType((*EventBundleVote)(nil), "kyve.bundles.types.EventBundleVote") + proto.RegisterType((*EventBundleProposed)(nil), "kyve.bundles.types.EventBundleProposed") + proto.RegisterType((*EventBundleFinalized)(nil), "kyve.bundles.types.EventBundleFinalized") + proto.RegisterType((*EventClaimedUploaderRole)(nil), "kyve.bundles.types.EventClaimedUploaderRole") + proto.RegisterType((*EventSkippedUploaderRole)(nil), "kyve.bundles.types.EventSkippedUploaderRole") + proto.RegisterType((*EventPointIncreased)(nil), "kyve.bundles.types.EventPointIncreased") + proto.RegisterType((*EventPointsReset)(nil), "kyve.bundles.types.EventPointsReset") +} + +func init() { proto.RegisterFile("kyve/bundles/types/events.proto", fileDescriptor_ff9b6da0b82d8036) } + +var fileDescriptor_ff9b6da0b82d8036 = []byte{ + // 890 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xdd, 0x6e, 0x1b, 0x45, + 0x14, 0xce, 0xa6, 0x9b, 0x9f, 0x1d, 0xff, 0xc4, 0xd9, 0x06, 0x58, 0x52, 0x70, 0x1c, 0x23, 0x44, + 0x50, 0x91, 0x8d, 0xc2, 0x0d, 0x77, 0xa8, 0x29, 0xad, 0xb0, 0x2a, 0x21, 0x6b, 0xd3, 0x56, 0x82, + 0x1b, 0x6b, 0x92, 0x39, 0xb6, 0x47, 0x5e, 0xef, 0xac, 0x66, 0x66, 0xed, 0x38, 0x4f, 0x81, 0xd4, + 0x07, 0x41, 0xbc, 0x03, 0x17, 0xbd, 0xec, 0x25, 0x57, 0x08, 0x25, 0x2f, 0x82, 0xe6, 0xcc, 0xec, + 0xc6, 0x4d, 0x5d, 0x68, 0x7b, 0xe7, 0xf3, 0x9d, 0x6f, 0xbe, 0xf3, 0xed, 0x39, 0x67, 0xc6, 0xe4, + 0x60, 0xb2, 0x98, 0x41, 0xf7, 0x2c, 0x4f, 0x59, 0x02, 0xaa, 0xab, 0x17, 0x19, 0xa8, 0x2e, 0xcc, + 0x20, 0xd5, 0xaa, 0x93, 0x49, 0xa1, 0x45, 0x18, 0x1a, 0x42, 0xc7, 0x11, 0x3a, 0x48, 0xd8, 0xdf, + 0x1b, 0x89, 0x91, 0xc0, 0x74, 0xd7, 0xfc, 0xb2, 0xcc, 0xfd, 0xd6, 0x0a, 0xa9, 0xe2, 0x9c, 0x65, + 0xac, 0x2a, 0x96, 0x51, 0x49, 0xa7, 0x05, 0xe1, 0xde, 0x0a, 0x82, 0xbe, 0xb0, 0xc9, 0xf6, 0xef, + 0x1e, 0xd9, 0x7d, 0x64, 0xac, 0x3d, 0xcb, 0x18, 0xd5, 0xd0, 0xc7, 0x83, 0xe1, 0x0f, 0x84, 0x88, + 0x84, 0x0d, 0xac, 0x4c, 0xe4, 0xb5, 0xbc, 0xa3, 0xca, 0xf1, 0x7e, 0xe7, 0x4d, 0xd3, 0x1d, 0xcb, + 0x3f, 0xf1, 0x5f, 0xfe, 0x7d, 0xb0, 0x16, 0x07, 0x22, 0x61, 0x37, 0x02, 0x29, 0xcc, 0x0b, 0x81, + 0xf5, 0x77, 0x15, 0x48, 0x61, 0xee, 0x04, 0x22, 0xb2, 0x95, 0xd1, 0x45, 0x22, 0x28, 0x8b, 0xee, + 0xb4, 0xbc, 0xa3, 0x20, 0x2e, 0xc2, 0xf6, 0x0b, 0x8f, 0xec, 0xa0, 0xe3, 0x13, 0x14, 0x7a, 0x2e, + 0x34, 0x84, 0x9f, 0x90, 0xad, 0x4c, 0x88, 0x64, 0xc0, 0x19, 0x9a, 0xf5, 0xe3, 0x4d, 0x13, 0xf6, + 0x58, 0xf8, 0x31, 0xd9, 0x54, 0x9a, 0x4e, 0x40, 0xa2, 0x87, 0x20, 0x76, 0x51, 0xf8, 0x39, 0x21, + 0x4a, 0x0b, 0x49, 0x47, 0x60, 0xce, 0xd8, 0x0a, 0x81, 0x43, 0x7a, 0x2c, 0xfc, 0x96, 0xf8, 0x33, + 0xa1, 0x21, 0xf2, 0x5b, 0xde, 0x51, 0xfd, 0xf8, 0xb3, 0x55, 0xc6, 0x4d, 0xdd, 0xa7, 0x8b, 0x0c, + 0x62, 0x64, 0xb6, 0xff, 0xbc, 0x43, 0xee, 0x2e, 0xb9, 0xea, 0x4b, 0x91, 0x09, 0x05, 0xec, 0xed, + 0xce, 0xea, 0x64, 0x9d, 0x33, 0x74, 0xe5, 0xc7, 0xeb, 0x9c, 0xfd, 0x9f, 0xa3, 0x7d, 0xb2, 0x9d, + 0x67, 0xe6, 0xfb, 0x41, 0xa2, 0xab, 0x20, 0x2e, 0xe3, 0xf0, 0x1e, 0x09, 0x18, 0xd5, 0x74, 0xa0, + 0xf8, 0x25, 0x44, 0x1b, 0xa8, 0xb8, 0x6d, 0x80, 0x53, 0x7e, 0x09, 0x46, 0x77, 0x28, 0xc5, 0x74, + 0xc0, 0x53, 0x06, 0x17, 0xd1, 0x26, 0x66, 0x03, 0x83, 0xf4, 0x0c, 0x10, 0x1e, 0x90, 0x8a, 0xfd, + 0x2e, 0x7b, 0x7a, 0x0b, 0xf3, 0xc4, 0x42, 0x78, 0xfe, 0x53, 0xb2, 0x8d, 0xe7, 0x27, 0xb0, 0x88, + 0xb6, 0xed, 0x24, 0x4c, 0xfc, 0x04, 0x16, 0xe1, 0x47, 0x64, 0x53, 0x0b, 0x4c, 0x04, 0x98, 0xd8, + 0xd0, 0xc2, 0xc0, 0x5f, 0x92, 0x7a, 0x21, 0x99, 0x4f, 0xa7, 0x54, 0x2e, 0x22, 0x82, 0xe9, 0x9a, + 0x53, 0xb5, 0x60, 0xe9, 0x7a, 0x4c, 0xd5, 0x38, 0xaa, 0xd8, 0x4f, 0x32, 0xc0, 0x4f, 0x54, 0x8d, + 0x8d, 0xad, 0xcc, 0xb5, 0x70, 0x40, 0x75, 0x54, 0xb5, 0xb6, 0x0a, 0xe8, 0x81, 0x0e, 0x3b, 0xe4, + 0x6e, 0xd1, 0xae, 0x4c, 0x8a, 0x19, 0x67, 0x20, 0x4d, 0xdf, 0x6a, 0x2d, 0xef, 0xa8, 0x16, 0xef, + 0xba, 0x54, 0xdf, 0x65, 0x7a, 0xcc, 0x98, 0x3a, 0x17, 0xd3, 0x4c, 0x82, 0x52, 0x5c, 0xa4, 0x86, + 0x5a, 0x47, 0x6a, 0x6d, 0x09, 0xed, 0xb1, 0xf6, 0x1f, 0x3e, 0xd9, 0x5b, 0x1a, 0xe3, 0x63, 0x9e, + 0xd2, 0x84, 0x5f, 0xbe, 0xcf, 0x1c, 0xf7, 0xc8, 0xc6, 0x8c, 0x26, 0x6e, 0x84, 0x7e, 0x6c, 0x03, + 0xb3, 0xce, 0x3c, 0xb5, 0xb8, 0x8f, 0x78, 0x11, 0x9a, 0x0c, 0x3d, 0x53, 0x9a, 0xf2, 0xd4, 0x8d, + 0xae, 0x08, 0x8d, 0x92, 0x16, 0x9a, 0x26, 0x6e, 0x68, 0x36, 0x08, 0xbf, 0xc7, 0x8d, 0xd6, 0xb9, + 0xc2, 0x59, 0xd5, 0x8f, 0x5b, 0xab, 0x96, 0xd3, 0xba, 0x3f, 0x45, 0x5e, 0xec, 0xf8, 0xa6, 0x05, + 0xc3, 0x3c, 0x65, 0x20, 0xd5, 0x20, 0xa3, 0x0b, 0x91, 0x6b, 0x9c, 0xa7, 0x1f, 0xd7, 0x1c, 0xda, + 0x47, 0x30, 0xfc, 0x9a, 0x34, 0x78, 0x3a, 0x4c, 0xa8, 0x36, 0x7d, 0x72, 0xc4, 0x00, 0x89, 0x3b, + 0x25, 0xee, 0xa8, 0x5f, 0x91, 0x1d, 0x09, 0x73, 0x2a, 0xd9, 0x40, 0x4b, 0xa0, 0x2a, 0x77, 0xa3, + 0xf6, 0xe3, 0xba, 0x85, 0x9f, 0x3a, 0x74, 0x89, 0x58, 0x2e, 0x71, 0x65, 0x99, 0xf8, 0xac, 0x58, + 0xe5, 0xfb, 0x64, 0xd7, 0x11, 0x19, 0x24, 0x30, 0xc2, 0x62, 0x6e, 0xfa, 0x0d, 0x9b, 0xf8, 0xb1, + 0xc4, 0xc3, 0x43, 0x52, 0x2d, 0xca, 0x63, 0x9f, 0x6a, 0xc8, 0xab, 0xb8, 0xda, 0xd8, 0xad, 0x43, + 0x52, 0x1d, 0x16, 0x33, 0x34, 0x8b, 0x54, 0xb7, 0x94, 0x12, 0x7b, 0xa0, 0x5f, 0xbb, 0x59, 0x3b, + 0xb7, 0x6e, 0xd6, 0x17, 0xa4, 0x96, 0xc2, 0x85, 0xbe, 0x71, 0xdd, 0x40, 0x42, 0xd5, 0x80, 0x85, + 0xe7, 0xf6, 0x90, 0x44, 0xb8, 0x32, 0x0f, 0x13, 0xca, 0xa7, 0x50, 0x7e, 0x4b, 0x2c, 0x12, 0x78, + 0xf7, 0xb5, 0x39, 0x24, 0x55, 0xf3, 0x60, 0x96, 0x85, 0xec, 0x03, 0x50, 0x49, 0x61, 0x5e, 0xd6, + 0x79, 0xe1, 0xb9, 0x42, 0xa7, 0x13, 0x9e, 0x65, 0x1f, 0x5a, 0xe8, 0x3e, 0xd9, 0xcd, 0x24, 0xcc, + 0xb8, 0xc8, 0xd5, 0xed, 0x6a, 0x8d, 0x22, 0x51, 0x8e, 0xe3, 0xb6, 0x2b, 0xff, 0x4d, 0x57, 0x53, + 0xf7, 0xee, 0xf5, 0x05, 0x4f, 0x75, 0x2f, 0x3d, 0x37, 0x23, 0xff, 0xaf, 0xfb, 0xf2, 0xb6, 0x17, + 0xd9, 0x5c, 0xd0, 0x5c, 0x4a, 0x48, 0xf5, 0x20, 0x33, 0x52, 0xca, 0x5d, 0xa0, 0x9a, 0x43, 0x51, + 0x5f, 0xb5, 0x1f, 0x92, 0xc6, 0x4d, 0x39, 0x15, 0x83, 0x02, 0xfd, 0xde, 0xb5, 0x4e, 0x1e, 0xbf, + 0xbc, 0x6a, 0x7a, 0xaf, 0xae, 0x9a, 0xde, 0x3f, 0x57, 0x4d, 0xef, 0xb7, 0xeb, 0xe6, 0xda, 0xab, + 0xeb, 0xe6, 0xda, 0x5f, 0xd7, 0xcd, 0xb5, 0x5f, 0xbf, 0x19, 0x71, 0x3d, 0xce, 0xcf, 0x3a, 0xe7, + 0x62, 0xda, 0x7d, 0xf2, 0xcb, 0xf3, 0x47, 0x3f, 0x83, 0x9e, 0x0b, 0x39, 0xe9, 0x9e, 0x8f, 0x29, + 0x4f, 0xbb, 0x17, 0xaf, 0xff, 0x8b, 0x9e, 0x6d, 0xe2, 0x7f, 0xe8, 0x77, 0xff, 0x06, 0x00, 0x00, + 0xff, 0xff, 0x3a, 0x4e, 0x27, 0x8f, 0xf0, 0x07, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/bundles/types/genesis.pb.go b/x/bundles/types/genesis.pb.go index 8ef7b9ee..137a277d 100644 --- a/x/bundles/types/genesis.pb.go +++ b/x/bundles/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/genesis.proto +// source: kyve/bundles/types/genesis.proto package types @@ -41,7 +41,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_21c07b409d3bb015, []int{0} + return fileDescriptor_eca691b45a3d29d6, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,39 +106,37 @@ func (m *GenesisState) GetBundleVersionMap() BundleVersionMap { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.bundles.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.bundles.types.GenesisState") } -func init() { - proto.RegisterFile("kyve/bundles/v1beta1/genesis.proto", fileDescriptor_21c07b409d3bb015) -} +func init() { proto.RegisterFile("kyve/bundles/types/genesis.proto", fileDescriptor_eca691b45a3d29d6) } -var fileDescriptor_21c07b409d3bb015 = []byte{ - // 371 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x4f, 0x4f, 0xc2, 0x30, - 0x1c, 0x86, 0x37, 0x41, 0x0e, 0xc3, 0x83, 0x99, 0x68, 0x90, 0x98, 0x89, 0x44, 0x0d, 0x07, 0xb3, - 0x05, 0xbc, 0x79, 0x24, 0x11, 0x0f, 0xfe, 0x09, 0xc1, 0x84, 0x44, 0x62, 0xb2, 0xb4, 0x50, 0x46, - 0xc3, 0x68, 0x9b, 0xb6, 0xa0, 0xf8, 0x29, 0xfc, 0x58, 0x1c, 0x39, 0x7a, 0x32, 0x06, 0xbe, 0x88, - 0x59, 0x5b, 0x4c, 0xd0, 0xc5, 0xdb, 0xf6, 0xeb, 0xf3, 0xbe, 0x4f, 0xdb, 0xd4, 0xa9, 0x8c, 0x66, - 0x53, 0x14, 0xc0, 0x09, 0xe9, 0xc7, 0x48, 0x04, 0xd3, 0x1a, 0x44, 0x12, 0xd4, 0x82, 0x08, 0x11, - 0x24, 0xb0, 0xf0, 0x19, 0xa7, 0x92, 0xba, 0x85, 0x84, 0xf1, 0x0d, 0xe3, 0x1b, 0xa6, 0x54, 0x88, - 0x68, 0x44, 0x15, 0x10, 0x24, 0x5f, 0x9a, 0x2d, 0xa5, 0xf7, 0xad, 0xb3, 0x9a, 0x39, 0x49, 0x65, - 0x18, 0xe0, 0x60, 0x6c, 0x90, 0xca, 0x22, 0xe3, 0xec, 0xdc, 0xe8, 0x4d, 0x3c, 0x4a, 0x20, 0x91, - 0x7b, 0xe5, 0xe4, 0x34, 0x50, 0xb4, 0xcb, 0x76, 0x35, 0x5f, 0x3f, 0xf2, 0xd3, 0x36, 0xe5, 0xb7, - 0x14, 0xd3, 0xc8, 0xce, 0x3f, 0x8f, 0xad, 0xb6, 0x49, 0xb8, 0xcf, 0x4e, 0x41, 0x73, 0x21, 0xe3, - 0x94, 0x51, 0x01, 0xe2, 0x30, 0xc6, 0x42, 0x16, 0xb7, 0xca, 0x99, 0x6a, 0xbe, 0x7e, 0x9a, 0xde, - 0xd4, 0x50, 0xff, 0x2d, 0x13, 0x30, 0x8d, 0x2e, 0xdc, 0x98, 0xde, 0x61, 0x21, 0xdd, 0xd0, 0xd9, - 0x1f, 0x60, 0x02, 0x62, 0xfc, 0x86, 0xfa, 0xa1, 0xf1, 0xa8, 0xfa, 0x8c, 0xaa, 0x3f, 0x4b, 0xaf, - 0x6f, 0xae, 0x23, 0xda, 0x63, 0xfa, 0xf7, 0x06, 0x9b, 0x63, 0x25, 0xc0, 0xce, 0x21, 0xa7, 0x13, - 0xd2, 0x0f, 0x39, 0x85, 0x98, 0x24, 0x67, 0x88, 0x38, 0x12, 0x42, 0x4b, 0xb2, 0x4a, 0x52, 0x4d, - 0x97, 0xb4, 0x93, 0x58, 0x3b, 0x49, 0xb5, 0x4c, 0xc8, 0x78, 0x0e, 0xf8, 0x9f, 0x15, 0xa5, 0xea, - 0x3a, 0xe6, 0x84, 0xe1, 0x14, 0x71, 0x81, 0x29, 0x09, 0xc7, 0x80, 0x15, 0xb7, 0xd5, 0x8d, 0x9f, - 0xff, 0x77, 0x4f, 0x1d, 0x8d, 0xdf, 0x03, 0x66, 0x0c, 0xbb, 0xf0, 0xf7, 0xbc, 0x39, 0x5f, 0x7a, - 0xf6, 0x62, 0xe9, 0xd9, 0x5f, 0x4b, 0xcf, 0x7e, 0x5f, 0x79, 0xd6, 0x62, 0xe5, 0x59, 0x1f, 0x2b, - 0xcf, 0xea, 0x5e, 0x44, 0x58, 0x0e, 0x27, 0xd0, 0xef, 0xd1, 0x71, 0x70, 0xfb, 0xd4, 0xb9, 0x7e, - 0x40, 0xf2, 0x85, 0xf2, 0x51, 0xd0, 0x1b, 0x02, 0x4c, 0x82, 0xd7, 0x9f, 0x97, 0x22, 0x67, 0x0c, - 0x09, 0x98, 0x53, 0x2f, 0xe4, 0xf2, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x69, 0xe4, 0xb6, 0x4b, 0xba, - 0x02, 0x00, 0x00, +var fileDescriptor_eca691b45a3d29d6 = []byte{ + // 369 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x4f, 0x4f, 0x22, 0x31, + 0x1c, 0x86, 0x67, 0x16, 0x96, 0x43, 0xd9, 0xc3, 0x66, 0x96, 0x35, 0xc8, 0x61, 0x20, 0x68, 0x0c, + 0x07, 0x33, 0x4d, 0xf0, 0xe2, 0x99, 0x44, 0x3c, 0xf8, 0x27, 0x04, 0x13, 0xa2, 0x24, 0x66, 0xd2, + 0x81, 0x32, 0x34, 0x0c, 0x6d, 0xd3, 0x16, 0x14, 0x3f, 0x85, 0x9f, 0xca, 0x70, 0xe4, 0xe8, 0xc9, + 0x18, 0xf8, 0x22, 0x66, 0xda, 0x72, 0x40, 0xc6, 0xdb, 0xcc, 0xaf, 0xcf, 0xfb, 0xbc, 0x6d, 0x53, + 0x50, 0x9b, 0x2c, 0xe6, 0x18, 0x46, 0x33, 0x3a, 0x4c, 0xb0, 0x84, 0x6a, 0xc1, 0xb1, 0x84, 0x31, + 0xa6, 0x58, 0x12, 0x19, 0x70, 0xc1, 0x14, 0xf3, 0xbc, 0x94, 0x08, 0x2c, 0x11, 0x68, 0xa2, 0x52, + 0x8a, 0x59, 0xcc, 0xf4, 0x32, 0x4c, 0xbf, 0x0c, 0x59, 0xc9, 0x72, 0x6d, 0x73, 0x86, 0xa8, 0x66, + 0x10, 0x1c, 0x09, 0x34, 0xb5, 0x40, 0xfd, 0x2d, 0x07, 0xfe, 0x5c, 0x9a, 0xfa, 0x3b, 0x85, 0x14, + 0xf6, 0xce, 0x41, 0xc1, 0x00, 0x65, 0xb7, 0xe6, 0x36, 0x8a, 0xcd, 0x4a, 0xb0, 0xbf, 0x9d, 0xa0, + 0xa3, 0x89, 0x56, 0x7e, 0xf9, 0x51, 0x75, 0xba, 0x96, 0xf7, 0xfa, 0xa0, 0x64, 0xa8, 0x90, 0x0b, + 0xc6, 0x99, 0x44, 0x49, 0x98, 0x10, 0xa9, 0xca, 0xbf, 0x6a, 0xb9, 0x46, 0xb1, 0x59, 0xcf, 0xf2, + 0xb4, 0xf4, 0x5f, 0xc7, 0xe2, 0xd6, 0xe7, 0x45, 0x3b, 0xd3, 0x6b, 0x22, 0x95, 0xf7, 0x08, 0xfe, + 0x8f, 0x08, 0x45, 0x09, 0x79, 0xc1, 0xc3, 0xd0, 0xb6, 0x68, 0x79, 0x4e, 0xcb, 0x8f, 0xb2, 0xe4, + 0xed, 0x6d, 0xc0, 0xb4, 0x58, 0xfb, 0xbf, 0xd1, 0xee, 0x58, 0xeb, 0x63, 0x70, 0x28, 0xd8, 0x8c, + 0x0e, 0x43, 0xc1, 0x22, 0x42, 0xd3, 0xfd, 0xc7, 0x02, 0x4b, 0x69, 0x2a, 0xf2, 0xba, 0xe2, 0x24, + 0xab, 0xa2, 0x9b, 0x86, 0xba, 0x69, 0xa6, 0x63, 0x23, 0xb6, 0xe5, 0x40, 0xec, 0xad, 0xe8, 0xa2, + 0x7b, 0x60, 0x4f, 0x17, 0xce, 0xb1, 0x90, 0x84, 0xd1, 0x70, 0x8a, 0x78, 0xf9, 0xb7, 0xbe, 0xe9, + 0xe3, 0x9f, 0x6f, 0xa8, 0x67, 0xe0, 0x1b, 0xc4, 0xad, 0xff, 0x6f, 0xf4, 0x7d, 0xde, 0x5e, 0xae, + 0x7d, 0x77, 0xb5, 0xf6, 0xdd, 0xcf, 0xb5, 0xef, 0xbe, 0x6e, 0x7c, 0x67, 0xb5, 0xf1, 0x9d, 0xf7, + 0x8d, 0xef, 0xf4, 0x4f, 0x63, 0xa2, 0xc6, 0xb3, 0x28, 0x18, 0xb0, 0x29, 0xbc, 0x7a, 0xe8, 0x5d, + 0xdc, 0x62, 0xf5, 0xc4, 0xc4, 0x04, 0x0e, 0xc6, 0x88, 0x50, 0xf8, 0xbc, 0xfb, 0x3a, 0xa2, 0x82, + 0x7e, 0x17, 0x67, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x44, 0xf5, 0x3f, 0x2c, 0xa8, 0x02, 0x00, + 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/bundles/types/params.pb.go b/x/bundles/types/params.pb.go index 4413334d..d2d72bc7 100644 --- a/x/bundles/types/params.pb.go +++ b/x/bundles/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/params.proto +// source: kyve/bundles/types/params.proto package types @@ -40,7 +40,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_cfd3a74b72a01aaa, []int{0} + return fileDescriptor_05fe2c749fb3ba4d, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,32 +84,32 @@ func (m *Params) GetMaxPoints() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "kyve.bundles.v1beta1.Params") + proto.RegisterType((*Params)(nil), "kyve.bundles.types.Params") } -func init() { proto.RegisterFile("kyve/bundles/v1beta1/params.proto", fileDescriptor_cfd3a74b72a01aaa) } +func init() { proto.RegisterFile("kyve/bundles/types/params.proto", fileDescriptor_05fe2c749fb3ba4d) } -var fileDescriptor_cfd3a74b72a01aaa = []byte{ - // 300 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xc1, 0x4a, 0xf3, 0x40, - 0x14, 0x85, 0x33, 0xff, 0x5f, 0x0a, 0x9d, 0xaa, 0x8b, 0xd0, 0x45, 0x50, 0x4c, 0xab, 0x22, 0x74, - 0x21, 0x19, 0x8a, 0x6f, 0x50, 0x6b, 0x37, 0x8a, 0x94, 0x22, 0x82, 0x6e, 0xc2, 0x64, 0x7a, 0x4d, - 0x43, 0x3b, 0xb9, 0x21, 0x73, 0x53, 0xdb, 0xb7, 0xf0, 0xb1, 0xba, 0xec, 0x52, 0x44, 0x8a, 0x34, - 0x2f, 0x22, 0x4d, 0x82, 0x6b, 0x77, 0x97, 0xc3, 0xf7, 0x1d, 0x2e, 0x87, 0x9f, 0xcd, 0x56, 0x0b, - 0x10, 0x41, 0x16, 0x4f, 0xe6, 0x60, 0xc4, 0xa2, 0x17, 0x00, 0xc9, 0x9e, 0x48, 0x64, 0x2a, 0xb5, - 0xf1, 0x92, 0x14, 0x09, 0xed, 0xd6, 0x1e, 0xf1, 0x2a, 0xc4, 0xab, 0x90, 0xe3, 0x56, 0x88, 0x21, - 0x16, 0x80, 0xd8, 0x5f, 0x25, 0x7b, 0xfe, 0xc5, 0x78, 0x7d, 0x54, 0xc8, 0xf6, 0x25, 0x3f, 0xca, - 0x92, 0x39, 0xca, 0x89, 0x4f, 0x91, 0x06, 0xcc, 0xc8, 0x61, 0x1d, 0xd6, 0xad, 0x8d, 0x0f, 0xcb, - 0xf4, 0xb1, 0x0c, 0xed, 0x21, 0x3f, 0x30, 0x84, 0xa9, 0x0c, 0xc1, 0x57, 0x68, 0xc8, 0xf9, 0xd7, - 0x61, 0xdd, 0x46, 0xff, 0x62, 0xbd, 0x6d, 0x5b, 0x9f, 0xdb, 0xf6, 0x89, 0x42, 0xa3, 0xd1, 0x98, - 0xc9, 0xcc, 0x8b, 0x50, 0x68, 0x49, 0x53, 0xef, 0x1e, 0x42, 0xa9, 0x56, 0x03, 0x50, 0xe3, 0x66, - 0x25, 0xde, 0xa0, 0x21, 0x7b, 0xc0, 0x9b, 0x31, 0xd0, 0x1b, 0xa6, 0x33, 0xff, 0x15, 0xc0, 0xf9, - 0xff, 0xf7, 0x1a, 0x5e, 0x79, 0x43, 0x00, 0xfb, 0x94, 0x73, 0x2d, 0x97, 0x7e, 0x82, 0x51, 0x4c, - 0xc6, 0xa9, 0x15, 0x0f, 0x37, 0xb4, 0x5c, 0x8e, 0x8a, 0xa0, 0x3f, 0x5c, 0xef, 0x5c, 0xb6, 0xd9, - 0xb9, 0xec, 0x7b, 0xe7, 0xb2, 0xf7, 0xdc, 0xb5, 0x36, 0xb9, 0x6b, 0x7d, 0xe4, 0xae, 0xf5, 0x72, - 0x15, 0x46, 0x34, 0xcd, 0x02, 0x4f, 0xa1, 0x16, 0x77, 0xcf, 0x4f, 0xb7, 0x0f, 0x65, 0xa7, 0x50, - 0x53, 0x19, 0xc5, 0x62, 0xf9, 0xbb, 0x30, 0xad, 0x12, 0x30, 0x41, 0xbd, 0x58, 0xeb, 0xfa, 0x27, - 0x00, 0x00, 0xff, 0xff, 0xed, 0xea, 0x8e, 0xaf, 0x7e, 0x01, 0x00, 0x00, +var fileDescriptor_05fe2c749fb3ba4d = []byte{ + // 294 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xc1, 0x4a, 0x03, 0x31, + 0x14, 0x45, 0x27, 0x5a, 0x0a, 0x4d, 0xd5, 0x45, 0x70, 0x31, 0x28, 0xa6, 0x45, 0x11, 0xba, 0x90, + 0x64, 0xe1, 0x1f, 0xd4, 0xda, 0x8d, 0x22, 0xa5, 0x88, 0xa0, 0x9b, 0x21, 0x4d, 0x9f, 0xd3, 0xa1, + 0xcd, 0xbc, 0x61, 0x92, 0xd1, 0xf6, 0x2f, 0xfc, 0xac, 0x2e, 0xbb, 0x14, 0x91, 0x22, 0xed, 0x8f, + 0x48, 0x33, 0xb3, 0x71, 0xe7, 0x2e, 0xdc, 0x9c, 0x73, 0x79, 0x5c, 0xda, 0x9a, 0x2e, 0xde, 0x40, + 0x8e, 0x8a, 0x74, 0x3c, 0x03, 0x2b, 0xdd, 0x22, 0x03, 0x2b, 0x33, 0x95, 0x2b, 0x63, 0x45, 0x96, + 0xa3, 0x43, 0xc6, 0x76, 0x80, 0xa8, 0x00, 0xe1, 0x81, 0x93, 0xe3, 0x18, 0x63, 0xf4, 0xdf, 0x72, + 0xf7, 0x2a, 0xc9, 0xf3, 0x6f, 0x42, 0xeb, 0x03, 0xaf, 0xb2, 0x4b, 0x7a, 0x54, 0x64, 0x33, 0x54, + 0xe3, 0xc8, 0x25, 0x06, 0xb0, 0x70, 0x21, 0x69, 0x93, 0x4e, 0x6d, 0x78, 0x58, 0xa6, 0x8f, 0x65, + 0xc8, 0xfa, 0xf4, 0xc0, 0x3a, 0xcc, 0x55, 0x0c, 0x91, 0x46, 0xeb, 0xc2, 0xbd, 0x36, 0xe9, 0x34, + 0xba, 0x17, 0xcb, 0x75, 0x2b, 0xf8, 0x5a, 0xb7, 0x4e, 0x35, 0x5a, 0x83, 0xd6, 0x8e, 0xa7, 0x22, + 0x41, 0x69, 0x94, 0x9b, 0x88, 0x7b, 0x88, 0x95, 0x5e, 0xf4, 0x40, 0x0f, 0x9b, 0x95, 0x78, 0x83, + 0xd6, 0xb1, 0x1e, 0x6d, 0xa6, 0xe0, 0xde, 0x31, 0x9f, 0x46, 0xaf, 0x00, 0xe1, 0xfe, 0xff, 0x6b, + 0x68, 0xe5, 0xf5, 0x01, 0xd8, 0x19, 0xa5, 0x46, 0xcd, 0xa3, 0x0c, 0x93, 0xd4, 0xd9, 0xb0, 0xe6, + 0x0f, 0x6e, 0x18, 0x35, 0x1f, 0xf8, 0xa0, 0xdb, 0x5f, 0x6e, 0x38, 0x59, 0x6d, 0x38, 0xf9, 0xd9, + 0x70, 0xf2, 0xb1, 0xe5, 0xc1, 0x6a, 0xcb, 0x83, 0xcf, 0x2d, 0x0f, 0x5e, 0xae, 0xe2, 0xc4, 0x4d, + 0x8a, 0x91, 0xd0, 0x68, 0xe4, 0xdd, 0xf3, 0xd3, 0xed, 0x43, 0xd9, 0x29, 0xf5, 0x44, 0x25, 0xa9, + 0x9c, 0xff, 0x5d, 0x77, 0x54, 0xf7, 0x6b, 0x5d, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x4b, 0x3c, + 0x73, 0x7f, 0x7a, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/bundles/types/query.pb.go b/x/bundles/types/query.pb.go index 900e380e..f1bdc9ee 100644 --- a/x/bundles/types/query.pb.go +++ b/x/bundles/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/query.proto +// source: kyve/bundles/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_417b774a70d5f5fd, []int{0} + return fileDescriptor_216c67b787453233, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_417b774a70d5f5fd, []int{1} + return fileDescriptor_216c67b787453233, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,33 +113,33 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.bundles.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.bundles.v1beta1.QueryParamsResponse") -} - -func init() { proto.RegisterFile("kyve/bundles/v1beta1/query.proto", fileDescriptor_417b774a70d5f5fd) } - -var fileDescriptor_417b774a70d5f5fd = []byte{ - // 289 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0x2a, 0xcd, 0x4b, 0xc9, 0x49, 0x2d, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, 0xa9, - 0xd0, 0x83, 0xaa, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd0, 0x07, - 0xb1, 0x20, 0x6a, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, 0xf5, - 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, 0x8a, 0x58, 0xed, - 0x2a, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x2a, 0x51, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xd9, 0x1d, 0x00, - 0x16, 0x0c, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0x0a, 0xe4, 0x12, 0x46, 0x11, 0x2d, 0x2e, - 0xc8, 0xcf, 0x2b, 0x4e, 0x15, 0xb2, 0xe2, 0x62, 0x83, 0x68, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, - 0x36, 0x92, 0xd1, 0xc3, 0xe6, 0x54, 0x3d, 0x88, 0x2e, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, - 0xa0, 0x3a, 0x8c, 0x7a, 0x19, 0xb9, 0x58, 0xc1, 0x66, 0x0a, 0x35, 0x33, 0x72, 0xb1, 0x41, 0x94, - 0x08, 0x69, 0x60, 0x37, 0x00, 0xd3, 0x45, 0x52, 0x9a, 0x44, 0xa8, 0x84, 0xb8, 0x52, 0x49, 0xa5, - 0xe9, 0xf2, 0x93, 0xc9, 0x4c, 0x72, 0x42, 0x32, 0xfa, 0x78, 0xbc, 0xef, 0xe4, 0x76, 0xe2, 0x91, - 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, - 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x3a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, - 0xc9, 0xf9, 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, - 0xc9, 0x19, 0x89, 0x99, 0x79, 0xfa, 0x15, 0x70, 0x03, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0xe1, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x3e, 0x95, 0xfc, 0xd8, 0x01, 0x00, - 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.bundles.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.bundles.types.QueryParamsResponse") +} + +func init() { proto.RegisterFile("kyve/bundles/types/query.proto", fileDescriptor_216c67b787453233) } + +var fileDescriptor_216c67b787453233 = []byte{ + // 290 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0x2a, 0xcd, 0x4b, 0xc9, 0x49, 0x2d, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, + 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0xc9, 0xeb, 0x41, + 0xe5, 0xf5, 0xc0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x69, 0x7d, 0x10, 0x0b, 0xa2, + 0x52, 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, + 0x2f, 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x2a, 0x2b, 0x8f, 0xc5, 0x9e, 0x82, 0xc4, + 0xa2, 0xc4, 0x5c, 0xa8, 0x02, 0x25, 0x11, 0x2e, 0xa1, 0x40, 0x90, 0xbd, 0x01, 0x60, 0xc1, 0xa0, + 0xd4, 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x25, 0x7f, 0x2e, 0x61, 0x14, 0xd1, 0xe2, 0x82, 0xfc, 0xbc, + 0xe2, 0x54, 0x21, 0x0b, 0x2e, 0x36, 0x88, 0x66, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x29, + 0x3d, 0x4c, 0x67, 0xea, 0x41, 0xf4, 0x38, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0x55, 0x6f, + 0xd4, 0xc1, 0xc8, 0xc5, 0x0a, 0x36, 0x51, 0xa8, 0x9e, 0x8b, 0x0d, 0xa2, 0x42, 0x48, 0x0d, 0x9b, + 0x6e, 0x4c, 0xc7, 0x48, 0xa9, 0x13, 0x54, 0x07, 0x71, 0x9e, 0x92, 0x4a, 0xd3, 0xe5, 0x27, 0x93, + 0x99, 0xe4, 0x84, 0x64, 0xf4, 0x51, 0x7c, 0x5d, 0x66, 0x98, 0x94, 0x5a, 0x92, 0x68, 0x08, 0xf5, + 0xb7, 0x93, 0xdb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, + 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa4, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x7b, 0x47, 0x86, 0xb9, 0xfa, 0xa5, 0x96, + 0x94, 0xe7, 0x17, 0x65, 0xeb, 0x27, 0x67, 0x24, 0x66, 0xe6, 0xe9, 0x57, 0xa0, 0x06, 0x63, 0x12, + 0x1b, 0x38, 0x00, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x45, 0xc8, 0xdc, 0xcd, 0xcb, 0x01, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -168,7 +168,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -203,7 +203,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Query/Params", + FullMethod: "/kyve.bundles.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -212,7 +212,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.bundles.v1beta1.Query", + ServiceName: "kyve.bundles.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,7 +221,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/bundles/v1beta1/query.proto", + Metadata: "kyve/bundles/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/bundles/types/query.pb.gw.go b/x/bundles/types/query.pb.gw.go index f49983e5..4dc39663 100644 --- a/x/bundles/types/query.pb.gw.go +++ b/x/bundles/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/bundles/v1beta1/query.proto +// source: kyve/bundles/types/query.proto /* Package types is a reverse proxy. diff --git a/x/bundles/types/tx.pb.go b/x/bundles/types/tx.pb.go index e025e85d..17423701 100644 --- a/x/bundles/types/tx.pb.go +++ b/x/bundles/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/bundles/v1beta1/tx.proto +// source: kyve/bundles/types/tx.proto package types @@ -63,7 +63,7 @@ func (x VoteType) String() string { } func (VoteType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{0} + return fileDescriptor_370775b0f8e8f4e3, []int{0} } // MsgSubmitBundleProposal defines a SDK message for submitting a bundle proposal. @@ -96,7 +96,7 @@ func (m *MsgSubmitBundleProposal) Reset() { *m = MsgSubmitBundleProposal func (m *MsgSubmitBundleProposal) String() string { return proto.CompactTextString(m) } func (*MsgSubmitBundleProposal) ProtoMessage() {} func (*MsgSubmitBundleProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{0} + return fileDescriptor_370775b0f8e8f4e3, []int{0} } func (m *MsgSubmitBundleProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -210,7 +210,7 @@ func (m *MsgSubmitBundleProposalResponse) Reset() { *m = MsgSubmitBundle func (m *MsgSubmitBundleProposalResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitBundleProposalResponse) ProtoMessage() {} func (*MsgSubmitBundleProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{1} + return fileDescriptor_370775b0f8e8f4e3, []int{1} } func (m *MsgSubmitBundleProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -250,14 +250,14 @@ type MsgVoteBundleProposal struct { // storage_id ... StorageId string `protobuf:"bytes,4,opt,name=storage_id,json=storageId,proto3" json:"storage_id,omitempty"` // vote ... - Vote VoteType `protobuf:"varint,5,opt,name=vote,proto3,enum=kyve.bundles.v1beta1.VoteType" json:"vote,omitempty"` + Vote VoteType `protobuf:"varint,5,opt,name=vote,proto3,enum=kyve.bundles.types.VoteType" json:"vote,omitempty"` } func (m *MsgVoteBundleProposal) Reset() { *m = MsgVoteBundleProposal{} } func (m *MsgVoteBundleProposal) String() string { return proto.CompactTextString(m) } func (*MsgVoteBundleProposal) ProtoMessage() {} func (*MsgVoteBundleProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{2} + return fileDescriptor_370775b0f8e8f4e3, []int{2} } func (m *MsgVoteBundleProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -329,7 +329,7 @@ func (m *MsgVoteBundleProposalResponse) Reset() { *m = MsgVoteBundleProp func (m *MsgVoteBundleProposalResponse) String() string { return proto.CompactTextString(m) } func (*MsgVoteBundleProposalResponse) ProtoMessage() {} func (*MsgVoteBundleProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{3} + return fileDescriptor_370775b0f8e8f4e3, []int{3} } func (m *MsgVoteBundleProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -372,7 +372,7 @@ func (m *MsgClaimUploaderRole) Reset() { *m = MsgClaimUploaderRole{} } func (m *MsgClaimUploaderRole) String() string { return proto.CompactTextString(m) } func (*MsgClaimUploaderRole) ProtoMessage() {} func (*MsgClaimUploaderRole) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{4} + return fileDescriptor_370775b0f8e8f4e3, []int{4} } func (m *MsgClaimUploaderRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -430,7 +430,7 @@ func (m *MsgClaimUploaderRoleResponse) Reset() { *m = MsgClaimUploaderRo func (m *MsgClaimUploaderRoleResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimUploaderRoleResponse) ProtoMessage() {} func (*MsgClaimUploaderRoleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{5} + return fileDescriptor_370775b0f8e8f4e3, []int{5} } func (m *MsgClaimUploaderRoleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -475,7 +475,7 @@ func (m *MsgSkipUploaderRole) Reset() { *m = MsgSkipUploaderRole{} } func (m *MsgSkipUploaderRole) String() string { return proto.CompactTextString(m) } func (*MsgSkipUploaderRole) ProtoMessage() {} func (*MsgSkipUploaderRole) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{6} + return fileDescriptor_370775b0f8e8f4e3, []int{6} } func (m *MsgSkipUploaderRole) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -540,7 +540,7 @@ func (m *MsgSkipUploaderRoleResponse) Reset() { *m = MsgSkipUploaderRole func (m *MsgSkipUploaderRoleResponse) String() string { return proto.CompactTextString(m) } func (*MsgSkipUploaderRoleResponse) ProtoMessage() {} func (*MsgSkipUploaderRoleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{7} + return fileDescriptor_370775b0f8e8f4e3, []int{7} } func (m *MsgSkipUploaderRoleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -581,7 +581,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{8} + return fileDescriptor_370775b0f8e8f4e3, []int{8} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -632,7 +632,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9ed52bfae1633bf9, []int{9} + return fileDescriptor_370775b0f8e8f4e3, []int{9} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -662,72 +662,72 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterEnum("kyve.bundles.v1beta1.VoteType", VoteType_name, VoteType_value) - proto.RegisterType((*MsgSubmitBundleProposal)(nil), "kyve.bundles.v1beta1.MsgSubmitBundleProposal") - proto.RegisterType((*MsgSubmitBundleProposalResponse)(nil), "kyve.bundles.v1beta1.MsgSubmitBundleProposalResponse") - proto.RegisterType((*MsgVoteBundleProposal)(nil), "kyve.bundles.v1beta1.MsgVoteBundleProposal") - proto.RegisterType((*MsgVoteBundleProposalResponse)(nil), "kyve.bundles.v1beta1.MsgVoteBundleProposalResponse") - proto.RegisterType((*MsgClaimUploaderRole)(nil), "kyve.bundles.v1beta1.MsgClaimUploaderRole") - proto.RegisterType((*MsgClaimUploaderRoleResponse)(nil), "kyve.bundles.v1beta1.MsgClaimUploaderRoleResponse") - proto.RegisterType((*MsgSkipUploaderRole)(nil), "kyve.bundles.v1beta1.MsgSkipUploaderRole") - proto.RegisterType((*MsgSkipUploaderRoleResponse)(nil), "kyve.bundles.v1beta1.MsgSkipUploaderRoleResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.bundles.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.bundles.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/bundles/v1beta1/tx.proto", fileDescriptor_9ed52bfae1633bf9) } - -var fileDescriptor_9ed52bfae1633bf9 = []byte{ - // 781 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0xcd, 0x8e, 0xda, 0x56, - 0x14, 0xc6, 0x33, 0x0c, 0x03, 0x27, 0xe9, 0x84, 0x38, 0xd0, 0x31, 0x4e, 0xf1, 0xa4, 0x48, 0x91, - 0x52, 0xda, 0xc1, 0x82, 0xa8, 0x5d, 0x64, 0x07, 0x09, 0x51, 0xad, 0x14, 0x8a, 0x80, 0x41, 0x4a, - 0x37, 0xe8, 0x82, 0x6f, 0x8d, 0x05, 0xe6, 0x5a, 0xbe, 0x17, 0x3a, 0x8e, 0xba, 0xa8, 0xba, 0xea, - 0xa6, 0x52, 0xdf, 0xa1, 0x2f, 0x90, 0x45, 0xdf, 0xa0, 0x9b, 0xee, 0x1a, 0x75, 0xd5, 0x65, 0x35, - 0x53, 0x29, 0xaf, 0x51, 0xdd, 0xeb, 0x1f, 0x32, 0xfc, 0x48, 0x33, 0x52, 0xab, 0xae, 0xe0, 0x7c, - 0xdf, 0x77, 0xcf, 0xf9, 0xce, 0xf5, 0x39, 0x36, 0x14, 0xa7, 0xfe, 0x12, 0xeb, 0xa3, 0xc5, 0xdc, - 0x9c, 0x61, 0xaa, 0x2f, 0xab, 0x23, 0xcc, 0x50, 0x55, 0x67, 0xe7, 0x15, 0xd7, 0x23, 0x8c, 0xc8, - 0x39, 0x4e, 0x57, 0x42, 0xba, 0x12, 0xd2, 0xea, 0xf1, 0x98, 0x50, 0x87, 0x50, 0xdd, 0xa1, 0x96, - 0xbe, 0xac, 0xf2, 0x9f, 0x40, 0xae, 0x16, 0x02, 0x62, 0x28, 0x22, 0x3d, 0x08, 0x42, 0x2a, 0x67, - 0x11, 0x8b, 0x04, 0x38, 0xff, 0x17, 0xa0, 0xa5, 0xbf, 0xf7, 0xe0, 0xb8, 0x45, 0xad, 0xde, 0x62, - 0xe4, 0xd8, 0xac, 0x21, 0xca, 0x74, 0x3c, 0xe2, 0x12, 0x8a, 0x66, 0xb2, 0x02, 0x87, 0x63, 0x0f, - 0x23, 0x46, 0x3c, 0x45, 0x7a, 0x20, 0x3d, 0xca, 0x74, 0xa3, 0x50, 0x7e, 0x1f, 0x52, 0x94, 0xa1, - 0x29, 0xf6, 0x94, 0x3d, 0x41, 0x84, 0x91, 0x7c, 0x0c, 0x87, 0x2e, 0x21, 0xb3, 0xa1, 0x6d, 0x2a, - 0xfb, 0x0f, 0xa4, 0x47, 0xc9, 0x6e, 0x8a, 0x87, 0x86, 0x29, 0x17, 0x01, 0x28, 0x23, 0x1e, 0xb2, - 0x30, 0xe7, 0x92, 0xe2, 0x50, 0x26, 0x44, 0x0c, 0x53, 0xbe, 0x0f, 0x19, 0x13, 0x31, 0x34, 0xa4, - 0xf6, 0x2b, 0xac, 0x1c, 0x88, 0x93, 0x69, 0x0e, 0xf4, 0xec, 0x57, 0x38, 0x26, 0x27, 0x88, 0x4e, - 0x94, 0x94, 0x38, 0x2a, 0xc8, 0xcf, 0x11, 0x9d, 0xf0, 0xc4, 0x5f, 0x7b, 0xc4, 0x19, 0xda, 0x73, - 0x13, 0x9f, 0x2b, 0x87, 0xe2, 0x68, 0x86, 0x23, 0x06, 0x07, 0xe4, 0x13, 0xb8, 0x15, 0xdc, 0x5d, - 0x90, 0x3a, 0x2d, 0x78, 0x08, 0x20, 0x91, 0xbc, 0x00, 0x69, 0x71, 0x7e, 0x8a, 0x7d, 0x25, 0x13, - 0x34, 0xc9, 0xe3, 0x17, 0xd8, 0x97, 0xf3, 0x90, 0x62, 0x44, 0x10, 0x20, 0x88, 0x03, 0x46, 0x38, - 0xfc, 0x10, 0x8e, 0xa2, 0x94, 0x0b, 0xc7, 0x41, 0x9e, 0xaf, 0xdc, 0x12, 0xf4, 0x7b, 0x61, 0xd6, - 0x00, 0x7c, 0x72, 0xfb, 0xfb, 0xb7, 0xaf, 0xcb, 0xd1, 0x85, 0x95, 0x3e, 0x84, 0x93, 0x1d, 0xb7, - 0xdc, 0xc5, 0xd4, 0x25, 0x73, 0x8a, 0x4b, 0xbf, 0x4a, 0x90, 0x6f, 0x51, 0x6b, 0x40, 0x18, 0xfe, - 0xdf, 0x9e, 0x43, 0x0d, 0x92, 0x4b, 0xc2, 0x82, 0x47, 0x70, 0x54, 0xd3, 0x2a, 0xdb, 0x86, 0xaf, - 0xc2, 0x1d, 0xf6, 0x7d, 0x17, 0x77, 0x85, 0x76, 0xad, 0xd1, 0x13, 0x28, 0x6e, 0x6d, 0x22, 0x6e, - 0x93, 0x40, 0xae, 0x45, 0xad, 0xa7, 0x33, 0x64, 0x3b, 0x67, 0xee, 0x8c, 0x20, 0x13, 0x7b, 0x5d, - 0x32, 0xc3, 0xff, 0x62, 0x93, 0x6b, 0x8e, 0x34, 0xf8, 0x60, 0x5b, 0xc1, 0xd8, 0xd0, 0x8f, 0x12, - 0xdc, 0xe3, 0xcf, 0x66, 0x6a, 0xbb, 0xff, 0x91, 0xa1, 0xb5, 0x21, 0x4d, 0xae, 0x0d, 0xe9, 0x9a, - 0xdf, 0x22, 0xdc, 0xdf, 0x62, 0x27, 0xb6, 0x4b, 0xe1, 0x4e, 0x8b, 0x5a, 0x67, 0xae, 0x89, 0x18, - 0xee, 0x20, 0x0f, 0x39, 0x54, 0xfe, 0x0c, 0x32, 0x68, 0xc1, 0x26, 0xc4, 0xb3, 0x99, 0x1f, 0x78, - 0x6d, 0x28, 0x7f, 0xfc, 0x72, 0x9a, 0x0b, 0xd7, 0xbf, 0x6e, 0x9a, 0x1e, 0xa6, 0xb4, 0xc7, 0x3c, - 0x7b, 0x6e, 0x75, 0x57, 0x52, 0xde, 0xa1, 0x8b, 0x7c, 0x5e, 0x23, 0x6c, 0x24, 0x0a, 0x9f, 0x1c, - 0x71, 0x47, 0x2b, 0x65, 0xa9, 0x20, 0x5e, 0x12, 0xef, 0x16, 0x8d, 0xfc, 0x94, 0xe7, 0x90, 0x8e, - 0x06, 0x42, 0x2e, 0x40, 0x7e, 0xf0, 0x65, 0xbf, 0x39, 0xec, 0xbf, 0xec, 0x34, 0x87, 0x67, 0xed, - 0x5e, 0xa7, 0xf9, 0xd4, 0x78, 0x6e, 0x34, 0x9f, 0x65, 0x13, 0xf2, 0x3d, 0xb8, 0xb3, 0xa2, 0x06, - 0xf5, 0x2f, 0x8c, 0x67, 0x59, 0x49, 0xce, 0xc3, 0xdd, 0x15, 0x68, 0xb4, 0x03, 0x78, 0xef, 0x2a, - 0x5c, 0x6f, 0xf4, 0xfa, 0x75, 0xa3, 0x9d, 0xdd, 0x57, 0x93, 0x3f, 0xfc, 0xac, 0x25, 0x6a, 0xbf, - 0x27, 0x61, 0xbf, 0x45, 0x2d, 0xf9, 0x5b, 0xc8, 0x6d, 0x7d, 0x69, 0x9d, 0x6e, 0x1f, 0xda, 0x1d, - 0xdb, 0xa7, 0x7e, 0x7a, 0x23, 0x79, 0xd4, 0xb5, 0xbc, 0x04, 0x79, 0xcb, 0xa2, 0x7e, 0xbc, 0x33, - 0xd9, 0xa6, 0x58, 0x7d, 0x7c, 0x03, 0x71, 0x5c, 0x97, 0xc2, 0xdd, 0xcd, 0xd5, 0x29, 0xef, 0xcc, - 0xb4, 0xa1, 0x55, 0x6b, 0xd7, 0xd7, 0xc6, 0x45, 0x5d, 0xc8, 0x6e, 0x6c, 0xc7, 0x47, 0xbb, 0xef, - 0x6d, 0x4d, 0xaa, 0x56, 0xaf, 0x2d, 0x8d, 0x2b, 0x9a, 0x70, 0xfb, 0xca, 0x84, 0x3f, 0xdc, 0x99, - 0xe2, 0x5d, 0x99, 0x7a, 0x7a, 0x2d, 0x59, 0x54, 0x45, 0x3d, 0xf8, 0xee, 0xed, 0xeb, 0xb2, 0xd4, - 0x78, 0xfe, 0xdb, 0x85, 0x26, 0xbd, 0xb9, 0xd0, 0xa4, 0xbf, 0x2e, 0x34, 0xe9, 0xa7, 0x4b, 0x2d, - 0xf1, 0xe6, 0x52, 0x4b, 0xfc, 0x79, 0xa9, 0x25, 0xbe, 0xfa, 0xc4, 0xb2, 0xd9, 0x64, 0x31, 0xaa, - 0x8c, 0x89, 0xa3, 0xbf, 0x78, 0x39, 0x68, 0xb6, 0x31, 0xfb, 0x86, 0x78, 0x53, 0x7d, 0x3c, 0x41, - 0xf6, 0x5c, 0x3f, 0x8f, 0xbf, 0xda, 0xcc, 0x77, 0x31, 0x1d, 0xa5, 0xc4, 0x17, 0xf5, 0xf1, 0x3f, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xf0, 0x5e, 0xce, 0xd2, 0x07, 0x00, 0x00, + proto.RegisterEnum("kyve.bundles.types.VoteType", VoteType_name, VoteType_value) + proto.RegisterType((*MsgSubmitBundleProposal)(nil), "kyve.bundles.types.MsgSubmitBundleProposal") + proto.RegisterType((*MsgSubmitBundleProposalResponse)(nil), "kyve.bundles.types.MsgSubmitBundleProposalResponse") + proto.RegisterType((*MsgVoteBundleProposal)(nil), "kyve.bundles.types.MsgVoteBundleProposal") + proto.RegisterType((*MsgVoteBundleProposalResponse)(nil), "kyve.bundles.types.MsgVoteBundleProposalResponse") + proto.RegisterType((*MsgClaimUploaderRole)(nil), "kyve.bundles.types.MsgClaimUploaderRole") + proto.RegisterType((*MsgClaimUploaderRoleResponse)(nil), "kyve.bundles.types.MsgClaimUploaderRoleResponse") + proto.RegisterType((*MsgSkipUploaderRole)(nil), "kyve.bundles.types.MsgSkipUploaderRole") + proto.RegisterType((*MsgSkipUploaderRoleResponse)(nil), "kyve.bundles.types.MsgSkipUploaderRoleResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.bundles.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.bundles.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/bundles/types/tx.proto", fileDescriptor_370775b0f8e8f4e3) } + +var fileDescriptor_370775b0f8e8f4e3 = []byte{ + // 775 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0xcf, 0x6f, 0xe2, 0x46, + 0x14, 0xc6, 0x09, 0x21, 0xf0, 0x76, 0x9b, 0x65, 0x67, 0xa1, 0x31, 0xce, 0xc6, 0xd9, 0x52, 0x55, + 0x4d, 0xb3, 0x2d, 0xde, 0x1f, 0x52, 0x0f, 0x7b, 0x83, 0x5d, 0x56, 0xb5, 0x52, 0x28, 0x02, 0x82, + 0x94, 0x5e, 0xe8, 0x80, 0xa7, 0xc6, 0x02, 0x33, 0x96, 0x67, 0x48, 0x71, 0x4e, 0x55, 0x4f, 0xbd, + 0x54, 0xea, 0xff, 0xd0, 0x7f, 0x20, 0x87, 0xde, 0x7a, 0xea, 0xad, 0xc7, 0xa8, 0xa7, 0x1e, 0xab, + 0xa4, 0x52, 0xfe, 0x8d, 0x6a, 0xc6, 0x18, 0x12, 0x7e, 0x48, 0x54, 0x6a, 0xd5, 0x0b, 0xf8, 0x7d, + 0xdf, 0x37, 0xef, 0x7d, 0x6f, 0xe6, 0x8d, 0x0d, 0x7b, 0xfd, 0xe0, 0x8c, 0x18, 0x9d, 0xd1, 0xd0, + 0x1a, 0x10, 0x66, 0xf0, 0xc0, 0x13, 0xbf, 0xe3, 0x82, 0xe7, 0x53, 0x4e, 0x11, 0x12, 0x64, 0x61, + 0x42, 0x16, 0x24, 0xa9, 0xed, 0x76, 0x29, 0x73, 0x29, 0x33, 0x5c, 0x66, 0x1b, 0x67, 0xcf, 0xc5, + 0x5f, 0x28, 0xd6, 0x72, 0x21, 0xd1, 0x96, 0x91, 0x11, 0x06, 0x13, 0x2a, 0x63, 0x53, 0x9b, 0x86, + 0xb8, 0x78, 0x0a, 0xd1, 0xfc, 0x5f, 0x1b, 0xb0, 0x5b, 0x61, 0x76, 0x63, 0xd4, 0x71, 0x1d, 0x5e, + 0x92, 0x45, 0x6a, 0x3e, 0xf5, 0x28, 0xc3, 0x03, 0xa4, 0xc2, 0x76, 0xd7, 0x27, 0x98, 0x53, 0x5f, + 0x55, 0x9e, 0x28, 0x87, 0xa9, 0x7a, 0x14, 0xa2, 0x77, 0x21, 0xc1, 0x38, 0xee, 0x13, 0x5f, 0xdd, + 0x90, 0xc4, 0x24, 0x42, 0xbb, 0xb0, 0xed, 0x51, 0x3a, 0x68, 0x3b, 0x96, 0xba, 0xf9, 0x44, 0x39, + 0x8c, 0xd7, 0x13, 0x22, 0x34, 0x2d, 0xb4, 0x0f, 0xc0, 0x38, 0xf5, 0xb1, 0x4d, 0x04, 0x17, 0x97, + 0x8b, 0x52, 0x13, 0xc4, 0xb4, 0xd0, 0x1e, 0xa4, 0x2c, 0xcc, 0x71, 0x9b, 0x39, 0xe7, 0x44, 0xdd, + 0x92, 0x2b, 0x93, 0x02, 0x68, 0x38, 0xe7, 0x64, 0x4a, 0xf6, 0x30, 0xeb, 0xa9, 0x09, 0xb9, 0x54, + 0x92, 0x9f, 0x61, 0xd6, 0x13, 0x89, 0xbf, 0xf6, 0xa9, 0xdb, 0x76, 0x86, 0x16, 0x19, 0xab, 0xdb, + 0x72, 0x69, 0x4a, 0x20, 0xa6, 0x00, 0xd0, 0x01, 0xdc, 0x0b, 0x77, 0x2e, 0x4c, 0x9d, 0x94, 0x3c, + 0x84, 0x90, 0x4c, 0x9e, 0x83, 0xa4, 0x5c, 0xdf, 0x27, 0x81, 0x9a, 0x0a, 0x9b, 0x14, 0xf1, 0x31, + 0x09, 0x50, 0x16, 0x12, 0x9c, 0x4a, 0x02, 0x24, 0xb1, 0xc5, 0xa9, 0x80, 0x3f, 0x80, 0x9d, 0x28, + 0xe5, 0xc8, 0x75, 0xb1, 0x1f, 0xa8, 0xf7, 0x24, 0xfd, 0xce, 0x24, 0x6b, 0x08, 0xbe, 0xba, 0xff, + 0xdd, 0xcd, 0xc5, 0x51, 0xb4, 0x61, 0xf9, 0xf7, 0xe0, 0x60, 0xc5, 0x2e, 0xd7, 0x09, 0xf3, 0xe8, + 0x90, 0x91, 0xfc, 0xaf, 0x0a, 0x64, 0x2b, 0xcc, 0x6e, 0x51, 0x4e, 0xfe, 0xb7, 0x73, 0x78, 0x06, + 0xf1, 0x33, 0xca, 0xc3, 0x23, 0xd8, 0x79, 0xf1, 0xb8, 0xb0, 0x38, 0x7a, 0x05, 0xe1, 0xaf, 0x19, + 0x78, 0xa4, 0x2e, 0x95, 0x73, 0x6d, 0x1e, 0xc0, 0xfe, 0xd2, 0x16, 0xa6, 0x4d, 0x52, 0xc8, 0x54, + 0x98, 0xfd, 0x7a, 0x80, 0x1d, 0xf7, 0xc4, 0x1b, 0x50, 0x6c, 0x11, 0xbf, 0x4e, 0x07, 0xe4, 0x5f, + 0x6c, 0x71, 0xce, 0x91, 0x0e, 0x8f, 0x97, 0x15, 0x9c, 0x1a, 0xfa, 0x41, 0x81, 0x47, 0xe2, 0x64, + 0xfa, 0x8e, 0xf7, 0x1f, 0x19, 0x9a, 0x1b, 0xd1, 0xf8, 0xdc, 0x88, 0xce, 0xf9, 0xdd, 0x87, 0xbd, + 0x25, 0x76, 0xa6, 0x76, 0x19, 0x3c, 0xa8, 0x30, 0xfb, 0xc4, 0xb3, 0x30, 0x27, 0x35, 0xec, 0x63, + 0x97, 0xa1, 0x4f, 0x21, 0x85, 0x47, 0xbc, 0x47, 0x7d, 0x87, 0x07, 0xa1, 0xd7, 0x92, 0xfa, 0xfb, + 0xcf, 0x9f, 0x64, 0x26, 0x97, 0xbf, 0x68, 0x59, 0x3e, 0x61, 0xac, 0xc1, 0x7d, 0x67, 0x68, 0xd7, + 0x67, 0x52, 0xd1, 0xa1, 0x87, 0x03, 0x51, 0x63, 0xd2, 0x48, 0x14, 0xbe, 0xda, 0x11, 0x8e, 0x66, + 0xca, 0x7c, 0x4e, 0xbe, 0x22, 0x6e, 0x17, 0x8d, 0xfc, 0x1c, 0x0d, 0x21, 0x19, 0x0d, 0x04, 0xca, + 0x41, 0xb6, 0xf5, 0x45, 0xb3, 0xdc, 0x6e, 0x9e, 0xd6, 0xca, 0xed, 0x93, 0x6a, 0xa3, 0x56, 0x7e, + 0x6d, 0xbe, 0x35, 0xcb, 0x6f, 0xd2, 0x31, 0xf4, 0x08, 0x1e, 0xcc, 0xa8, 0x56, 0xf1, 0x73, 0xf3, + 0x4d, 0x5a, 0x41, 0x59, 0x78, 0x38, 0x03, 0xcd, 0x6a, 0x08, 0x6f, 0xdc, 0x85, 0x8b, 0xa5, 0x46, + 0xb3, 0x68, 0x56, 0xd3, 0x9b, 0x5a, 0xfc, 0xfb, 0x9f, 0xf4, 0xd8, 0x8b, 0x5f, 0xe2, 0xb0, 0x59, + 0x61, 0x36, 0x1a, 0x43, 0x66, 0xe9, 0x2b, 0xeb, 0xe9, 0xb2, 0x91, 0x5d, 0x71, 0xf3, 0xb4, 0x97, + 0xff, 0x40, 0x1c, 0x75, 0x8c, 0x7c, 0x40, 0x4b, 0xae, 0xe8, 0x47, 0x2b, 0x52, 0x2d, 0x4a, 0xb5, + 0xe7, 0x6b, 0x4b, 0xa7, 0x35, 0x29, 0x3c, 0x5c, 0xbc, 0x32, 0x87, 0x2b, 0xf2, 0x2c, 0x28, 0xb5, + 0x67, 0xeb, 0x2a, 0xa7, 0x05, 0x07, 0x90, 0x5e, 0xb8, 0x11, 0x1f, 0xae, 0xda, 0xad, 0x39, 0xa1, + 0x66, 0xac, 0x29, 0x9c, 0x56, 0xfb, 0x0a, 0xee, 0xdf, 0x99, 0xe8, 0xf7, 0x57, 0x24, 0xb8, 0x2d, + 0xd2, 0x9e, 0xae, 0x21, 0x8a, 0x2a, 0x68, 0x5b, 0xdf, 0xde, 0x5c, 0x1c, 0x29, 0xa5, 0xb7, 0xbf, + 0x5d, 0xe9, 0xca, 0xe5, 0x95, 0xae, 0xfc, 0x79, 0xa5, 0x2b, 0x3f, 0x5e, 0xeb, 0xb1, 0xcb, 0x6b, + 0x3d, 0xf6, 0xc7, 0xb5, 0x1e, 0xfb, 0xf2, 0x63, 0xdb, 0xe1, 0xbd, 0x51, 0xa7, 0xd0, 0xa5, 0xae, + 0x71, 0x7c, 0xda, 0x2a, 0x57, 0x09, 0xff, 0x86, 0xfa, 0x7d, 0xa3, 0xdb, 0xc3, 0xce, 0xd0, 0x18, + 0xdf, 0xfd, 0x36, 0x77, 0x12, 0xf2, 0xdb, 0xf9, 0xf2, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x45, + 0x92, 0x35, 0x6f, 0xb8, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -765,7 +765,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) SubmitBundleProposal(ctx context.Context, in *MsgSubmitBundleProposal, opts ...grpc.CallOption) (*MsgSubmitBundleProposalResponse, error) { out := new(MsgSubmitBundleProposalResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Msg/SubmitBundleProposal", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Msg/SubmitBundleProposal", in, out, opts...) if err != nil { return nil, err } @@ -774,7 +774,7 @@ func (c *msgClient) SubmitBundleProposal(ctx context.Context, in *MsgSubmitBundl func (c *msgClient) VoteBundleProposal(ctx context.Context, in *MsgVoteBundleProposal, opts ...grpc.CallOption) (*MsgVoteBundleProposalResponse, error) { out := new(MsgVoteBundleProposalResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Msg/VoteBundleProposal", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Msg/VoteBundleProposal", in, out, opts...) if err != nil { return nil, err } @@ -783,7 +783,7 @@ func (c *msgClient) VoteBundleProposal(ctx context.Context, in *MsgVoteBundlePro func (c *msgClient) ClaimUploaderRole(ctx context.Context, in *MsgClaimUploaderRole, opts ...grpc.CallOption) (*MsgClaimUploaderRoleResponse, error) { out := new(MsgClaimUploaderRoleResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Msg/ClaimUploaderRole", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Msg/ClaimUploaderRole", in, out, opts...) if err != nil { return nil, err } @@ -792,7 +792,7 @@ func (c *msgClient) ClaimUploaderRole(ctx context.Context, in *MsgClaimUploaderR func (c *msgClient) SkipUploaderRole(ctx context.Context, in *MsgSkipUploaderRole, opts ...grpc.CallOption) (*MsgSkipUploaderRoleResponse, error) { out := new(MsgSkipUploaderRoleResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Msg/SkipUploaderRole", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Msg/SkipUploaderRole", in, out, opts...) if err != nil { return nil, err } @@ -801,7 +801,7 @@ func (c *msgClient) SkipUploaderRole(ctx context.Context, in *MsgSkipUploaderRol func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.bundles.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.bundles.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -857,7 +857,7 @@ func _Msg_SubmitBundleProposal_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Msg/SubmitBundleProposal", + FullMethod: "/kyve.bundles.types.Msg/SubmitBundleProposal", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitBundleProposal(ctx, req.(*MsgSubmitBundleProposal)) @@ -875,7 +875,7 @@ func _Msg_VoteBundleProposal_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Msg/VoteBundleProposal", + FullMethod: "/kyve.bundles.types.Msg/VoteBundleProposal", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).VoteBundleProposal(ctx, req.(*MsgVoteBundleProposal)) @@ -893,7 +893,7 @@ func _Msg_ClaimUploaderRole_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Msg/ClaimUploaderRole", + FullMethod: "/kyve.bundles.types.Msg/ClaimUploaderRole", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimUploaderRole(ctx, req.(*MsgClaimUploaderRole)) @@ -911,7 +911,7 @@ func _Msg_SkipUploaderRole_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Msg/SkipUploaderRole", + FullMethod: "/kyve.bundles.types.Msg/SkipUploaderRole", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SkipUploaderRole(ctx, req.(*MsgSkipUploaderRole)) @@ -929,7 +929,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.bundles.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.bundles.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -938,7 +938,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.bundles.v1beta1.Msg", + ServiceName: "kyve.bundles.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -963,7 +963,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/bundles/v1beta1/tx.proto", + Metadata: "kyve/bundles/types/tx.proto", } func (m *MsgSubmitBundleProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/delegation.pb.go b/x/delegation/types/delegation.pb.go index dd8ce378..e6ca996c 100644 --- a/x/delegation/types/delegation.pb.go +++ b/x/delegation/types/delegation.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/delegation.proto +// source: kyve/delegation/types/delegation.proto package types @@ -57,7 +57,7 @@ func (x SlashType) String() string { } func (SlashType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{0} + return fileDescriptor_752c726b3e7bd300, []int{0} } // Delegator stores the information that one address has delegated to another address @@ -79,7 +79,7 @@ func (m *Delegator) Reset() { *m = Delegator{} } func (m *Delegator) String() string { return proto.CompactTextString(m) } func (*Delegator) ProtoMessage() {} func (*Delegator) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{0} + return fileDescriptor_752c726b3e7bd300, []int{0} } func (m *Delegator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -151,7 +151,7 @@ func (m *DelegationEntry) Reset() { *m = DelegationEntry{} } func (m *DelegationEntry) String() string { return proto.CompactTextString(m) } func (*DelegationEntry) ProtoMessage() {} func (*DelegationEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{1} + return fileDescriptor_752c726b3e7bd300, []int{1} } func (m *DelegationEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -214,7 +214,7 @@ func (m *DelegationData) Reset() { *m = DelegationData{} } func (m *DelegationData) String() string { return proto.CompactTextString(m) } func (*DelegationData) ProtoMessage() {} func (*DelegationData) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{2} + return fileDescriptor_752c726b3e7bd300, []int{2} } func (m *DelegationData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -301,7 +301,7 @@ func (m *DelegationSlash) Reset() { *m = DelegationSlash{} } func (m *DelegationSlash) String() string { return proto.CompactTextString(m) } func (*DelegationSlash) ProtoMessage() {} func (*DelegationSlash) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{3} + return fileDescriptor_752c726b3e7bd300, []int{3} } func (m *DelegationSlash) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *UndelegationQueueEntry) Reset() { *m = UndelegationQueueEntry{} func (m *UndelegationQueueEntry) String() string { return proto.CompactTextString(m) } func (*UndelegationQueueEntry) ProtoMessage() {} func (*UndelegationQueueEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{4} + return fileDescriptor_752c726b3e7bd300, []int{4} } func (m *UndelegationQueueEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -438,7 +438,7 @@ func (m *QueueState) Reset() { *m = QueueState{} } func (m *QueueState) String() string { return proto.CompactTextString(m) } func (*QueueState) ProtoMessage() {} func (*QueueState) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{5} + return fileDescriptor_752c726b3e7bd300, []int{5} } func (m *QueueState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -493,7 +493,7 @@ func (m *RedelegationCooldown) Reset() { *m = RedelegationCooldown{} } func (m *RedelegationCooldown) String() string { return proto.CompactTextString(m) } func (*RedelegationCooldown) ProtoMessage() {} func (*RedelegationCooldown) Descriptor() ([]byte, []int) { - return fileDescriptor_e07f10cb3da486ac, []int{6} + return fileDescriptor_752c726b3e7bd300, []int{6} } func (m *RedelegationCooldown) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -537,64 +537,64 @@ func (m *RedelegationCooldown) GetCreationDate() uint64 { } func init() { - proto.RegisterEnum("kyve.delegation.v1beta1.SlashType", SlashType_name, SlashType_value) - proto.RegisterType((*Delegator)(nil), "kyve.delegation.v1beta1.Delegator") - proto.RegisterType((*DelegationEntry)(nil), "kyve.delegation.v1beta1.DelegationEntry") - proto.RegisterType((*DelegationData)(nil), "kyve.delegation.v1beta1.DelegationData") - proto.RegisterType((*DelegationSlash)(nil), "kyve.delegation.v1beta1.DelegationSlash") - proto.RegisterType((*UndelegationQueueEntry)(nil), "kyve.delegation.v1beta1.UndelegationQueueEntry") - proto.RegisterType((*QueueState)(nil), "kyve.delegation.v1beta1.QueueState") - proto.RegisterType((*RedelegationCooldown)(nil), "kyve.delegation.v1beta1.RedelegationCooldown") + proto.RegisterEnum("kyve.delegation.types.SlashType", SlashType_name, SlashType_value) + proto.RegisterType((*Delegator)(nil), "kyve.delegation.types.Delegator") + proto.RegisterType((*DelegationEntry)(nil), "kyve.delegation.types.DelegationEntry") + proto.RegisterType((*DelegationData)(nil), "kyve.delegation.types.DelegationData") + proto.RegisterType((*DelegationSlash)(nil), "kyve.delegation.types.DelegationSlash") + proto.RegisterType((*UndelegationQueueEntry)(nil), "kyve.delegation.types.UndelegationQueueEntry") + proto.RegisterType((*QueueState)(nil), "kyve.delegation.types.QueueState") + proto.RegisterType((*RedelegationCooldown)(nil), "kyve.delegation.types.RedelegationCooldown") } func init() { - proto.RegisterFile("kyve/delegation/v1beta1/delegation.proto", fileDescriptor_e07f10cb3da486ac) + proto.RegisterFile("kyve/delegation/types/delegation.proto", fileDescriptor_752c726b3e7bd300) } -var fileDescriptor_e07f10cb3da486ac = []byte{ - // 664 bytes of a gzipped FileDescriptorProto +var fileDescriptor_752c726b3e7bd300 = []byte{ + // 658 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0x4d, 0x4f, 0xdb, 0x40, - 0x10, 0x8d, 0x03, 0x04, 0x3c, 0x82, 0x24, 0xdd, 0xd2, 0x10, 0x85, 0x62, 0x90, 0x69, 0xd5, 0xb4, - 0x87, 0x58, 0xa8, 0xa7, 0x9e, 0xaa, 0x80, 0x5d, 0x11, 0x41, 0x81, 0xe6, 0x83, 0x8a, 0x5e, 0xac, - 0xc5, 0xde, 0x26, 0x96, 0x1d, 0x2f, 0xb5, 0xd7, 0x84, 0x1c, 0x7a, 0xa8, 0x7a, 0xe9, 0xa9, 0xea, - 0x5f, 0xa8, 0xfa, 0x67, 0x38, 0x72, 0xac, 0x7a, 0x40, 0x15, 0xfc, 0x91, 0x2a, 0x6b, 0xe3, 0x6c, - 0x2a, 0x45, 0x6a, 0x6f, 0x9e, 0x37, 0xe3, 0x79, 0x6f, 0xde, 0x8c, 0x16, 0xaa, 0xee, 0xf0, 0x9c, - 0x68, 0x36, 0xf1, 0x48, 0x17, 0x33, 0x87, 0xfa, 0xda, 0xf9, 0xd6, 0x29, 0x61, 0x78, 0x4b, 0x80, - 0x6a, 0x67, 0x01, 0x65, 0x14, 0xad, 0x8c, 0x2a, 0x6b, 0x02, 0x9c, 0x54, 0x56, 0x96, 0xbb, 0xb4, - 0x4b, 0x79, 0x8d, 0x36, 0xfa, 0x8a, 0xcb, 0xd5, 0x4f, 0x12, 0xc8, 0x7a, 0x5c, 0x4c, 0x03, 0x54, - 0x82, 0x5c, 0xc8, 0xb0, 0x4b, 0x82, 0xb2, 0xb4, 0x21, 0x55, 0xe5, 0x66, 0x12, 0xa1, 0x87, 0x20, - 0xdb, 0x77, 0x45, 0xe5, 0x2c, 0x4f, 0x8d, 0x01, 0xb4, 0x02, 0xf3, 0xae, 0xe9, 0xf8, 0x36, 0xb9, - 0x28, 0xcf, 0x6c, 0x48, 0xd5, 0xd9, 0x66, 0xce, 0x6d, 0x8c, 0x22, 0xf4, 0x18, 0xf2, 0x8e, 0xef, - 0x30, 0x07, 0x7b, 0x26, 0xee, 0xd3, 0xc8, 0x67, 0xe5, 0x59, 0x9e, 0x5f, 0x4a, 0xd0, 0x3a, 0x07, - 0xd5, 0x8f, 0x50, 0xd0, 0x53, 0xbd, 0x86, 0xcf, 0x82, 0xe1, 0x54, 0x21, 0x02, 0x55, 0x76, 0x82, - 0xea, 0x05, 0xcc, 0x9d, 0x63, 0x2f, 0x22, 0x5c, 0x81, 0xbc, 0xbd, 0x79, 0x79, 0xbd, 0x9e, 0xf9, - 0x75, 0xbd, 0xbe, 0x6a, 0xd1, 0xb0, 0x4f, 0xc3, 0xd0, 0x76, 0x6b, 0x0e, 0xd5, 0xfa, 0x98, 0xf5, - 0x6a, 0xfb, 0xa4, 0x8b, 0xad, 0xa1, 0x4e, 0xac, 0x66, 0xfc, 0x87, 0xfa, 0x35, 0x0b, 0xf9, 0x31, - 0xbf, 0x8e, 0x19, 0x9e, 0x4a, 0xff, 0x04, 0x0a, 0x56, 0x14, 0x04, 0xc4, 0x67, 0x66, 0x40, 0x06, - 0x38, 0xb0, 0xc3, 0x44, 0x46, 0x3e, 0x81, 0x9b, 0x31, 0x8a, 0x9e, 0x42, 0x91, 0x51, 0x86, 0x3d, - 0x73, 0xbc, 0x88, 0xc4, 0x9b, 0x02, 0xc7, 0xc7, 0x7c, 0xe8, 0x11, 0xe4, 0x3d, 0xcc, 0x48, 0xc8, - 0xe2, 0xb9, 0x4c, 0x37, 0x31, 0x69, 0x31, 0x46, 0xf9, 0x78, 0x7b, 0x23, 0xe6, 0xd4, 0x70, 0xd3, - 0xe2, 0x5e, 0xce, 0xc5, 0xcc, 0x29, 0xbc, 0x33, 0x42, 0x51, 0x1d, 0xd6, 0x26, 0xda, 0x0d, 0x70, - 0x68, 0x46, 0xbe, 0x20, 0x23, 0xb7, 0x21, 0x55, 0x17, 0x9a, 0x15, 0xa1, 0xfb, 0x5b, 0x1c, 0x76, - 0x84, 0x0a, 0xf5, 0xb3, 0x24, 0x2e, 0xa4, 0xe5, 0xe1, 0xb0, 0xf7, 0xff, 0x0b, 0x79, 0x09, 0x0b, - 0xef, 0x03, 0x6c, 0xa5, 0x93, 0xff, 0xe3, 0x4e, 0xd2, 0x9f, 0xd4, 0xef, 0x12, 0x94, 0x44, 0x59, - 0x6f, 0x22, 0x12, 0x91, 0xf8, 0x3a, 0x96, 0x61, 0x2e, 0xa6, 0x94, 0x38, 0x65, 0x1c, 0x08, 0x12, - 0xb3, 0xd3, 0x8f, 0x77, 0xe6, 0xef, 0xe3, 0x2d, 0x41, 0x6e, 0xe2, 0x36, 0x93, 0x08, 0x6d, 0xc2, - 0x92, 0x15, 0x10, 0xce, 0x6c, 0x32, 0xa7, 0x4f, 0x12, 0xbb, 0x17, 0xef, 0xc0, 0xb6, 0xd3, 0x27, - 0xea, 0x2e, 0x00, 0x97, 0xd5, 0x62, 0x98, 0x11, 0xb4, 0x0a, 0xb2, 0x47, 0x07, 0xa6, 0x28, 0x6d, - 0xc1, 0xa3, 0x83, 0xd8, 0x8f, 0x35, 0x80, 0x9e, 0xd3, 0xed, 0x4d, 0x78, 0x25, 0x8f, 0x10, 0x9e, - 0x56, 0x3b, 0xb0, 0xdc, 0x24, 0xe3, 0x61, 0x77, 0x28, 0xf5, 0x6c, 0x3a, 0xf0, 0x51, 0x19, 0xe6, - 0xb1, 0x6d, 0x07, 0x24, 0x0c, 0x13, 0xe3, 0xef, 0xc2, 0x09, 0x81, 0x36, 0x66, 0x24, 0xe9, 0x99, - 0x0a, 0xd4, 0x31, 0x23, 0xcf, 0x3e, 0x80, 0xcc, 0xf7, 0xd7, 0x1e, 0x9e, 0x11, 0x54, 0x81, 0x52, - 0x6b, 0xbf, 0xde, 0xda, 0x35, 0xdb, 0x27, 0x47, 0x86, 0xd9, 0x39, 0x68, 0x1d, 0x19, 0x3b, 0x8d, - 0x57, 0x0d, 0x43, 0x2f, 0x66, 0x50, 0x09, 0x90, 0x90, 0x6b, 0x37, 0x5e, 0x1b, 0x87, 0x9d, 0x76, - 0x51, 0x42, 0xf7, 0xa1, 0x20, 0xe0, 0xc7, 0x87, 0x6d, 0xa3, 0x98, 0x45, 0x0f, 0xe0, 0x9e, 0xd8, - 0xe8, 0x68, 0xff, 0xb0, 0xae, 0x17, 0x67, 0x2a, 0xb3, 0x5f, 0x7e, 0x28, 0x99, 0xed, 0xc6, 0xe5, - 0x8d, 0x22, 0x5d, 0xdd, 0x28, 0xd2, 0xef, 0x1b, 0x45, 0xfa, 0x76, 0xab, 0x64, 0xae, 0x6e, 0x95, - 0xcc, 0xcf, 0x5b, 0x25, 0xf3, 0x4e, 0xeb, 0x3a, 0xac, 0x17, 0x9d, 0xd6, 0x2c, 0xda, 0xd7, 0xf6, - 0x4e, 0x8e, 0x8d, 0x03, 0xc2, 0x06, 0x34, 0x70, 0x35, 0xab, 0x87, 0x1d, 0x5f, 0xbb, 0x10, 0x9f, - 0x37, 0x36, 0x3c, 0x23, 0xe1, 0x69, 0x8e, 0xbf, 0x51, 0xcf, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x71, 0xb7, 0xbb, 0xf9, 0xfe, 0x04, 0x00, 0x00, + 0x10, 0x8d, 0x03, 0x04, 0x3c, 0x82, 0x24, 0xdd, 0x42, 0x1a, 0x85, 0x62, 0x90, 0xe9, 0x07, 0xed, + 0x21, 0x3e, 0xf4, 0xd4, 0x53, 0x15, 0xb0, 0x2b, 0x22, 0x28, 0xd0, 0x7c, 0x50, 0xd1, 0x8b, 0xb5, + 0xd8, 0xdb, 0xc4, 0xb2, 0xe3, 0xa5, 0xde, 0x35, 0x21, 0x87, 0x1e, 0xaa, 0x5e, 0x7a, 0xaa, 0xfa, + 0x17, 0xaa, 0xfe, 0x19, 0x8e, 0x1c, 0xab, 0x1e, 0x50, 0x05, 0x7f, 0xa4, 0xca, 0xda, 0x24, 0x9b, + 0x56, 0x48, 0xed, 0xcd, 0xf3, 0x66, 0x3c, 0xef, 0xcd, 0x9b, 0xd1, 0xc2, 0x23, 0x7f, 0x70, 0x4a, + 0x0c, 0x97, 0x04, 0xa4, 0x83, 0xb9, 0x47, 0x43, 0x83, 0x0f, 0x4e, 0x08, 0x93, 0x80, 0xea, 0x49, + 0x44, 0x39, 0x45, 0x4b, 0xc3, 0xba, 0xaa, 0x04, 0x8b, 0xba, 0xca, 0x62, 0x87, 0x76, 0xa8, 0xa8, + 0x30, 0x86, 0x5f, 0x49, 0xb1, 0xfe, 0x51, 0x01, 0xd5, 0x4c, 0x4a, 0x69, 0x84, 0x4a, 0x90, 0x63, + 0x1c, 0xfb, 0x24, 0x2a, 0x2b, 0x6b, 0xca, 0x86, 0xda, 0x48, 0x23, 0x74, 0x1f, 0x54, 0xf7, 0xa6, + 0xa8, 0x9c, 0x15, 0xa9, 0x31, 0x80, 0xee, 0xc1, 0xac, 0x6f, 0x7b, 0xa1, 0x4b, 0xce, 0xca, 0x53, + 0x6b, 0xca, 0xc6, 0x74, 0x23, 0xe7, 0xd7, 0x87, 0x11, 0x7a, 0x08, 0x79, 0x2f, 0xf4, 0xb8, 0x87, + 0x03, 0x1b, 0xf7, 0x68, 0x1c, 0xf2, 0xf2, 0xb4, 0xc8, 0x2f, 0xa4, 0x68, 0x4d, 0x80, 0xfa, 0x07, + 0x28, 0x98, 0x23, 0xb5, 0x56, 0xc8, 0xa3, 0xc1, 0xad, 0x42, 0x24, 0xaa, 0xec, 0x04, 0xd5, 0x73, + 0x98, 0x39, 0xc5, 0x41, 0x4c, 0x84, 0x02, 0x75, 0x73, 0xfd, 0xfc, 0x72, 0x35, 0xf3, 0xf3, 0x72, + 0x75, 0xd9, 0xa1, 0xac, 0x47, 0x19, 0x73, 0xfd, 0xaa, 0x47, 0x8d, 0x1e, 0xe6, 0xdd, 0xea, 0x2e, + 0xe9, 0x60, 0x67, 0x60, 0x12, 0xa7, 0x91, 0xfc, 0xa1, 0x7f, 0xc9, 0x42, 0x7e, 0xcc, 0x6f, 0x62, + 0x8e, 0x6f, 0xa5, 0x7f, 0x0c, 0x05, 0x27, 0x8e, 0x22, 0x12, 0x72, 0x3b, 0x22, 0x7d, 0x1c, 0xb9, + 0x2c, 0x95, 0x91, 0x4f, 0xe1, 0x46, 0x82, 0xa2, 0x27, 0x50, 0xe4, 0x94, 0xe3, 0xc0, 0x1e, 0xaf, + 0x21, 0xf5, 0xa6, 0x20, 0xf0, 0x31, 0x1f, 0x7a, 0x00, 0xf9, 0x00, 0x73, 0xc2, 0x78, 0x32, 0x97, + 0xed, 0xa7, 0x26, 0xcd, 0x27, 0xa8, 0x18, 0x6f, 0x67, 0xc8, 0x3c, 0x32, 0xdc, 0x76, 0x84, 0x97, + 0x33, 0x09, 0xf3, 0x08, 0xde, 0x1a, 0xa2, 0xa8, 0x06, 0x2b, 0x13, 0xed, 0xfa, 0x98, 0xd9, 0x71, + 0x28, 0xc9, 0xc8, 0xad, 0x29, 0x1b, 0x73, 0x8d, 0x8a, 0xd4, 0xfd, 0x0d, 0x66, 0x6d, 0xa9, 0x42, + 0xff, 0xa4, 0xc8, 0x0b, 0x69, 0x06, 0x98, 0x75, 0xff, 0x7f, 0x21, 0x2f, 0x60, 0xee, 0x5d, 0x84, + 0x9d, 0xd1, 0xe4, 0xff, 0xb8, 0x93, 0xd1, 0x4f, 0xfa, 0x37, 0x05, 0x4a, 0xb2, 0xac, 0xd7, 0x31, + 0x89, 0x49, 0x72, 0x1d, 0x8b, 0x30, 0x93, 0x50, 0x2a, 0x82, 0x32, 0x09, 0x24, 0x89, 0xd9, 0xdb, + 0x8f, 0x77, 0xea, 0xcf, 0xe3, 0x2d, 0x41, 0x6e, 0xe2, 0x36, 0xd3, 0x08, 0xad, 0xc3, 0x82, 0x13, + 0x11, 0xc1, 0x6c, 0x73, 0xaf, 0x47, 0x52, 0xbb, 0xe7, 0x6f, 0xc0, 0x96, 0xd7, 0x23, 0xfa, 0x36, + 0x80, 0x90, 0xd5, 0xe4, 0x98, 0x13, 0xb4, 0x0c, 0x6a, 0x40, 0xfb, 0xb6, 0x2c, 0x6d, 0x2e, 0xa0, + 0xfd, 0xc4, 0x8f, 0x15, 0x80, 0xae, 0xd7, 0xe9, 0x4e, 0x78, 0xa5, 0x0e, 0x11, 0x91, 0xd6, 0xdb, + 0xb0, 0xd8, 0x20, 0xe3, 0x61, 0xb7, 0x28, 0x0d, 0x5c, 0xda, 0x0f, 0x51, 0x19, 0x66, 0xb1, 0xeb, + 0x46, 0x84, 0xb1, 0xd4, 0xf8, 0x9b, 0x70, 0x42, 0xa0, 0x8b, 0x39, 0x49, 0x7b, 0x8e, 0x04, 0x9a, + 0x98, 0x93, 0xa7, 0xef, 0x41, 0x15, 0xfb, 0x6b, 0x0d, 0x4e, 0x08, 0xaa, 0x40, 0xa9, 0xb9, 0x5b, + 0x6b, 0x6e, 0xdb, 0xad, 0xa3, 0x03, 0xcb, 0x6e, 0xef, 0x35, 0x0f, 0xac, 0xad, 0xfa, 0xcb, 0xba, + 0x65, 0x16, 0x33, 0xa8, 0x04, 0x48, 0xca, 0xb5, 0xea, 0xaf, 0xac, 0xfd, 0x76, 0xab, 0xa8, 0xa0, + 0xbb, 0x50, 0x90, 0xf0, 0xc3, 0xfd, 0x96, 0x55, 0xcc, 0xa2, 0x25, 0xb8, 0x23, 0x37, 0x3a, 0xd8, + 0xdd, 0xaf, 0x99, 0xc5, 0xa9, 0xca, 0xf4, 0xe7, 0xef, 0x5a, 0x66, 0xb3, 0x7e, 0x7e, 0xa5, 0x29, + 0x17, 0x57, 0x9a, 0xf2, 0xeb, 0x4a, 0x53, 0xbe, 0x5e, 0x6b, 0x99, 0x8b, 0x6b, 0x2d, 0xf3, 0xe3, + 0x5a, 0xcb, 0xbc, 0x35, 0x3a, 0x1e, 0xef, 0xc6, 0xc7, 0x55, 0x87, 0xf6, 0x8c, 0x9d, 0xa3, 0x43, + 0x6b, 0x8f, 0xf0, 0x3e, 0x8d, 0x7c, 0xc3, 0xe9, 0x62, 0x2f, 0x34, 0xce, 0xfe, 0x7a, 0xda, 0x8e, + 0x73, 0xe2, 0x8d, 0x7a, 0xf6, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x1d, 0xe2, 0xea, 0x6c, 0xfa, 0x04, + 0x00, 0x00, } func (m *Delegator) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/events.pb.go b/x/delegation/types/events.pb.go index b2763a80..488156a8 100644 --- a/x/delegation/types/events.pb.go +++ b/x/delegation/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/events.proto +// source: kyve/delegation/types/events.proto package types @@ -38,7 +38,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{0} + return fileDescriptor_b310d6ea70d81483, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -103,7 +103,7 @@ func (m *EventDelegate) Reset() { *m = EventDelegate{} } func (m *EventDelegate) String() string { return proto.CompactTextString(m) } func (*EventDelegate) ProtoMessage() {} func (*EventDelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{1} + return fileDescriptor_b310d6ea70d81483, []int{1} } func (m *EventDelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -171,7 +171,7 @@ func (m *EventStartUndelegation) Reset() { *m = EventStartUndelegation{} func (m *EventStartUndelegation) String() string { return proto.CompactTextString(m) } func (*EventStartUndelegation) ProtoMessage() {} func (*EventStartUndelegation) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{2} + return fileDescriptor_b310d6ea70d81483, []int{2} } func (m *EventStartUndelegation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -243,7 +243,7 @@ func (m *EventUndelegate) Reset() { *m = EventUndelegate{} } func (m *EventUndelegate) String() string { return proto.CompactTextString(m) } func (*EventUndelegate) ProtoMessage() {} func (*EventUndelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{3} + return fileDescriptor_b310d6ea70d81483, []int{3} } func (m *EventUndelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -310,7 +310,7 @@ func (m *EventRedelegate) Reset() { *m = EventRedelegate{} } func (m *EventRedelegate) String() string { return proto.CompactTextString(m) } func (*EventRedelegate) ProtoMessage() {} func (*EventRedelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{4} + return fileDescriptor_b310d6ea70d81483, []int{4} } func (m *EventRedelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -382,7 +382,7 @@ func (m *EventWithdrawRewards) Reset() { *m = EventWithdrawRewards{} } func (m *EventWithdrawRewards) String() string { return proto.CompactTextString(m) } func (*EventWithdrawRewards) ProtoMessage() {} func (*EventWithdrawRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{5} + return fileDescriptor_b310d6ea70d81483, []int{5} } func (m *EventWithdrawRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -442,14 +442,14 @@ type EventSlash struct { // amount ... Amount uint64 `protobuf:"varint,3,opt,name=amount,proto3" json:"amount,omitempty"` // slash_type - SlashType SlashType `protobuf:"varint,4,opt,name=slash_type,json=slashType,proto3,enum=kyve.delegation.v1beta1.SlashType" json:"slash_type,omitempty"` + SlashType SlashType `protobuf:"varint,4,opt,name=slash_type,json=slashType,proto3,enum=kyve.delegation.types.SlashType" json:"slash_type,omitempty"` } func (m *EventSlash) Reset() { *m = EventSlash{} } func (m *EventSlash) String() string { return proto.CompactTextString(m) } func (*EventSlash) ProtoMessage() {} func (*EventSlash) Descriptor() ([]byte, []int) { - return fileDescriptor_d01988a9108a2e89, []int{6} + return fileDescriptor_b310d6ea70d81483, []int{6} } func (m *EventSlash) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -507,52 +507,52 @@ func (m *EventSlash) GetSlashType() SlashType { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.delegation.v1beta1.EventUpdateParams") - proto.RegisterType((*EventDelegate)(nil), "kyve.delegation.v1beta1.EventDelegate") - proto.RegisterType((*EventStartUndelegation)(nil), "kyve.delegation.v1beta1.EventStartUndelegation") - proto.RegisterType((*EventUndelegate)(nil), "kyve.delegation.v1beta1.EventUndelegate") - proto.RegisterType((*EventRedelegate)(nil), "kyve.delegation.v1beta1.EventRedelegate") - proto.RegisterType((*EventWithdrawRewards)(nil), "kyve.delegation.v1beta1.EventWithdrawRewards") - proto.RegisterType((*EventSlash)(nil), "kyve.delegation.v1beta1.EventSlash") + proto.RegisterType((*EventUpdateParams)(nil), "kyve.delegation.types.EventUpdateParams") + proto.RegisterType((*EventDelegate)(nil), "kyve.delegation.types.EventDelegate") + proto.RegisterType((*EventStartUndelegation)(nil), "kyve.delegation.types.EventStartUndelegation") + proto.RegisterType((*EventUndelegate)(nil), "kyve.delegation.types.EventUndelegate") + proto.RegisterType((*EventRedelegate)(nil), "kyve.delegation.types.EventRedelegate") + proto.RegisterType((*EventWithdrawRewards)(nil), "kyve.delegation.types.EventWithdrawRewards") + proto.RegisterType((*EventSlash)(nil), "kyve.delegation.types.EventSlash") } func init() { - proto.RegisterFile("kyve/delegation/v1beta1/events.proto", fileDescriptor_d01988a9108a2e89) -} - -var fileDescriptor_d01988a9108a2e89 = []byte{ - // 486 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6e, 0xd3, 0x40, - 0x14, 0x45, 0x33, 0x10, 0xa5, 0xf8, 0x55, 0x80, 0xb0, 0xaa, 0x36, 0xb4, 0x92, 0x53, 0x59, 0x2c, - 0xb2, 0xb2, 0xd5, 0xb2, 0x47, 0xa2, 0x4a, 0x17, 0x15, 0x12, 0x42, 0x0e, 0x05, 0x15, 0x16, 0x66, - 0xd2, 0x79, 0x24, 0x56, 0x6c, 0x8f, 0x65, 0xbf, 0xc4, 0x64, 0xc9, 0x1f, 0xb0, 0x64, 0xcd, 0x5f, - 0xf0, 0x07, 0x5d, 0x76, 0xc9, 0x0a, 0xa1, 0xe4, 0x47, 0xd0, 0xcc, 0xd8, 0x24, 0x45, 0x8a, 0xd4, - 0x4a, 0xd9, 0xcd, 0x9b, 0xb9, 0x3e, 0xf7, 0xda, 0xd7, 0x03, 0xcf, 0xc6, 0xb3, 0x29, 0xfa, 0x02, - 0x63, 0x1c, 0x72, 0x8a, 0x64, 0xea, 0x4f, 0x8f, 0x06, 0x48, 0xfc, 0xc8, 0xc7, 0x29, 0xa6, 0x54, - 0x78, 0x59, 0x2e, 0x49, 0xda, 0x7b, 0x4a, 0xe5, 0x2d, 0x55, 0x5e, 0xa5, 0xda, 0xdf, 0x19, 0xca, - 0xa1, 0xd4, 0x1a, 0x5f, 0xad, 0x8c, 0x7c, 0xbf, 0xbb, 0x0e, 0xba, 0x42, 0x30, 0xca, 0xb5, 0xf6, - 0x19, 0xcf, 0x79, 0x52, 0xd9, 0xbb, 0x3f, 0x19, 0x3c, 0x39, 0x55, 0x79, 0xce, 0x33, 0xc1, 0x09, - 0xdf, 0xe8, 0x33, 0xbb, 0x07, 0x20, 0x63, 0x11, 0x1a, 0x65, 0x9b, 0x1d, 0xb2, 0xee, 0xf6, 0x71, - 0xc7, 0x5b, 0x93, 0xd4, 0x33, 0x0f, 0x9d, 0x34, 0xaf, 0x7e, 0x77, 0x1a, 0x81, 0x25, 0x63, 0xb1, - 0xa4, 0xa4, 0x58, 0xd6, 0x94, 0x7b, 0x77, 0xa2, 0xa4, 0x58, 0x56, 0x94, 0x36, 0x6c, 0x65, 0x7c, - 0x16, 0x4b, 0x2e, 0xda, 0xf7, 0x0f, 0x59, 0xd7, 0x0a, 0xea, 0xd1, 0xbd, 0x80, 0x87, 0x3a, 0x7a, - 0xcf, 0xc0, 0x50, 0x49, 0xb9, 0x10, 0x39, 0x16, 0x26, 0xb3, 0x15, 0xd4, 0xa3, 0xbd, 0x0b, 0xad, - 0x82, 0xf8, 0x18, 0x73, 0x1d, 0xc3, 0x0a, 0xaa, 0x49, 0xed, 0xf3, 0x44, 0x4e, 0x52, 0xd2, 0xec, - 0x66, 0x50, 0x4d, 0xee, 0x0f, 0x06, 0xbb, 0x9a, 0xdd, 0x27, 0x9e, 0xd3, 0x79, 0xba, 0xcc, 0xbb, - 0x39, 0x13, 0xfb, 0x05, 0x1c, 0x60, 0x41, 0x51, 0xc2, 0x09, 0x45, 0x38, 0x59, 0xf1, 0x08, 0x55, - 0x15, 0xed, 0xa6, 0x16, 0x3f, 0xfd, 0x27, 0x59, 0x4d, 0xd1, 0xe3, 0x84, 0xee, 0x47, 0x78, 0x6c, - 0xaa, 0xab, 0x0f, 0x36, 0xf9, 0x05, 0xbe, 0xb2, 0x8a, 0x1e, 0xe0, 0x2d, 0xe8, 0x1d, 0xd8, 0xfe, - 0x9c, 0xcb, 0x24, 0xbc, 0x61, 0x01, 0x6a, 0xab, 0x6f, 0x6c, 0x0e, 0xc0, 0x22, 0x59, 0x1f, 0x9b, - 0x1e, 0x1f, 0x90, 0xec, 0xff, 0x9f, 0xa1, 0x79, 0x23, 0xc3, 0x27, 0xd8, 0xd1, 0x11, 0xde, 0x47, - 0x34, 0x12, 0x39, 0x2f, 0x03, 0x2c, 0x79, 0x2e, 0x8a, 0x0d, 0xbe, 0xe5, 0x77, 0x06, 0x60, 0x7a, - 0x8e, 0x79, 0x31, 0xb2, 0xf7, 0x60, 0x2b, 0x93, 0x32, 0x0e, 0x23, 0xa1, 0xc1, 0xcd, 0xa0, 0xa5, - 0xc6, 0x33, 0x71, 0xe7, 0x6a, 0x5f, 0x02, 0x14, 0x8a, 0x18, 0xd2, 0x2c, 0x33, 0x4d, 0x3e, 0x3a, - 0x76, 0xd7, 0xfe, 0xfa, 0xda, 0xfc, 0xed, 0x2c, 0xc3, 0xc0, 0x2a, 0xea, 0xe5, 0xc9, 0xd9, 0xd5, - 0xdc, 0x61, 0xd7, 0x73, 0x87, 0xfd, 0x99, 0x3b, 0xec, 0xdb, 0xc2, 0x69, 0x5c, 0x2f, 0x9c, 0xc6, - 0xaf, 0x85, 0xd3, 0xf8, 0xe0, 0x0f, 0x23, 0x1a, 0x4d, 0x06, 0xde, 0xa5, 0x4c, 0xfc, 0x57, 0x17, - 0xef, 0x4e, 0x5f, 0x23, 0x95, 0x32, 0x1f, 0xfb, 0x97, 0x23, 0x1e, 0xa5, 0xfe, 0x97, 0xd5, 0x3b, - 0xaf, 0xec, 0x8b, 0x41, 0x4b, 0xdf, 0xf5, 0xe7, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xab, 0xe2, - 0xab, 0xb6, 0x92, 0x04, 0x00, 0x00, + proto.RegisterFile("kyve/delegation/types/events.proto", fileDescriptor_b310d6ea70d81483) +} + +var fileDescriptor_b310d6ea70d81483 = []byte{ + // 483 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6e, 0xd3, 0x30, + 0x18, 0xc7, 0x6b, 0x88, 0x3a, 0xf2, 0x4d, 0x80, 0x88, 0xc6, 0x28, 0x9b, 0xc8, 0xaa, 0x1c, 0xd0, + 0x4e, 0x89, 0x34, 0xee, 0x20, 0x55, 0xdb, 0x61, 0x42, 0x42, 0x28, 0x65, 0xa0, 0xc1, 0x21, 0x78, + 0xf3, 0x47, 0x1b, 0x35, 0x89, 0x23, 0xdb, 0x5d, 0xe8, 0x91, 0x37, 0xe0, 0xc4, 0x03, 0xf0, 0x0e, + 0xbc, 0xc3, 0x8e, 0x3b, 0x72, 0x42, 0xa8, 0x7d, 0x11, 0x64, 0x3b, 0xa1, 0x1d, 0x6c, 0xd2, 0x2a, + 0xf5, 0x96, 0xcf, 0xdf, 0xdf, 0xbf, 0xff, 0xdf, 0xf9, 0x6c, 0x08, 0x46, 0x93, 0x33, 0x8c, 0x18, + 0x66, 0x38, 0xa0, 0x2a, 0xe5, 0x45, 0xa4, 0x26, 0x25, 0xca, 0x08, 0xcf, 0xb0, 0x50, 0x32, 0x2c, + 0x05, 0x57, 0xdc, 0x7b, 0xa8, 0x35, 0xe1, 0x5c, 0x13, 0x1a, 0xcd, 0xd6, 0xc6, 0x80, 0x0f, 0xb8, + 0x51, 0x44, 0xfa, 0xcb, 0x8a, 0xb7, 0x9e, 0x5e, 0x0d, 0x5c, 0xd8, 0x6d, 0x75, 0xd7, 0x18, 0x97, + 0x54, 0xd0, 0xbc, 0x36, 0x0e, 0x7e, 0x10, 0x78, 0x70, 0xa0, 0x93, 0x1c, 0x95, 0x8c, 0x2a, 0x7c, + 0x6d, 0x7a, 0x5e, 0x0f, 0x80, 0x67, 0x2c, 0xb1, 0xca, 0x0e, 0xe9, 0x92, 0xdd, 0xf5, 0xbd, 0x27, + 0xe1, 0x95, 0x19, 0x43, 0xbb, 0xa5, 0xe7, 0x9c, 0xff, 0xda, 0x69, 0xc5, 0x2e, 0xcf, 0xd8, 0x9c, + 0x51, 0x60, 0xd5, 0x30, 0x6e, 0x2d, 0xc1, 0x28, 0xb0, 0xaa, 0x19, 0x1d, 0x58, 0x2b, 0xe9, 0x24, + 0xe3, 0x94, 0x75, 0x6e, 0x77, 0xc9, 0xae, 0x1b, 0x37, 0x65, 0x70, 0x0c, 0x77, 0x4d, 0xec, 0x7d, + 0x8b, 0x42, 0x2d, 0xa5, 0x8c, 0x09, 0x94, 0x36, 0xaf, 0x1b, 0x37, 0xa5, 0xb7, 0x09, 0x6d, 0xa9, + 0xe8, 0x08, 0x85, 0x09, 0xe1, 0xc6, 0x75, 0xa5, 0xd7, 0x69, 0xce, 0xc7, 0x85, 0x32, 0x6c, 0x27, + 0xae, 0xab, 0xe0, 0x3b, 0x81, 0x4d, 0xc3, 0xee, 0x2b, 0x2a, 0xd4, 0x51, 0x31, 0x4f, 0xbb, 0x3a, + 0x13, 0xef, 0x39, 0x6c, 0xa3, 0x54, 0x69, 0x4e, 0x15, 0xb2, 0x64, 0xbc, 0xe0, 0x91, 0xe8, 0x31, + 0x74, 0x1c, 0x23, 0x7e, 0xfc, 0x57, 0xb2, 0x98, 0x62, 0x9f, 0x2a, 0x0c, 0x3e, 0xc0, 0x7d, 0x3b, + 0xb6, 0xa6, 0xb1, 0xca, 0x3f, 0xf0, 0x85, 0xd4, 0xf4, 0x18, 0x6f, 0x40, 0xdf, 0x81, 0xf5, 0x4f, + 0x82, 0xe7, 0xc9, 0x25, 0x0b, 0xd0, 0x4b, 0x7d, 0x6b, 0xb3, 0x0d, 0xae, 0xe2, 0x4d, 0xdb, 0xce, + 0xf1, 0x8e, 0xe2, 0xfd, 0x7f, 0x33, 0x38, 0x97, 0x32, 0x7c, 0x84, 0x0d, 0x13, 0xe1, 0x5d, 0xaa, + 0x86, 0x4c, 0xd0, 0x2a, 0xc6, 0x8a, 0x0a, 0x26, 0x57, 0x78, 0xca, 0x6f, 0x04, 0xc0, 0xce, 0x39, + 0xa3, 0x72, 0xe8, 0x3d, 0x82, 0xb5, 0x92, 0xf3, 0x2c, 0x49, 0x99, 0x01, 0x3b, 0x71, 0x5b, 0x97, + 0x87, 0x6c, 0xe9, 0xd1, 0xbe, 0x00, 0x90, 0x9a, 0x98, 0xe8, 0xbb, 0x6d, 0x4e, 0x75, 0x6f, 0xaf, + 0x7b, 0xcd, 0xc5, 0x37, 0xd6, 0x6f, 0x26, 0x25, 0xc6, 0xae, 0x6c, 0x3e, 0x7b, 0x87, 0xe7, 0x53, + 0x9f, 0x5c, 0x4c, 0x7d, 0xf2, 0x7b, 0xea, 0x93, 0xaf, 0x33, 0xbf, 0x75, 0x31, 0xf3, 0x5b, 0x3f, + 0x67, 0x7e, 0xeb, 0x7d, 0x34, 0x48, 0xd5, 0x70, 0x7c, 0x12, 0x9e, 0xf2, 0x3c, 0x7a, 0x79, 0xfc, + 0xf6, 0xe0, 0x15, 0xaa, 0x8a, 0x8b, 0x51, 0x74, 0x3a, 0xa4, 0x69, 0x11, 0x7d, 0xfe, 0xef, 0xad, + 0x9f, 0xb4, 0xcd, 0x2b, 0x7f, 0xf6, 0x27, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x32, 0x48, 0xa6, 0x84, + 0x04, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/genesis.pb.go b/x/delegation/types/genesis.pb.go index ba1deb97..e0fe5b68 100644 --- a/x/delegation/types/genesis.pb.go +++ b/x/delegation/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/genesis.proto +// source: kyve/delegation/types/genesis.proto package types @@ -47,7 +47,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_0bd28fed64b7905b, []int{0} + return fileDescriptor_decd6ea702cd52d2, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -133,43 +133,43 @@ func (m *GenesisState) GetRedelegationCooldownList() []RedelegationCooldown { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.delegation.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.delegation.types.GenesisState") } func init() { - proto.RegisterFile("kyve/delegation/v1beta1/genesis.proto", fileDescriptor_0bd28fed64b7905b) + proto.RegisterFile("kyve/delegation/types/genesis.proto", fileDescriptor_decd6ea702cd52d2) } -var fileDescriptor_0bd28fed64b7905b = []byte{ - // 436 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0xef, 0xd2, 0x30, - 0x1c, 0xc6, 0x37, 0x7f, 0x38, 0x4d, 0x51, 0x0f, 0x13, 0x75, 0x59, 0xe2, 0x20, 0xa8, 0x71, 0x17, - 0xd7, 0x80, 0x67, 0x2f, 0x08, 0x31, 0x46, 0xe3, 0x1f, 0x88, 0x26, 0x7a, 0x59, 0xba, 0xad, 0x19, - 0x0b, 0x63, 0x85, 0xb5, 0xe3, 0xcf, 0xbb, 0xf0, 0xea, 0x3b, 0xe2, 0xc8, 0xd1, 0x93, 0x31, 0xf0, - 0x46, 0xcc, 0xda, 0x0a, 0x25, 0xb2, 0xfc, 0xb8, 0x2d, 0xdf, 0x3d, 0xcf, 0xf3, 0xe9, 0xd3, 0x7c, - 0x0b, 0x9e, 0x4d, 0xd6, 0x0b, 0x0c, 0x23, 0x9c, 0xe2, 0x18, 0xb1, 0x84, 0x64, 0x70, 0xd1, 0x09, - 0x30, 0x43, 0x1d, 0x18, 0xe3, 0x0c, 0xd3, 0x84, 0x7a, 0xb3, 0x9c, 0x30, 0x62, 0x3e, 0x2a, 0x65, - 0xde, 0x51, 0xe6, 0x49, 0x99, 0xdd, 0x88, 0x49, 0x4c, 0xb8, 0x06, 0x96, 0x5f, 0x42, 0x6e, 0xbb, - 0x55, 0xa9, 0x4a, 0x82, 0x50, 0x3e, 0xad, 0x52, 0xce, 0x50, 0x8e, 0xa6, 0x12, 0xdf, 0xfe, 0x69, - 0x80, 0x3b, 0x6f, 0xc4, 0x81, 0x46, 0x0c, 0x31, 0x6c, 0xbe, 0x02, 0x86, 0x10, 0x58, 0x7a, 0x4b, - 0x77, 0xeb, 0xdd, 0xa6, 0x57, 0x71, 0x40, 0xef, 0x13, 0x97, 0xf5, 0x6a, 0x9b, 0xdf, 0x4d, 0x6d, - 0x28, 0x4d, 0xe6, 0x47, 0x70, 0x4f, 0x4a, 0x49, 0xee, 0xa7, 0x09, 0x65, 0xd6, 0x8d, 0xd6, 0x95, - 0x5b, 0xef, 0xb6, 0x2b, 0x63, 0xfa, 0xff, 0xe4, 0x32, 0xe9, 0xee, 0xc1, 0xff, 0x3e, 0xa1, 0xcc, - 0x0c, 0xc0, 0x83, 0xa3, 0xc9, 0xc7, 0x19, 0xcb, 0xd7, 0x22, 0xf7, 0x8a, 0xe7, 0xba, 0xd7, 0xe5, - 0x26, 0x24, 0x1b, 0x94, 0x26, 0x99, 0x7e, 0x3f, 0x3a, 0x1d, 0x73, 0x86, 0x0f, 0x1a, 0x0a, 0x23, - 0x42, 0x0c, 0x09, 0x44, 0x8d, 0x23, 0x9e, 0x5f, 0x80, 0xe8, 0x23, 0x86, 0x24, 0xc1, 0x8c, 0x4e, - 0xa6, 0x67, 0x4a, 0xd0, 0x14, 0xd1, 0xb1, 0x20, 0xdc, 0xbc, 0xb8, 0xc4, 0xa8, 0x34, 0xfd, 0x5f, - 0x82, 0x8f, 0x39, 0x63, 0x05, 0x1e, 0x17, 0x99, 0x42, 0x99, 0x17, 0xb8, 0xc0, 0xea, 0x85, 0x19, - 0x9c, 0x05, 0x2b, 0x59, 0x5f, 0x14, 0xf7, 0xe7, 0xd2, 0xac, 0xde, 0x9b, 0x5d, 0x9c, 0xfd, 0xcb, - 0xc9, 0x21, 0xb0, 0x04, 0x8c, 0x96, 0x1b, 0xe4, 0xab, 0x4a, 0xeb, 0x16, 0x5f, 0xa2, 0x27, 0x95, - 0x50, 0x1e, 0xc5, 0x37, 0x4f, 0x82, 0x1e, 0xce, 0x0f, 0x13, 0xf5, 0x40, 0xe6, 0x1c, 0xd8, 0x39, - 0x56, 0xea, 0x85, 0x84, 0xa4, 0x11, 0x59, 0x66, 0xa2, 0xdb, 0x6d, 0xde, 0xed, 0x45, 0x25, 0x66, - 0xa8, 0x58, 0x5f, 0x4b, 0xa7, 0x04, 0x5a, 0xf9, 0x99, 0x7f, 0x65, 0xaf, 0xde, 0xdb, 0xcd, 0xce, - 0xd1, 0xb7, 0x3b, 0x47, 0xff, 0xb3, 0x73, 0xf4, 0x1f, 0x7b, 0x47, 0xdb, 0xee, 0x1d, 0xed, 0xd7, - 0xde, 0xd1, 0xbe, 0xc3, 0x38, 0x61, 0xe3, 0x22, 0xf0, 0x42, 0x32, 0x85, 0xef, 0xbe, 0x7d, 0x1d, - 0x7c, 0xc0, 0x6c, 0x49, 0xf2, 0x09, 0x0c, 0xc7, 0x28, 0xc9, 0xe0, 0x4a, 0x7d, 0x75, 0x6c, 0x3d, - 0xc3, 0x34, 0x30, 0xf8, 0x6b, 0x7b, 0xf9, 0x37, 0x00, 0x00, 0xff, 0xff, 0xa8, 0xa4, 0xfe, 0x14, - 0x15, 0x04, 0x00, 0x00, +var fileDescriptor_decd6ea702cd52d2 = []byte{ + // 435 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x4f, 0x8f, 0xd2, 0x40, + 0x18, 0xc6, 0x5b, 0xc1, 0x6a, 0x06, 0xf5, 0x50, 0xc1, 0x34, 0x4d, 0xa8, 0x88, 0x91, 0x90, 0x18, + 0x3b, 0x09, 0x1e, 0xbd, 0x21, 0xc4, 0x18, 0xff, 0x44, 0x21, 0x9a, 0x68, 0x62, 0x70, 0xa0, 0x93, + 0xd2, 0x50, 0x3a, 0xd0, 0x99, 0x82, 0x7c, 0x04, 0x6f, 0xfb, 0xb1, 0x38, 0x72, 0xdc, 0xd3, 0x66, + 0x03, 0x5f, 0x64, 0xd3, 0x99, 0x59, 0x18, 0x42, 0xbb, 0xbb, 0xb7, 0xe6, 0xed, 0xf3, 0x3c, 0xbf, + 0x79, 0x26, 0xef, 0x80, 0x97, 0x93, 0xd5, 0x02, 0x43, 0x0f, 0x87, 0xd8, 0x47, 0x2c, 0x20, 0x11, + 0x64, 0xab, 0x19, 0xa6, 0xd0, 0xc7, 0x11, 0xa6, 0x01, 0x75, 0x67, 0x31, 0x61, 0xc4, 0xac, 0xa4, + 0x22, 0xf7, 0x20, 0x72, 0xb9, 0xc8, 0x2e, 0xfb, 0xc4, 0x27, 0x5c, 0x01, 0xd3, 0x2f, 0x21, 0xb6, + 0x1b, 0xd9, 0x89, 0x8a, 0x5b, 0xe8, 0xea, 0xd9, 0xba, 0x19, 0x8a, 0xd1, 0x54, 0x82, 0xeb, 0xff, + 0x0d, 0xf0, 0xe8, 0x83, 0x38, 0x4a, 0x9f, 0x21, 0x86, 0xcd, 0x77, 0xc0, 0x10, 0x02, 0x4b, 0xaf, + 0xe9, 0xcd, 0x52, 0xab, 0xea, 0x66, 0x1e, 0xcd, 0xfd, 0xc6, 0x45, 0xed, 0xe2, 0xfa, 0xe2, 0xb9, + 0xd6, 0x93, 0x16, 0xf3, 0x0b, 0x78, 0x22, 0x85, 0x24, 0x1e, 0x84, 0x01, 0x65, 0xd6, 0xbd, 0x5a, + 0xa1, 0x59, 0x6a, 0xd5, 0x72, 0x42, 0x3a, 0xd7, 0x62, 0x99, 0xf3, 0x78, 0xef, 0xfe, 0x1c, 0x50, + 0x66, 0xfe, 0x05, 0x95, 0x83, 0x65, 0x80, 0x23, 0x16, 0xaf, 0x44, 0x6a, 0x81, 0xa7, 0x36, 0x6e, + 0x4e, 0x0d, 0x48, 0xd4, 0x4d, 0x2d, 0x32, 0xfb, 0xa9, 0x77, 0x3c, 0xe6, 0x84, 0x3f, 0xa0, 0xac, + 0x10, 0x3c, 0xc4, 0x90, 0x00, 0x14, 0x39, 0xe0, 0xd5, 0xad, 0x80, 0x0e, 0x62, 0x48, 0xe6, 0x9b, + 0xde, 0xd1, 0x34, 0xa3, 0x00, 0x0d, 0x11, 0x1d, 0x8b, 0xfc, 0xfb, 0x77, 0x2c, 0xd0, 0x4f, 0x2d, + 0xa7, 0x05, 0xf8, 0x98, 0x13, 0x16, 0xa0, 0x9a, 0x44, 0x0a, 0x63, 0x9e, 0xe0, 0x04, 0xab, 0x57, + 0x65, 0x70, 0xd2, 0x9b, 0x1c, 0xd2, 0x0f, 0xc5, 0xfb, 0x3d, 0xb5, 0xaa, 0x37, 0x66, 0x27, 0x99, + 0x7f, 0x39, 0x17, 0x01, 0x4b, 0xa0, 0x68, 0xba, 0x35, 0x03, 0x55, 0x69, 0x3d, 0xe0, 0x8b, 0xf3, + 0x22, 0x07, 0xc9, 0x83, 0xf8, 0xae, 0x49, 0xcc, 0xb3, 0xf9, 0x7e, 0xa2, 0x1e, 0xc7, 0x24, 0xc0, + 0x8e, 0xb1, 0x52, 0x6d, 0x44, 0x48, 0xe8, 0x91, 0x65, 0x24, 0x7a, 0x3d, 0xe4, 0xbd, 0x5e, 0xe7, + 0x40, 0x7a, 0x8a, 0xf1, 0xbd, 0xf4, 0x49, 0x9c, 0x15, 0x67, 0xfc, 0x4b, 0x3b, 0xb5, 0x3f, 0xae, + 0xb7, 0x8e, 0xbe, 0xd9, 0x3a, 0xfa, 0xe5, 0xd6, 0xd1, 0xcf, 0x76, 0x8e, 0xb6, 0xd9, 0x39, 0xda, + 0xf9, 0xce, 0xd1, 0x7e, 0x43, 0x3f, 0x60, 0xe3, 0x64, 0xe8, 0x8e, 0xc8, 0x14, 0x7e, 0xfa, 0xf5, + 0xb3, 0xfb, 0x15, 0xb3, 0x25, 0x89, 0x27, 0x70, 0x34, 0x46, 0x41, 0x04, 0xff, 0x9d, 0xbc, 0xb1, + 0xa1, 0xc1, 0x5f, 0xd7, 0xdb, 0xab, 0x00, 0x00, 0x00, 0xff, 0xff, 0xab, 0xc7, 0xcb, 0xd6, 0xfd, + 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/params.pb.go b/x/delegation/types/params.pb.go index d7abc315..7ecfaee4 100644 --- a/x/delegation/types/params.pb.go +++ b/x/delegation/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/params.proto +// source: kyve/delegation/types/params.proto package types @@ -44,7 +44,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_17019e1d49c878a9, []int{0} + return fileDescriptor_4af6475430974e76, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -95,37 +95,37 @@ func (m *Params) GetRedelegationMaxAmount() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "kyve.delegation.v1beta1.Params") + proto.RegisterType((*Params)(nil), "kyve.delegation.types.Params") } func init() { - proto.RegisterFile("kyve/delegation/v1beta1/params.proto", fileDescriptor_17019e1d49c878a9) + proto.RegisterFile("kyve/delegation/types/params.proto", fileDescriptor_4af6475430974e76) } -var fileDescriptor_17019e1d49c878a9 = []byte{ - // 352 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xcb, 0x4a, 0xf3, 0x40, - 0x1c, 0x47, 0x93, 0xaf, 0xfd, 0x0a, 0x1d, 0xeb, 0x26, 0x54, 0x1a, 0x15, 0xd2, 0xa2, 0x2e, 0xba, - 0xca, 0x50, 0x0a, 0x2e, 0xdc, 0x59, 0xab, 0x28, 0x5e, 0x90, 0x2a, 0x82, 0x6e, 0xc2, 0x24, 0x19, - 0x92, 0xd0, 0x4c, 0xfe, 0x21, 0x33, 0xe9, 0xe5, 0x09, 0xdc, 0xfa, 0x58, 0x5d, 0x76, 0x29, 0x2e, - 0x8a, 0xb4, 0x2f, 0x22, 0x99, 0x86, 0x5e, 0x76, 0xdd, 0x0d, 0xfc, 0xce, 0x39, 0x8b, 0x99, 0x41, - 0x67, 0xfd, 0xf1, 0x80, 0x62, 0x97, 0x86, 0xd4, 0x23, 0x22, 0x80, 0x08, 0x0f, 0x5a, 0x36, 0x15, - 0xa4, 0x85, 0x63, 0x92, 0x10, 0xc6, 0xcd, 0x38, 0x01, 0x01, 0x5a, 0x2d, 0xa3, 0xcc, 0x35, 0x65, - 0xe6, 0xd4, 0x51, 0xd5, 0x03, 0x0f, 0x24, 0x83, 0xb3, 0xd3, 0x12, 0x3f, 0xf9, 0x2c, 0xa0, 0xd2, - 0xb3, 0xf4, 0xb5, 0x0b, 0x74, 0x98, 0x46, 0x36, 0x44, 0x6e, 0x10, 0x79, 0xd6, 0x3a, 0x60, 0x89, - 0x80, 0x51, 0x5d, 0x6d, 0xa8, 0xcd, 0x62, 0xaf, 0xb6, 0x02, 0xba, 0xab, 0xfd, 0x35, 0x60, 0x54, - 0x6b, 0xa3, 0x83, 0x84, 0x6e, 0x38, 0x0e, 0x40, 0xe8, 0xc2, 0x30, 0xd2, 0xff, 0x49, 0xaf, 0xba, - 0x39, 0x5e, 0xe5, 0x9b, 0x76, 0x8e, 0x6a, 0x5b, 0x12, 0x23, 0x23, 0x8b, 0x30, 0x48, 0x23, 0xa1, - 0x17, 0xa4, 0xb6, 0xd5, 0x7c, 0x24, 0xa3, 0x4b, 0x39, 0x6a, 0x1d, 0x84, 0x06, 0x20, 0xa8, 0xc5, - 0x43, 0xc2, 0x7d, 0xbd, 0xd8, 0x50, 0x9b, 0xe5, 0xce, 0xe9, 0x64, 0x56, 0x57, 0x7e, 0x66, 0xf5, - 0x63, 0x07, 0x38, 0x03, 0xce, 0xdd, 0xbe, 0x19, 0x00, 0x66, 0x44, 0xf8, 0xe6, 0x03, 0xf5, 0x88, - 0x33, 0xee, 0x52, 0xa7, 0x57, 0xce, 0xb4, 0x97, 0xcc, 0xd2, 0x6e, 0x50, 0x25, 0x8d, 0x43, 0x20, - 0x6e, 0x5e, 0xf9, 0xbf, 0x7b, 0x65, 0x6f, 0x29, 0x2e, 0x3b, 0xb7, 0x68, 0x3f, 0xbb, 0x1f, 0x48, - 0x45, 0x1e, 0x2a, 0xed, 0x1e, 0xaa, 0xe4, 0xa6, 0x2c, 0x75, 0xee, 0x26, 0x73, 0x43, 0x9d, 0xce, - 0x0d, 0xf5, 0x77, 0x6e, 0xa8, 0x5f, 0x0b, 0x43, 0x99, 0x2e, 0x0c, 0xe5, 0x7b, 0x61, 0x28, 0x1f, - 0xd8, 0x0b, 0x84, 0x9f, 0xda, 0xa6, 0x03, 0x0c, 0xdf, 0xbf, 0xbf, 0x5d, 0x3f, 0x51, 0x31, 0x84, - 0xa4, 0x8f, 0x1d, 0x9f, 0x04, 0x11, 0x1e, 0x6d, 0x7e, 0x09, 0x31, 0x8e, 0x29, 0xb7, 0x4b, 0xf2, - 0x6d, 0xdb, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x22, 0xbc, 0x7d, 0xc4, 0x32, 0x02, 0x00, 0x00, +var fileDescriptor_4af6475430974e76 = []byte{ + // 348 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x4d, 0x6b, 0xe2, 0x40, + 0x1c, 0x87, 0x93, 0xd5, 0x15, 0x9c, 0x75, 0x2f, 0x41, 0x31, 0xbb, 0x85, 0x28, 0xf6, 0xe2, 0x29, + 0x73, 0x10, 0x7a, 0xe8, 0xad, 0xd6, 0x96, 0x96, 0xbe, 0x50, 0x6c, 0x29, 0xb4, 0x97, 0x30, 0x26, + 0x43, 0x12, 0xcc, 0xcc, 0x3f, 0x64, 0x26, 0xbe, 0x7c, 0x82, 0x5e, 0xfb, 0xb1, 0x3c, 0x7a, 0x2c, + 0x3d, 0x48, 0xd1, 0x2f, 0x52, 0x32, 0x06, 0x5f, 0xe8, 0xc5, 0xdb, 0xc0, 0xef, 0x79, 0x9e, 0xc3, + 0xcc, 0xa0, 0xd6, 0x70, 0x3a, 0xa2, 0xd8, 0xa3, 0x11, 0xf5, 0x89, 0x0c, 0x81, 0x63, 0x39, 0x8d, + 0xa9, 0xc0, 0x31, 0x49, 0x08, 0x13, 0x76, 0x9c, 0x80, 0x04, 0xa3, 0x96, 0x31, 0xf6, 0x96, 0xb1, + 0x15, 0xf3, 0xbf, 0xea, 0x83, 0x0f, 0x8a, 0xc0, 0xd9, 0x69, 0x0d, 0xb7, 0xde, 0x0a, 0xa8, 0xf4, + 0xa0, 0x6c, 0xe3, 0x14, 0xfd, 0x4b, 0xf9, 0x00, 0xb8, 0x17, 0x72, 0xdf, 0xd9, 0xea, 0x8e, 0x0c, + 0x19, 0x35, 0xf5, 0xa6, 0xde, 0x2e, 0xf6, 0xeb, 0x1b, 0xa0, 0xb7, 0xd9, 0x9f, 0x42, 0x46, 0x8d, + 0x0e, 0xaa, 0x25, 0x74, 0xc7, 0x71, 0x01, 0x22, 0x0f, 0xc6, 0xdc, 0xfc, 0xa5, 0xbc, 0xea, 0xee, + 0x78, 0x9e, 0x6f, 0xc6, 0x09, 0xaa, 0xef, 0x49, 0x8c, 0x4c, 0x1c, 0xc2, 0x20, 0xe5, 0xd2, 0x2c, + 0x28, 0x6d, 0xaf, 0x79, 0x47, 0x26, 0x67, 0x6a, 0x34, 0xba, 0x08, 0x8d, 0x40, 0x52, 0x47, 0x44, + 0x44, 0x04, 0x66, 0xb1, 0xa9, 0xb7, 0xcb, 0xdd, 0xe3, 0xd9, 0xa2, 0xa1, 0x7d, 0x2e, 0x1a, 0x47, + 0x2e, 0x08, 0x06, 0x42, 0x78, 0x43, 0x3b, 0x04, 0xcc, 0x88, 0x0c, 0xec, 0x5b, 0xea, 0x13, 0x77, + 0xda, 0xa3, 0x6e, 0xbf, 0x9c, 0x69, 0x8f, 0x99, 0x65, 0x5c, 0xa2, 0x4a, 0x1a, 0x47, 0x40, 0xbc, + 0xbc, 0xf2, 0xfb, 0xf0, 0xca, 0x9f, 0xb5, 0xb8, 0xee, 0x5c, 0xa1, 0xbf, 0xd9, 0xfd, 0x40, 0x2a, + 0xf3, 0x50, 0xe9, 0xf0, 0x50, 0x25, 0x37, 0x55, 0xa9, 0x7b, 0x3d, 0x5b, 0x5a, 0xfa, 0x7c, 0x69, + 0xe9, 0x5f, 0x4b, 0x4b, 0x7f, 0x5f, 0x59, 0xda, 0x7c, 0x65, 0x69, 0x1f, 0x2b, 0x4b, 0x7b, 0xc5, + 0x7e, 0x28, 0x83, 0x74, 0x60, 0xbb, 0xc0, 0xf0, 0xcd, 0xcb, 0xf3, 0xc5, 0x3d, 0x95, 0x63, 0x48, + 0x86, 0xd8, 0x0d, 0x48, 0xc8, 0xf1, 0xe4, 0xc7, 0x77, 0x18, 0x94, 0xd4, 0xdb, 0x76, 0xbe, 0x03, + 0x00, 0x00, 0xff, 0xff, 0x17, 0x0c, 0x43, 0xab, 0x2e, 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/query.pb.go b/x/delegation/types/query.pb.go index f7f53b58..5c0986b9 100644 --- a/x/delegation/types/query.pb.go +++ b/x/delegation/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/query.proto +// source: kyve/delegation/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9afd23b59df61182, []int{0} + return fileDescriptor_4e5dab7cee478e63, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9afd23b59df61182, []int{1} + return fileDescriptor_4e5dab7cee478e63, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,35 +113,33 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.delegation.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.delegation.v1beta1.QueryParamsResponse") -} - -func init() { - proto.RegisterFile("kyve/delegation/v1beta1/query.proto", fileDescriptor_9afd23b59df61182) -} - -var fileDescriptor_9afd23b59df61182 = []byte{ - // 290 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xce, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0x49, 0xcd, 0x49, 0x4d, 0x4f, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, - 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x07, 0x29, 0xd2, 0x43, 0x28, 0xd2, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, - 0xab, 0xd1, 0x07, 0xb1, 0x20, 0xca, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, - 0x0b, 0x32, 0xf5, 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0xc0, 0x9a, 0x8a, 0xa1, 0xb2, 0x2a, 0xb8, 0x6c, - 0x2c, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0xaa, 0x52, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xb9, 0x20, 0x00, - 0x2c, 0x18, 0x94, 0x5a, 0x58, 0x9a, 0x5a, 0x5c, 0xa2, 0x14, 0xc2, 0x25, 0x8c, 0x22, 0x5a, 0x5c, - 0x90, 0x9f, 0x57, 0x9c, 0x2a, 0x64, 0xcb, 0xc5, 0x06, 0xd1, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, - 0x6d, 0x24, 0xaf, 0x87, 0xc3, 0xc1, 0x7a, 0x10, 0x8d, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, - 0x41, 0x35, 0x19, 0x4d, 0x63, 0xe4, 0x62, 0x05, 0x1b, 0x2b, 0xd4, 0xc3, 0xc8, 0xc5, 0x06, 0x51, - 0x22, 0xa4, 0x8d, 0xd3, 0x0c, 0x4c, 0x77, 0x49, 0xe9, 0x10, 0xa7, 0x18, 0xe2, 0x5c, 0x25, 0xf5, - 0xa6, 0xcb, 0x4f, 0x26, 0x33, 0x29, 0x0a, 0xc9, 0xeb, 0xe3, 0x0f, 0x0a, 0x27, 0xcf, 0x13, 0x8f, - 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4f, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0xf7, 0x8e, 0x0c, 0x73, 0xf5, 0x4b, 0x2d, 0x29, 0xcf, 0x2f, 0xca, 0xd6, - 0x4f, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0xaf, 0x40, 0x36, 0xb3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, - 0x0d, 0x1c, 0xac, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x42, 0x41, 0xf5, 0x4d, 0xf0, 0x01, - 0x00, 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.delegation.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.delegation.types.QueryParamsResponse") +} + +func init() { proto.RegisterFile("kyve/delegation/types/query.proto", fileDescriptor_4e5dab7cee478e63) } + +var fileDescriptor_4e5dab7cee478e63 = []byte{ + // 292 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0x49, 0xcd, 0x49, 0x4d, 0x4f, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0xa9, 0x2c, 0x48, + 0x2d, 0xd6, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x05, + 0x29, 0xd1, 0x43, 0x28, 0xd1, 0x03, 0x2b, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd0, + 0x07, 0xb1, 0x20, 0x8a, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, + 0xf5, 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0xc0, 0x5a, 0x8a, 0xa1, 0xb2, 0x4a, 0xd8, 0x6d, 0x2b, 0x48, + 0x2c, 0x4a, 0xcc, 0x85, 0xaa, 0x51, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xd9, 0x1e, 0x00, 0x16, 0x0c, + 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0x0a, 0xe2, 0x12, 0x46, 0x11, 0x2d, 0x2e, 0xc8, 0xcf, + 0x2b, 0x4e, 0x15, 0xb2, 0xe6, 0x62, 0x83, 0x68, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, + 0xd5, 0xc3, 0xea, 0x58, 0x3d, 0x88, 0x36, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x5a, + 0x8c, 0x26, 0x31, 0x72, 0xb1, 0x82, 0x0d, 0x15, 0xea, 0x60, 0xe4, 0x62, 0x83, 0x28, 0x11, 0xd2, + 0xc4, 0x61, 0x02, 0xa6, 0x9b, 0xa4, 0xb4, 0x88, 0x51, 0x0a, 0x71, 0xa8, 0x92, 0x7a, 0xd3, 0xe5, + 0x27, 0x93, 0x99, 0x14, 0x85, 0xe4, 0xf5, 0xd1, 0x83, 0xa0, 0xcc, 0x30, 0x29, 0xb5, 0x24, 0xd1, + 0x10, 0x1a, 0x08, 0x4e, 0x9e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, + 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, + 0x9f, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0xef, 0x1d, 0x19, 0xe6, 0xea, + 0x97, 0x5a, 0x52, 0x9e, 0x5f, 0x94, 0xad, 0x9f, 0x9c, 0x91, 0x98, 0x99, 0xa7, 0x5f, 0x81, 0x11, + 0xac, 0x49, 0x6c, 0xe0, 0x00, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x5d, 0x13, 0x4d, 0xac, + 0xe4, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -170,7 +168,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -205,7 +203,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Query/Params", + FullMethod: "/kyve.delegation.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -214,7 +212,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.delegation.v1beta1.Query", + ServiceName: "kyve.delegation.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -223,7 +221,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/delegation/v1beta1/query.proto", + Metadata: "kyve/delegation/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/delegation/types/query.pb.gw.go b/x/delegation/types/query.pb.gw.go index 2702a9cd..177e4a65 100644 --- a/x/delegation/types/query.pb.gw.go +++ b/x/delegation/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/delegation/v1beta1/query.proto +// source: kyve/delegation/types/query.proto /* Package types is a reverse proxy. diff --git a/x/delegation/types/tx.pb.go b/x/delegation/types/tx.pb.go index 2c7f422e..0a806137 100644 --- a/x/delegation/types/tx.pb.go +++ b/x/delegation/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/delegation/v1beta1/tx.proto +// source: kyve/delegation/types/tx.proto package types @@ -43,7 +43,7 @@ func (m *MsgDelegate) Reset() { *m = MsgDelegate{} } func (m *MsgDelegate) String() string { return proto.CompactTextString(m) } func (*MsgDelegate) ProtoMessage() {} func (*MsgDelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{0} + return fileDescriptor_a89ce509ea91903e, []int{0} } func (m *MsgDelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -101,7 +101,7 @@ func (m *MsgDelegateResponse) Reset() { *m = MsgDelegateResponse{} } func (m *MsgDelegateResponse) String() string { return proto.CompactTextString(m) } func (*MsgDelegateResponse) ProtoMessage() {} func (*MsgDelegateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{1} + return fileDescriptor_a89ce509ea91903e, []int{1} } func (m *MsgDelegateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -142,7 +142,7 @@ func (m *MsgWithdrawRewards) Reset() { *m = MsgWithdrawRewards{} } func (m *MsgWithdrawRewards) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawRewards) ProtoMessage() {} func (*MsgWithdrawRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{2} + return fileDescriptor_a89ce509ea91903e, []int{2} } func (m *MsgWithdrawRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -193,7 +193,7 @@ func (m *MsgWithdrawRewardsResponse) Reset() { *m = MsgWithdrawRewardsRe func (m *MsgWithdrawRewardsResponse) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawRewardsResponse) ProtoMessage() {} func (*MsgWithdrawRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{3} + return fileDescriptor_a89ce509ea91903e, []int{3} } func (m *MsgWithdrawRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,7 +236,7 @@ func (m *MsgUndelegate) Reset() { *m = MsgUndelegate{} } func (m *MsgUndelegate) String() string { return proto.CompactTextString(m) } func (*MsgUndelegate) ProtoMessage() {} func (*MsgUndelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{4} + return fileDescriptor_a89ce509ea91903e, []int{4} } func (m *MsgUndelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -294,7 +294,7 @@ func (m *MsgUndelegateResponse) Reset() { *m = MsgUndelegateResponse{} } func (m *MsgUndelegateResponse) String() string { return proto.CompactTextString(m) } func (*MsgUndelegateResponse) ProtoMessage() {} func (*MsgUndelegateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{5} + return fileDescriptor_a89ce509ea91903e, []int{5} } func (m *MsgUndelegateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -340,7 +340,7 @@ func (m *MsgRedelegate) Reset() { *m = MsgRedelegate{} } func (m *MsgRedelegate) String() string { return proto.CompactTextString(m) } func (*MsgRedelegate) ProtoMessage() {} func (*MsgRedelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{6} + return fileDescriptor_a89ce509ea91903e, []int{6} } func (m *MsgRedelegate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -405,7 +405,7 @@ func (m *MsgRedelegateResponse) Reset() { *m = MsgRedelegateResponse{} } func (m *MsgRedelegateResponse) String() string { return proto.CompactTextString(m) } func (*MsgRedelegateResponse) ProtoMessage() {} func (*MsgRedelegateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{7} + return fileDescriptor_a89ce509ea91903e, []int{7} } func (m *MsgRedelegateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -446,7 +446,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{8} + return fileDescriptor_a89ce509ea91903e, []int{8} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -497,7 +497,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_cfef676107453bda, []int{9} + return fileDescriptor_a89ce509ea91903e, []int{9} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -527,56 +527,55 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgDelegate)(nil), "kyve.delegation.v1beta1.MsgDelegate") - proto.RegisterType((*MsgDelegateResponse)(nil), "kyve.delegation.v1beta1.MsgDelegateResponse") - proto.RegisterType((*MsgWithdrawRewards)(nil), "kyve.delegation.v1beta1.MsgWithdrawRewards") - proto.RegisterType((*MsgWithdrawRewardsResponse)(nil), "kyve.delegation.v1beta1.MsgWithdrawRewardsResponse") - proto.RegisterType((*MsgUndelegate)(nil), "kyve.delegation.v1beta1.MsgUndelegate") - proto.RegisterType((*MsgUndelegateResponse)(nil), "kyve.delegation.v1beta1.MsgUndelegateResponse") - proto.RegisterType((*MsgRedelegate)(nil), "kyve.delegation.v1beta1.MsgRedelegate") - proto.RegisterType((*MsgRedelegateResponse)(nil), "kyve.delegation.v1beta1.MsgRedelegateResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.delegation.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.delegation.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/delegation/v1beta1/tx.proto", fileDescriptor_cfef676107453bda) } - -var fileDescriptor_cfef676107453bda = []byte{ - // 532 bytes of a gzipped FileDescriptorProto + proto.RegisterType((*MsgDelegate)(nil), "kyve.delegation.types.MsgDelegate") + proto.RegisterType((*MsgDelegateResponse)(nil), "kyve.delegation.types.MsgDelegateResponse") + proto.RegisterType((*MsgWithdrawRewards)(nil), "kyve.delegation.types.MsgWithdrawRewards") + proto.RegisterType((*MsgWithdrawRewardsResponse)(nil), "kyve.delegation.types.MsgWithdrawRewardsResponse") + proto.RegisterType((*MsgUndelegate)(nil), "kyve.delegation.types.MsgUndelegate") + proto.RegisterType((*MsgUndelegateResponse)(nil), "kyve.delegation.types.MsgUndelegateResponse") + proto.RegisterType((*MsgRedelegate)(nil), "kyve.delegation.types.MsgRedelegate") + proto.RegisterType((*MsgRedelegateResponse)(nil), "kyve.delegation.types.MsgRedelegateResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.delegation.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.delegation.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/delegation/types/tx.proto", fileDescriptor_a89ce509ea91903e) } + +var fileDescriptor_a89ce509ea91903e = []byte{ + // 527 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0x63, 0x12, 0x4a, 0xf3, 0xb6, 0x50, 0xc9, 0x50, 0x92, 0x1a, 0x64, 0xa2, 0x08, 0xa1, - 0xa8, 0x80, 0x8f, 0x50, 0x89, 0xa1, 0x1b, 0x15, 0x0c, 0x08, 0x05, 0x21, 0x87, 0x3f, 0x82, 0x81, - 0xea, 0x12, 0x1f, 0x17, 0x93, 0xda, 0x67, 0xdd, 0x5d, 0x92, 0x66, 0x43, 0xec, 0x48, 0xac, 0x7c, - 0x8b, 0x0e, 0x7c, 0x08, 0xc6, 0x8a, 0x89, 0x11, 0x25, 0x43, 0xbf, 0x06, 0xf2, 0x7f, 0xc7, 0x15, - 0x26, 0x1d, 0x3a, 0x59, 0xef, 0xbd, 0xcf, 0xbd, 0xcf, 0xef, 0x95, 0x1e, 0x1f, 0x34, 0x86, 0xd3, - 0x31, 0x41, 0x16, 0x39, 0x20, 0x14, 0x4b, 0x9b, 0xb9, 0x68, 0xdc, 0xee, 0x11, 0x89, 0xdb, 0x48, - 0x1e, 0x1a, 0x1e, 0x67, 0x92, 0xa9, 0x35, 0x5f, 0x61, 0xa4, 0x0a, 0x23, 0x52, 0x68, 0xb5, 0x3e, - 0x13, 0x0e, 0x13, 0xc8, 0x11, 0x14, 0x8d, 0xdb, 0xfe, 0x27, 0xbc, 0xa1, 0x6d, 0x85, 0x8d, 0xfd, - 0xa0, 0x42, 0x61, 0x11, 0xb6, 0x9a, 0x04, 0xd6, 0x3a, 0x82, 0x3e, 0x09, 0x87, 0x11, 0xb5, 0x0e, - 0x97, 0xfa, 0x9c, 0x60, 0xc9, 0x78, 0x5d, 0x69, 0x28, 0xad, 0xaa, 0x19, 0x97, 0xea, 0x75, 0x58, - 0x11, 0x12, 0x0f, 0x09, 0xaf, 0x5f, 0x08, 0x1a, 0x51, 0xe5, 0x9f, 0x63, 0x87, 0x8d, 0x5c, 0x59, - 0x2f, 0x37, 0x94, 0x56, 0xc5, 0x8c, 0xaa, 0xdd, 0xf5, 0x2f, 0x27, 0x47, 0xdb, 0xf1, 0xed, 0xe6, - 0x26, 0x5c, 0xcd, 0xd8, 0x98, 0x44, 0x78, 0xcc, 0x15, 0xa4, 0xf9, 0x0a, 0xd4, 0x8e, 0xa0, 0x6f, - 0x6d, 0x39, 0xb0, 0x38, 0x9e, 0x98, 0x64, 0x82, 0xb9, 0x25, 0xce, 0x0e, 0x91, 0x33, 0xbb, 0x09, - 0xda, 0xe9, 0xa9, 0x89, 0x27, 0x85, 0xcb, 0x1d, 0x41, 0x5f, 0xbb, 0xd6, 0x79, 0xef, 0x5c, 0x83, - 0xcd, 0x05, 0xa3, 0x84, 0xe0, 0xab, 0x12, 0x20, 0x98, 0x64, 0x09, 0x84, 0x5b, 0xb0, 0xf6, 0x91, - 0x33, 0x67, 0x7f, 0x81, 0x03, 0xfc, 0xa3, 0x6e, 0xc8, 0x72, 0x03, 0xaa, 0x92, 0xc5, 0xed, 0x72, - 0xd0, 0x5e, 0x95, 0xac, 0x9b, 0x07, 0xad, 0xfc, 0x17, 0x34, 0xc5, 0x49, 0x40, 0x05, 0x6c, 0xf8, - 0x1b, 0x78, 0x16, 0x96, 0xe4, 0x25, 0xe6, 0xd8, 0x11, 0xea, 0x23, 0xa8, 0xe2, 0x91, 0x1c, 0x30, - 0x6e, 0xcb, 0x69, 0xc8, 0xba, 0x57, 0xff, 0xf5, 0xe3, 0xfe, 0xb5, 0x28, 0x54, 0x8f, 0x2d, 0x8b, - 0x13, 0x21, 0xba, 0x92, 0xdb, 0x2e, 0x35, 0x53, 0xa9, 0xbf, 0xa1, 0x87, 0xa7, 0x07, 0x0c, 0x5b, - 0xd1, 0x0e, 0x71, 0xb9, 0x7b, 0xc5, 0x67, 0x49, 0x95, 0xcd, 0x2d, 0xa8, 0xe5, 0x4c, 0x63, 0x9e, - 0x87, 0xdf, 0x2b, 0x50, 0xee, 0x08, 0xaa, 0x7e, 0x80, 0xd5, 0x24, 0xb1, 0xb7, 0x8d, 0x7f, 0xfc, - 0x0e, 0x46, 0x26, 0x70, 0xda, 0xbd, 0x65, 0x54, 0xb1, 0x8f, 0x2a, 0x60, 0x23, 0x9f, 0xc9, 0xbb, - 0x45, 0x03, 0x72, 0x62, 0x6d, 0xe7, 0x0c, 0xe2, 0xc4, 0xd4, 0x02, 0xc8, 0x84, 0xf2, 0x4e, 0xd1, - 0x88, 0x54, 0xa7, 0x19, 0xcb, 0xe9, 0xb2, 0x2e, 0x99, 0xdc, 0x15, 0xba, 0xa4, 0xba, 0x62, 0x97, - 0xd3, 0xc1, 0x51, 0x3f, 0xc1, 0xfa, 0x42, 0x6a, 0x5a, 0x85, 0x94, 0x19, 0xa5, 0xf6, 0x60, 0x59, - 0x65, 0xec, 0xa5, 0x5d, 0xfc, 0x7c, 0x72, 0xb4, 0xad, 0xec, 0x3d, 0xfb, 0x39, 0xd3, 0x95, 0xe3, - 0x99, 0xae, 0xfc, 0x99, 0xe9, 0xca, 0xb7, 0xb9, 0x5e, 0x3a, 0x9e, 0xeb, 0xa5, 0xdf, 0x73, 0xbd, - 0xf4, 0x1e, 0x51, 0x5b, 0x0e, 0x46, 0x3d, 0xa3, 0xcf, 0x1c, 0xf4, 0xfc, 0xdd, 0x9b, 0xa7, 0x2f, - 0x88, 0x9c, 0x30, 0x3e, 0x44, 0xfd, 0x01, 0xb6, 0x5d, 0x74, 0x98, 0x7d, 0x6b, 0xe5, 0xd4, 0x23, - 0xa2, 0xb7, 0x12, 0x3c, 0x8d, 0x3b, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x04, 0xc0, 0xc0, 0x12, - 0x8b, 0x05, 0x00, 0x00, + 0x18, 0xc6, 0x63, 0x12, 0x4a, 0xf3, 0xb6, 0x50, 0xc9, 0x10, 0xe2, 0x1a, 0x64, 0x2a, 0x0b, 0xa1, + 0x12, 0x81, 0x4f, 0x05, 0x89, 0xa1, 0x1b, 0x15, 0x0c, 0x08, 0x05, 0x21, 0x87, 0x3f, 0xa2, 0x4b, + 0xb9, 0xc6, 0xd7, 0x8b, 0x95, 0xda, 0x67, 0xdd, 0x5d, 0x9a, 0x66, 0x43, 0x48, 0x8c, 0x48, 0x7c, + 0x94, 0x0e, 0x7c, 0x08, 0xc6, 0x8a, 0x89, 0x11, 0x25, 0x43, 0xbf, 0x06, 0xb2, 0x1d, 0xff, 0x89, + 0x43, 0x53, 0x33, 0x30, 0x45, 0xaf, 0x9f, 0xe7, 0xee, 0xf9, 0xbd, 0xd2, 0x93, 0x03, 0xa3, 0x3f, + 0x3a, 0x22, 0xc8, 0x21, 0x87, 0x84, 0x62, 0xe9, 0x32, 0x1f, 0xc9, 0x51, 0x40, 0x04, 0x92, 0xc7, + 0x56, 0xc0, 0x99, 0x64, 0x6a, 0x23, 0xd4, 0xad, 0x4c, 0xb7, 0x22, 0x5d, 0x6f, 0x76, 0x99, 0xf0, + 0x98, 0x40, 0x9e, 0xa0, 0xe8, 0x68, 0x2b, 0xfc, 0x89, 0xfd, 0xfa, 0x7a, 0x2c, 0xec, 0x45, 0x13, + 0x8a, 0x87, 0x58, 0x32, 0x09, 0xac, 0xb4, 0x05, 0x7d, 0x16, 0x5f, 0x45, 0x54, 0x0d, 0xae, 0x74, + 0x39, 0xc1, 0x92, 0x71, 0x4d, 0xd9, 0x50, 0x36, 0xeb, 0x76, 0x32, 0xaa, 0x37, 0x61, 0x49, 0x48, + 0xdc, 0x27, 0x5c, 0xbb, 0x14, 0x09, 0xd3, 0x29, 0xfc, 0x8e, 0x3d, 0x36, 0xf0, 0xa5, 0x56, 0xdd, + 0x50, 0x36, 0x6b, 0xf6, 0x74, 0xda, 0x5e, 0xfd, 0x7c, 0x76, 0xd2, 0x4a, 0x4e, 0x9b, 0x0d, 0xb8, + 0x9e, 0x8b, 0xb1, 0x89, 0x08, 0x98, 0x2f, 0x88, 0xf9, 0x06, 0xd4, 0xb6, 0xa0, 0xef, 0x5d, 0xd9, + 0x73, 0x38, 0x1e, 0xda, 0x64, 0x88, 0xb9, 0x23, 0xfe, 0x1d, 0xa2, 0x10, 0x76, 0x1b, 0xf4, 0xf9, + 0x5b, 0xd3, 0x4c, 0x0a, 0x57, 0xdb, 0x82, 0xbe, 0xf5, 0x9d, 0xff, 0xbd, 0x73, 0x13, 0x1a, 0x33, + 0x41, 0x29, 0xc1, 0x57, 0x25, 0x42, 0xb0, 0x49, 0x09, 0x84, 0x3b, 0xb0, 0x72, 0xc0, 0x99, 0xb7, + 0x37, 0xc3, 0x01, 0xe1, 0xa7, 0x4e, 0xcc, 0x72, 0x0b, 0xea, 0x92, 0x25, 0x72, 0x35, 0x92, 0x97, + 0x25, 0xeb, 0x14, 0x41, 0x6b, 0x17, 0x82, 0x66, 0x38, 0x29, 0xa8, 0x80, 0xb5, 0x70, 0x83, 0xc0, + 0xc1, 0x92, 0xbc, 0xc6, 0x1c, 0x7b, 0x42, 0x7d, 0x02, 0x75, 0x3c, 0x90, 0x3d, 0xc6, 0x5d, 0x39, + 0x8a, 0x59, 0x77, 0xb4, 0x9f, 0xdf, 0x1f, 0xde, 0x98, 0x96, 0xea, 0xa9, 0xe3, 0x70, 0x22, 0x44, + 0x47, 0x72, 0xd7, 0xa7, 0x76, 0x66, 0x0d, 0x37, 0x0c, 0xf0, 0xe8, 0x90, 0x61, 0x67, 0xba, 0x43, + 0x32, 0x6e, 0x5f, 0x0b, 0x59, 0x32, 0xa7, 0xb9, 0x0e, 0xcd, 0x42, 0x68, 0xc2, 0xf3, 0xe8, 0x4b, + 0x0d, 0xaa, 0x6d, 0x41, 0xd5, 0x5d, 0x58, 0x4e, 0x1b, 0x6b, 0x5a, 0x7f, 0xfd, 0x33, 0x58, 0xb9, + 0xba, 0xe9, 0xad, 0x8b, 0x3d, 0x49, 0x86, 0xca, 0x60, 0xad, 0xd8, 0xc7, 0xfb, 0xe7, 0x1f, 0x2f, + 0x58, 0xf5, 0xad, 0xd2, 0xd6, 0x34, 0xf0, 0x23, 0x40, 0xae, 0x8c, 0x77, 0xcf, 0xbf, 0x20, 0x73, + 0xe9, 0x0f, 0xca, 0xb8, 0xf2, 0x09, 0xb9, 0xae, 0x2d, 0x48, 0xc8, 0x5c, 0x8b, 0x12, 0xe6, 0x8b, + 0xa2, 0x1e, 0xc0, 0xea, 0x4c, 0x4b, 0xee, 0x2d, 0xe0, 0xcb, 0xf9, 0x74, 0xab, 0x9c, 0x2f, 0xc9, + 0xd1, 0x2f, 0x7f, 0x3a, 0x3b, 0x69, 0x29, 0x3b, 0x2f, 0x7e, 0x8c, 0x0d, 0xe5, 0x74, 0x6c, 0x28, + 0xbf, 0xc7, 0x86, 0xf2, 0x6d, 0x62, 0x54, 0x4e, 0x27, 0x46, 0xe5, 0xd7, 0xc4, 0xa8, 0xec, 0x22, + 0xea, 0xca, 0xde, 0x60, 0xdf, 0xea, 0x32, 0x0f, 0xbd, 0xfc, 0xf0, 0xee, 0xf9, 0x2b, 0x22, 0x87, + 0x8c, 0xf7, 0x51, 0xb7, 0x87, 0x5d, 0x1f, 0x1d, 0xcf, 0xbd, 0xa9, 0xfb, 0x4b, 0xd1, 0x33, 0xf8, + 0xf8, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x11, 0xd1, 0x89, 0xd9, 0x73, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -614,7 +613,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Delegate(ctx context.Context, in *MsgDelegate, opts ...grpc.CallOption) (*MsgDelegateResponse, error) { out := new(MsgDelegateResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Msg/Delegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Msg/Delegate", in, out, opts...) if err != nil { return nil, err } @@ -623,7 +622,7 @@ func (c *msgClient) Delegate(ctx context.Context, in *MsgDelegate, opts ...grpc. func (c *msgClient) WithdrawRewards(ctx context.Context, in *MsgWithdrawRewards, opts ...grpc.CallOption) (*MsgWithdrawRewardsResponse, error) { out := new(MsgWithdrawRewardsResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Msg/WithdrawRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Msg/WithdrawRewards", in, out, opts...) if err != nil { return nil, err } @@ -632,7 +631,7 @@ func (c *msgClient) WithdrawRewards(ctx context.Context, in *MsgWithdrawRewards, func (c *msgClient) Undelegate(ctx context.Context, in *MsgUndelegate, opts ...grpc.CallOption) (*MsgUndelegateResponse, error) { out := new(MsgUndelegateResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Msg/Undelegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Msg/Undelegate", in, out, opts...) if err != nil { return nil, err } @@ -641,7 +640,7 @@ func (c *msgClient) Undelegate(ctx context.Context, in *MsgUndelegate, opts ...g func (c *msgClient) Redelegate(ctx context.Context, in *MsgRedelegate, opts ...grpc.CallOption) (*MsgRedelegateResponse, error) { out := new(MsgRedelegateResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Msg/Redelegate", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Msg/Redelegate", in, out, opts...) if err != nil { return nil, err } @@ -650,7 +649,7 @@ func (c *msgClient) Redelegate(ctx context.Context, in *MsgRedelegate, opts ...g func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.delegation.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.delegation.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -706,7 +705,7 @@ func _Msg_Delegate_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Msg/Delegate", + FullMethod: "/kyve.delegation.types.Msg/Delegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Delegate(ctx, req.(*MsgDelegate)) @@ -724,7 +723,7 @@ func _Msg_WithdrawRewards_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Msg/WithdrawRewards", + FullMethod: "/kyve.delegation.types.Msg/WithdrawRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawRewards(ctx, req.(*MsgWithdrawRewards)) @@ -742,7 +741,7 @@ func _Msg_Undelegate_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Msg/Undelegate", + FullMethod: "/kyve.delegation.types.Msg/Undelegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Undelegate(ctx, req.(*MsgUndelegate)) @@ -760,7 +759,7 @@ func _Msg_Redelegate_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Msg/Redelegate", + FullMethod: "/kyve.delegation.types.Msg/Redelegate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Redelegate(ctx, req.(*MsgRedelegate)) @@ -778,7 +777,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.delegation.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.delegation.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -787,7 +786,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.delegation.v1beta1.Msg", + ServiceName: "kyve.delegation.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -812,7 +811,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/delegation/v1beta1/tx.proto", + Metadata: "kyve/delegation/types/tx.proto", } func (m *MsgDelegate) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/events.pb.go b/x/funders/types/events.pb.go index d88c886d..5d07c729 100644 --- a/x/funders/types/events.pb.go +++ b/x/funders/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/events.proto +// source: kyve/funders/types/events.proto package types @@ -38,7 +38,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{0} + return fileDescriptor_8f10dc0a617e9aa8, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -109,7 +109,7 @@ func (m *EventCreateFunder) Reset() { *m = EventCreateFunder{} } func (m *EventCreateFunder) String() string { return proto.CompactTextString(m) } func (*EventCreateFunder) ProtoMessage() {} func (*EventCreateFunder) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{1} + return fileDescriptor_8f10dc0a617e9aa8, []int{1} } func (m *EventCreateFunder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -201,7 +201,7 @@ func (m *EventUpdateFunder) Reset() { *m = EventUpdateFunder{} } func (m *EventUpdateFunder) String() string { return proto.CompactTextString(m) } func (*EventUpdateFunder) ProtoMessage() {} func (*EventUpdateFunder) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{2} + return fileDescriptor_8f10dc0a617e9aa8, []int{2} } func (m *EventUpdateFunder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,7 +289,7 @@ func (m *EventFundPool) Reset() { *m = EventFundPool{} } func (m *EventFundPool) String() string { return proto.CompactTextString(m) } func (*EventFundPool) ProtoMessage() {} func (*EventFundPool) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{3} + return fileDescriptor_8f10dc0a617e9aa8, []int{3} } func (m *EventFundPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -361,7 +361,7 @@ func (m *EventDefundPool) Reset() { *m = EventDefundPool{} } func (m *EventDefundPool) String() string { return proto.CompactTextString(m) } func (*EventDefundPool) ProtoMessage() {} func (*EventDefundPool) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{4} + return fileDescriptor_8f10dc0a617e9aa8, []int{4} } func (m *EventDefundPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -422,7 +422,7 @@ func (m *EventPoolOutOfFunds) Reset() { *m = EventPoolOutOfFunds{} } func (m *EventPoolOutOfFunds) String() string { return proto.CompactTextString(m) } func (*EventPoolOutOfFunds) ProtoMessage() {} func (*EventPoolOutOfFunds) Descriptor() ([]byte, []int) { - return fileDescriptor_1cf957abd56bbcb0, []int{5} + return fileDescriptor_8f10dc0a617e9aa8, []int{5} } func (m *EventPoolOutOfFunds) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -459,47 +459,47 @@ func (m *EventPoolOutOfFunds) GetPoolId() uint64 { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.funders.v1beta1.EventUpdateParams") - proto.RegisterType((*EventCreateFunder)(nil), "kyve.funders.v1beta1.EventCreateFunder") - proto.RegisterType((*EventUpdateFunder)(nil), "kyve.funders.v1beta1.EventUpdateFunder") - proto.RegisterType((*EventFundPool)(nil), "kyve.funders.v1beta1.EventFundPool") - proto.RegisterType((*EventDefundPool)(nil), "kyve.funders.v1beta1.EventDefundPool") - proto.RegisterType((*EventPoolOutOfFunds)(nil), "kyve.funders.v1beta1.EventPoolOutOfFunds") -} - -func init() { proto.RegisterFile("kyve/funders/v1beta1/events.proto", fileDescriptor_1cf957abd56bbcb0) } - -var fileDescriptor_1cf957abd56bbcb0 = []byte{ - // 460 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x93, 0x4f, 0x6b, 0xd4, 0x40, - 0x18, 0xc6, 0x37, 0x35, 0x6e, 0xdd, 0x29, 0x52, 0x1a, 0x8b, 0x86, 0x45, 0xe2, 0xba, 0xa7, 0x22, - 0x92, 0x50, 0xfd, 0x04, 0xae, 0xb6, 0x20, 0x82, 0x5d, 0x02, 0x0a, 0x8a, 0xb0, 0x4c, 0x32, 0xef, - 0x6e, 0x87, 0xcd, 0xce, 0x1b, 0x26, 0x93, 0x5d, 0xf3, 0x05, 0x3c, 0xfb, 0x5d, 0x3c, 0xf9, 0x0d, - 0x7a, 0xec, 0xd1, 0x93, 0xc8, 0xee, 0x17, 0x91, 0xf9, 0x93, 0xb6, 0x42, 0x05, 0x0f, 0x5e, 0x7a, - 0xcb, 0x33, 0xcf, 0x33, 0xcf, 0xfb, 0x7b, 0x03, 0x43, 0x1e, 0xcf, 0x9b, 0x25, 0x24, 0xd3, 0x5a, - 0x30, 0x90, 0x55, 0xb2, 0x3c, 0xcc, 0x40, 0xd1, 0xc3, 0x04, 0x96, 0x20, 0x54, 0x15, 0x97, 0x12, - 0x15, 0x06, 0xfb, 0x3a, 0x12, 0xbb, 0x48, 0xec, 0x22, 0xfd, 0xfd, 0x19, 0xce, 0xd0, 0x04, 0x12, - 0xfd, 0x65, 0xb3, 0xfd, 0xeb, 0xeb, 0x4a, 0x2a, 0xe9, 0xc2, 0xd5, 0x0d, 0xbf, 0x79, 0x64, 0xef, - 0x48, 0xf7, 0xbf, 0x2b, 0x19, 0x55, 0x30, 0x36, 0x5e, 0xf0, 0x82, 0x10, 0x2c, 0xd8, 0xc4, 0x26, - 0x43, 0x6f, 0xe0, 0x1d, 0xec, 0x3c, 0x7b, 0x18, 0x5f, 0x37, 0x39, 0xb6, 0x37, 0x46, 0xfe, 0xd9, - 0xcf, 0x47, 0x9d, 0xb4, 0x87, 0x05, 0xbb, 0xac, 0x10, 0xb0, 0x6a, 0x2b, 0xb6, 0xfe, 0xbd, 0x42, - 0xc0, 0xca, 0x55, 0x84, 0x64, 0xbb, 0xa4, 0x4d, 0x81, 0x94, 0x85, 0xb7, 0x06, 0xde, 0x41, 0x2f, - 0x6d, 0xe5, 0xf0, 0x7b, 0x4b, 0xfd, 0x52, 0x02, 0x55, 0x70, 0x6c, 0x0a, 0x75, 0x9e, 0x32, 0x26, - 0xa1, 0xb2, 0xc8, 0xbd, 0xb4, 0x95, 0xda, 0x59, 0xa0, 0xe0, 0x73, 0x90, 0x86, 0xa4, 0x97, 0xb6, - 0x32, 0xe8, 0x93, 0x3b, 0x9c, 0x81, 0x50, 0x5c, 0x35, 0x6e, 0xc8, 0x85, 0xd6, 0xb7, 0x56, 0x90, - 0x55, 0x5c, 0x41, 0xe8, 0xdb, 0x5b, 0x4e, 0x6a, 0x27, 0x47, 0xa1, 0x68, 0xae, 0xc2, 0xdb, 0xd6, - 0x71, 0x32, 0x18, 0x90, 0x1d, 0x06, 0x55, 0x2e, 0x79, 0xa9, 0x38, 0x8a, 0xb0, 0x6b, 0xdc, 0xab, - 0x47, 0x97, 0xec, 0xf6, 0x8f, 0xdf, 0x28, 0xf6, 0x2f, 0x1e, 0xb9, 0x6b, 0xd8, 0x35, 0xf5, 0x18, - 0xb1, 0x08, 0x1e, 0x90, 0xed, 0x12, 0xb1, 0x98, 0x70, 0x66, 0xb8, 0xfd, 0xb4, 0xab, 0xe5, 0x6b, - 0x76, 0x75, 0xa1, 0xad, 0x3f, 0x17, 0xba, 0x4f, 0xba, 0x74, 0x81, 0xb5, 0x50, 0x06, 0xda, 0x4f, - 0x9d, 0x0a, 0x9e, 0x90, 0x3d, 0xfb, 0x35, 0x29, 0x41, 0x4e, 0xb2, 0x5a, 0xb0, 0xc2, 0xc2, 0xfb, - 0xe9, 0xae, 0x35, 0xc6, 0x20, 0x47, 0xe6, 0x78, 0xf8, 0x89, 0xec, 0x1a, 0x8e, 0x57, 0x30, 0xfd, - 0xff, 0x24, 0xc3, 0x98, 0xdc, 0x33, 0xed, 0xba, 0xf7, 0xa4, 0x56, 0x27, 0x53, 0xbd, 0x6e, 0xf5, - 0xd7, 0x09, 0xa3, 0xe3, 0xb3, 0x75, 0xe4, 0x9d, 0xaf, 0x23, 0xef, 0xd7, 0x3a, 0xf2, 0xbe, 0x6e, - 0xa2, 0xce, 0xf9, 0x26, 0xea, 0xfc, 0xd8, 0x44, 0x9d, 0x8f, 0x4f, 0x67, 0x5c, 0x9d, 0xd6, 0x59, - 0x9c, 0xe3, 0x22, 0x79, 0xf3, 0xe1, 0xfd, 0xd1, 0x5b, 0x50, 0x2b, 0x94, 0xf3, 0x24, 0x3f, 0xa5, - 0x5c, 0x24, 0x9f, 0x2f, 0xde, 0xa6, 0x6a, 0x4a, 0xa8, 0xb2, 0xae, 0x79, 0x93, 0xcf, 0x7f, 0x07, - 0x00, 0x00, 0xff, 0xff, 0xfe, 0x83, 0x31, 0xec, 0x07, 0x04, 0x00, 0x00, + proto.RegisterType((*EventUpdateParams)(nil), "kyve.funders.types.EventUpdateParams") + proto.RegisterType((*EventCreateFunder)(nil), "kyve.funders.types.EventCreateFunder") + proto.RegisterType((*EventUpdateFunder)(nil), "kyve.funders.types.EventUpdateFunder") + proto.RegisterType((*EventFundPool)(nil), "kyve.funders.types.EventFundPool") + proto.RegisterType((*EventDefundPool)(nil), "kyve.funders.types.EventDefundPool") + proto.RegisterType((*EventPoolOutOfFunds)(nil), "kyve.funders.types.EventPoolOutOfFunds") +} + +func init() { proto.RegisterFile("kyve/funders/types/events.proto", fileDescriptor_8f10dc0a617e9aa8) } + +var fileDescriptor_8f10dc0a617e9aa8 = []byte{ + // 454 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x93, 0xc1, 0x6a, 0x13, 0x41, + 0x18, 0xc7, 0x33, 0x75, 0x4d, 0xcd, 0x14, 0x29, 0x5d, 0x45, 0x97, 0x1c, 0xb6, 0x21, 0xa7, 0x22, + 0xb2, 0x0b, 0xfa, 0x00, 0x42, 0xb4, 0x05, 0x11, 0x6c, 0x58, 0x50, 0x50, 0x84, 0x30, 0xd9, 0xf9, + 0x92, 0x0e, 0xd9, 0xcc, 0x37, 0xcc, 0xce, 0x36, 0xee, 0x0b, 0x78, 0xf6, 0x4d, 0x3c, 0xfb, 0x06, + 0x3d, 0xf6, 0xe8, 0x49, 0x24, 0x79, 0x11, 0x99, 0x99, 0x5d, 0xdb, 0xa0, 0x82, 0x07, 0x2f, 0xbd, + 0xed, 0x7f, 0xfe, 0xff, 0xf9, 0x7f, 0xbf, 0x6f, 0x61, 0xe8, 0xe1, 0xa2, 0x3e, 0x87, 0x74, 0x56, + 0x49, 0x0e, 0xba, 0x4c, 0x4d, 0xad, 0xa0, 0x4c, 0xe1, 0x1c, 0xa4, 0x29, 0x13, 0xa5, 0xd1, 0x60, + 0x18, 0xda, 0x40, 0xd2, 0x04, 0x12, 0x17, 0xe8, 0xdf, 0x9f, 0xe3, 0x1c, 0x9d, 0x9d, 0xda, 0x2f, + 0x9f, 0xec, 0xff, 0xa9, 0x4a, 0x31, 0xcd, 0x96, 0x4d, 0xd5, 0xf0, 0x0b, 0xa1, 0x07, 0xc7, 0xb6, + 0xfb, 0x8d, 0xe2, 0xcc, 0xc0, 0xd8, 0x79, 0xe1, 0x33, 0x4a, 0xb1, 0xe0, 0x13, 0x9f, 0x8c, 0xc8, + 0x80, 0x1c, 0xed, 0x3d, 0xe9, 0x27, 0xbf, 0x4f, 0x4d, 0x7c, 0x7e, 0x14, 0x5c, 0x7c, 0x3f, 0xec, + 0x64, 0x3d, 0x2c, 0xf8, 0x55, 0x81, 0x84, 0x55, 0x5b, 0xb0, 0xf3, 0xaf, 0x05, 0x12, 0x56, 0x4d, + 0x41, 0x44, 0x77, 0x15, 0xab, 0x0b, 0x64, 0x3c, 0xba, 0x35, 0x20, 0x47, 0xbd, 0xac, 0x95, 0xc3, + 0xaf, 0x2d, 0xf1, 0x73, 0x0d, 0xcc, 0xc0, 0x89, 0xab, 0xb3, 0x79, 0xc6, 0xb9, 0x86, 0xd2, 0xe3, + 0xf6, 0xb2, 0x56, 0x5a, 0x67, 0x89, 0x52, 0x2c, 0x40, 0x3b, 0x8e, 0x5e, 0xd6, 0xca, 0xb0, 0x4f, + 0xef, 0x08, 0x0e, 0xd2, 0x08, 0x53, 0x37, 0x43, 0x7e, 0x69, 0x7b, 0x6b, 0x05, 0xd3, 0x52, 0x18, + 0x88, 0x02, 0x7f, 0xab, 0x91, 0xd6, 0xc9, 0x51, 0x1a, 0x96, 0x9b, 0xe8, 0xb6, 0x77, 0x1a, 0x19, + 0x0e, 0xe8, 0x1e, 0x87, 0x32, 0xd7, 0x42, 0x19, 0x81, 0x32, 0xea, 0x3a, 0xf7, 0xfa, 0xd1, 0x15, + 0xbb, 0xff, 0xdb, 0x37, 0x8a, 0xfd, 0x13, 0xa1, 0x77, 0x1d, 0xbb, 0xa5, 0x1e, 0x23, 0x16, 0xe1, + 0x43, 0xba, 0xab, 0x10, 0x8b, 0x89, 0xe0, 0x8e, 0x3b, 0xc8, 0xba, 0x56, 0xbe, 0xe4, 0xd7, 0x17, + 0xda, 0xd9, 0x5e, 0xe8, 0x01, 0xed, 0xb2, 0x25, 0x56, 0xd2, 0x38, 0xe8, 0x20, 0x6b, 0x54, 0xf8, + 0x88, 0x1e, 0xf8, 0xaf, 0x89, 0x02, 0x3d, 0x99, 0x56, 0x92, 0x17, 0x1e, 0x3e, 0xc8, 0xf6, 0xbd, + 0x31, 0x06, 0x3d, 0x72, 0xc7, 0xc3, 0x0f, 0x74, 0xdf, 0x71, 0xbc, 0x80, 0xd9, 0xff, 0x27, 0x19, + 0x26, 0xf4, 0x9e, 0x6b, 0xb7, 0xbd, 0xa7, 0x95, 0x39, 0x9d, 0xd9, 0x75, 0xcb, 0xbf, 0x4e, 0x18, + 0x9d, 0x5c, 0xac, 0x63, 0x72, 0xb9, 0x8e, 0xc9, 0x8f, 0x75, 0x4c, 0x3e, 0x6f, 0xe2, 0xce, 0xe5, + 0x26, 0xee, 0x7c, 0xdb, 0xc4, 0x9d, 0xf7, 0x8f, 0xe7, 0xc2, 0x9c, 0x55, 0xd3, 0x24, 0xc7, 0x65, + 0xfa, 0xea, 0xdd, 0xdb, 0xe3, 0xd7, 0x60, 0x56, 0xa8, 0x17, 0x69, 0x7e, 0xc6, 0x84, 0x4c, 0x3f, + 0x6e, 0xbf, 0xca, 0x69, 0xd7, 0xbd, 0xc7, 0xa7, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x16, 0xb5, + 0xa5, 0x7f, 0xfd, 0x03, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/funders.pb.go b/x/funders/types/funders.pb.go index 1748443e..461aa960 100644 --- a/x/funders/types/funders.pb.go +++ b/x/funders/types/funders.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/funders.proto +// source: kyve/funders/types/funders.proto package types @@ -42,7 +42,7 @@ func (m *Funder) Reset() { *m = Funder{} } func (m *Funder) String() string { return proto.CompactTextString(m) } func (*Funder) ProtoMessage() {} func (*Funder) Descriptor() ([]byte, []int) { - return fileDescriptor_252d80f89b0fa299, []int{0} + return fileDescriptor_a8d889dd5b2bc696, []int{0} } func (m *Funder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -134,7 +134,7 @@ func (m *Funding) Reset() { *m = Funding{} } func (m *Funding) String() string { return proto.CompactTextString(m) } func (*Funding) ProtoMessage() {} func (*Funding) Descriptor() ([]byte, []int) { - return fileDescriptor_252d80f89b0fa299, []int{1} + return fileDescriptor_a8d889dd5b2bc696, []int{1} } func (m *Funding) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -210,7 +210,7 @@ func (m *FundingState) Reset() { *m = FundingState{} } func (m *FundingState) String() string { return proto.CompactTextString(m) } func (*FundingState) ProtoMessage() {} func (*FundingState) Descriptor() ([]byte, []int) { - return fileDescriptor_252d80f89b0fa299, []int{2} + return fileDescriptor_a8d889dd5b2bc696, []int{2} } func (m *FundingState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,42 +254,39 @@ func (m *FundingState) GetActiveFunderAddresses() []string { } func init() { - proto.RegisterType((*Funder)(nil), "kyve.funders.v1beta1.Funder") - proto.RegisterType((*Funding)(nil), "kyve.funders.v1beta1.Funding") - proto.RegisterType((*FundingState)(nil), "kyve.funders.v1beta1.FundingState") + proto.RegisterType((*Funder)(nil), "kyve.funders.types.Funder") + proto.RegisterType((*Funding)(nil), "kyve.funders.types.Funding") + proto.RegisterType((*FundingState)(nil), "kyve.funders.types.FundingState") } -func init() { - proto.RegisterFile("kyve/funders/v1beta1/funders.proto", fileDescriptor_252d80f89b0fa299) -} +func init() { proto.RegisterFile("kyve/funders/types/funders.proto", fileDescriptor_a8d889dd5b2bc696) } -var fileDescriptor_252d80f89b0fa299 = []byte{ - // 386 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x92, 0xd1, 0x8a, 0xd3, 0x40, - 0x14, 0x86, 0x3b, 0xbb, 0x31, 0x75, 0x67, 0x57, 0xc5, 0x41, 0xdd, 0xc1, 0x8b, 0x50, 0x03, 0xc2, - 0x22, 0xd2, 0xb0, 0x08, 0xde, 0x5b, 0xb0, 0x20, 0x82, 0x48, 0x04, 0x41, 0x6f, 0xc2, 0x24, 0x73, - 0x6c, 0x87, 0xb6, 0x33, 0x61, 0xe6, 0xa4, 0xb5, 0x6f, 0xe1, 0x93, 0x88, 0x8f, 0xe1, 0x65, 0x2f, - 0xbd, 0x94, 0xf6, 0x45, 0x96, 0xcc, 0xa4, 0xa5, 0xbd, 0xcb, 0xff, 0xff, 0xe7, 0x90, 0xef, 0x1f, - 0x0e, 0x4d, 0x67, 0xeb, 0x25, 0x64, 0x3f, 0x1a, 0x2d, 0xc1, 0xba, 0x6c, 0x79, 0x5b, 0x02, 0x8a, - 0xdb, 0xbd, 0x1e, 0xd6, 0xd6, 0xa0, 0x61, 0x4f, 0xda, 0x99, 0xe1, 0xde, 0xeb, 0x66, 0xd2, 0xdf, - 0x84, 0xc6, 0x63, 0xef, 0x31, 0x4e, 0xfb, 0x42, 0x4a, 0x0b, 0xce, 0x71, 0x32, 0x20, 0x37, 0x17, - 0xf9, 0x5e, 0xb6, 0xc9, 0xc2, 0x68, 0x35, 0x03, 0xcb, 0xcf, 0x42, 0xd2, 0x49, 0xf6, 0x9c, 0xde, - 0x57, 0x12, 0x34, 0x2a, 0x5c, 0xf3, 0x73, 0x1f, 0x1d, 0x74, 0xbb, 0xb5, 0x82, 0xd2, 0x29, 0x04, - 0x1e, 0x85, 0xad, 0x4e, 0xb6, 0x49, 0x65, 0x34, 0x8a, 0x0a, 0xf9, 0xbd, 0x90, 0x74, 0x92, 0x0d, - 0xe8, 0xa5, 0x04, 0x57, 0x59, 0x55, 0xa3, 0x32, 0x9a, 0xc7, 0x3e, 0x3d, 0xb6, 0xd2, 0x3f, 0x84, - 0xf6, 0x5b, 0x60, 0xa5, 0x27, 0xec, 0x25, 0x7d, 0x18, 0xfa, 0x14, 0xa7, 0xe0, 0x0f, 0x82, 0xfb, - 0xae, 0xc3, 0xbf, 0xa6, 0xfd, 0xda, 0x98, 0x79, 0xa1, 0xa4, 0xc7, 0x8f, 0xf2, 0xb8, 0x95, 0x1f, - 0x24, 0x7b, 0x46, 0x63, 0xb1, 0x30, 0x8d, 0x46, 0xcf, 0x1e, 0xe5, 0x9d, 0x62, 0xaf, 0xe8, 0xe3, - 0xf0, 0x55, 0xd4, 0x60, 0x8b, 0xb2, 0xd1, 0x72, 0x1e, 0x3a, 0x44, 0xf9, 0xa3, 0x10, 0x7c, 0x06, - 0x3b, 0xf2, 0x36, 0x7b, 0x41, 0xaf, 0xd0, 0xa0, 0x98, 0x17, 0xfe, 0x9f, 0xd2, 0x17, 0x8a, 0xf2, - 0x4b, 0xef, 0xf9, 0x87, 0x95, 0x69, 0x41, 0xaf, 0x3a, 0xe2, 0x2f, 0x28, 0x10, 0x8e, 0x79, 0xc8, - 0x09, 0xcf, 0x5b, 0x7a, 0x2d, 0x2a, 0x54, 0x4b, 0x28, 0x4e, 0x6b, 0x81, 0xe3, 0x67, 0x83, 0xf3, - 0x9b, 0x8b, 0xfc, 0x69, 0x88, 0xc7, 0xc7, 0xf5, 0xc0, 0x8d, 0xc6, 0x7f, 0xb7, 0x09, 0xd9, 0x6c, - 0x13, 0xf2, 0x7f, 0x9b, 0x90, 0x5f, 0xbb, 0xa4, 0xb7, 0xd9, 0x25, 0xbd, 0x7f, 0xbb, 0xa4, 0xf7, - 0xfd, 0xf5, 0x44, 0xe1, 0xb4, 0x29, 0x87, 0x95, 0x59, 0x64, 0x1f, 0xbf, 0x7d, 0x7d, 0xff, 0x09, - 0x70, 0x65, 0xec, 0x2c, 0xab, 0xa6, 0x42, 0xe9, 0xec, 0xe7, 0xe1, 0x64, 0x70, 0x5d, 0x83, 0x2b, - 0x63, 0x7f, 0x29, 0x6f, 0xee, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf6, 0x1c, 0xef, 0x4f, 0x4f, 0x02, - 0x00, 0x00, +var fileDescriptor_a8d889dd5b2bc696 = []byte{ + // 378 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x92, 0xc1, 0xca, 0xd3, 0x40, + 0x14, 0x85, 0x3b, 0xff, 0x1f, 0x53, 0x3b, 0xad, 0x8a, 0x03, 0xda, 0xc1, 0x45, 0x88, 0x05, 0xa1, + 0x88, 0x34, 0x0b, 0xc1, 0xbd, 0x05, 0x0b, 0x22, 0x88, 0x44, 0x10, 0x74, 0x13, 0x92, 0xcc, 0xb5, + 0x1d, 0xda, 0xce, 0x84, 0x99, 0x9b, 0xd6, 0xbe, 0x85, 0x4f, 0x22, 0x3e, 0x86, 0xcb, 0x2e, 0x5d, + 0x4a, 0xfb, 0x22, 0x92, 0x99, 0xf4, 0xa7, 0xd9, 0xe5, 0x9c, 0x73, 0x2f, 0xf9, 0xce, 0x70, 0x69, + 0xbc, 0x3e, 0xec, 0x20, 0xf9, 0x5e, 0x2b, 0x01, 0xc6, 0x26, 0x78, 0xa8, 0xc0, 0x5e, 0xd4, 0xac, + 0x32, 0x1a, 0x35, 0x63, 0xcd, 0xc4, 0xec, 0xe2, 0xb9, 0x89, 0xc9, 0x2f, 0x42, 0xc3, 0x85, 0x73, + 0x18, 0xa7, 0xfd, 0x5c, 0x08, 0x03, 0xd6, 0x72, 0x12, 0x93, 0xe9, 0x20, 0xbd, 0xc8, 0x26, 0xd9, + 0x6a, 0x25, 0xd7, 0x60, 0xf8, 0x8d, 0x4f, 0x5a, 0xc9, 0x9e, 0xd1, 0xfb, 0x52, 0x80, 0x42, 0x89, + 0x07, 0x7e, 0xeb, 0xa2, 0x3b, 0xdd, 0x6c, 0xed, 0xa1, 0xb0, 0x12, 0x81, 0x07, 0x7e, 0xab, 0x95, + 0x4d, 0x52, 0x6a, 0x85, 0x79, 0x89, 0xfc, 0x9e, 0x4f, 0x5a, 0xc9, 0x62, 0x3a, 0x14, 0x60, 0x4b, + 0x23, 0x2b, 0x94, 0x5a, 0xf1, 0xd0, 0xa5, 0xd7, 0xd6, 0xe4, 0x37, 0xa1, 0xfd, 0x06, 0x58, 0xaa, + 0x25, 0x7b, 0x41, 0x1f, 0xfa, 0x36, 0x59, 0x17, 0xfc, 0x81, 0x77, 0xdf, 0xb6, 0xf8, 0x63, 0xda, + 0xaf, 0xb4, 0xde, 0x64, 0x52, 0x38, 0xfc, 0x20, 0x0d, 0x1b, 0xf9, 0x5e, 0xb0, 0xa7, 0x34, 0xcc, + 0xb7, 0xba, 0x56, 0xe8, 0xd8, 0x83, 0xb4, 0x55, 0xec, 0x25, 0x7d, 0xec, 0xbf, 0xb2, 0x0a, 0x4c, + 0x56, 0xd4, 0x4a, 0x6c, 0x7c, 0x87, 0x20, 0x7d, 0xe4, 0x83, 0x4f, 0x60, 0xe6, 0xce, 0x66, 0xcf, + 0xe9, 0x08, 0x35, 0xe6, 0x9b, 0xcc, 0xfd, 0x53, 0xb8, 0x42, 0x41, 0x3a, 0x74, 0x9e, 0x7b, 0x58, + 0x31, 0xc9, 0xe8, 0xa8, 0x25, 0xfe, 0x8c, 0x39, 0xc2, 0x35, 0x0f, 0xe9, 0xf0, 0xbc, 0xa1, 0xe3, + 0xbc, 0x44, 0xb9, 0x83, 0xac, 0x5b, 0x0b, 0x2c, 0xbf, 0x89, 0x6f, 0xa7, 0x83, 0xf4, 0x89, 0x8f, + 0x17, 0xd7, 0xf5, 0xc0, 0xce, 0x17, 0x7f, 0x4e, 0x11, 0x39, 0x9e, 0x22, 0xf2, 0xef, 0x14, 0x91, + 0x9f, 0xe7, 0xa8, 0x77, 0x3c, 0x47, 0xbd, 0xbf, 0xe7, 0xa8, 0xf7, 0xed, 0xd5, 0x52, 0xe2, 0xaa, + 0x2e, 0x66, 0xa5, 0xde, 0x26, 0x1f, 0xbe, 0x7e, 0x79, 0xf7, 0x11, 0x70, 0xaf, 0xcd, 0x3a, 0x29, + 0x57, 0xb9, 0x54, 0xc9, 0x8f, 0xee, 0xb9, 0x14, 0xa1, 0xbb, 0x93, 0xd7, 0xff, 0x03, 0x00, 0x00, + 0xff, 0xff, 0xb4, 0xac, 0x56, 0x10, 0x4b, 0x02, 0x00, 0x00, } func (m *Funder) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/genesis.pb.go b/x/funders/types/genesis.pb.go index 5d60f0b6..5049c147 100644 --- a/x/funders/types/genesis.pb.go +++ b/x/funders/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/genesis.proto +// source: kyve/funders/types/genesis.proto package types @@ -39,7 +39,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_d339226ca8e2c929, []int{0} + return fileDescriptor_6e74524d56498e69, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -97,34 +97,32 @@ func (m *GenesisState) GetFundingStateList() []FundingState { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.funders.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.funders.types.GenesisState") } -func init() { - proto.RegisterFile("kyve/funders/v1beta1/genesis.proto", fileDescriptor_d339226ca8e2c929) -} +func init() { proto.RegisterFile("kyve/funders/types/genesis.proto", fileDescriptor_6e74524d56498e69) } -var fileDescriptor_d339226ca8e2c929 = []byte{ - // 301 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xca, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0x01, 0xa9, 0xd1, 0x83, 0xaa, 0xd1, 0x83, 0xaa, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, - 0xd0, 0x07, 0xb1, 0x20, 0x6a, 0xa5, 0xb0, 0x9b, 0x07, 0xd3, 0x0b, 0x51, 0xa3, 0x88, 0x55, 0x4d, - 0x41, 0x62, 0x51, 0x62, 0x2e, 0x54, 0x89, 0xd2, 0x7a, 0x26, 0x2e, 0x1e, 0x77, 0x88, 0x23, 0x82, - 0x4b, 0x12, 0x4b, 0x52, 0x85, 0xac, 0xb8, 0xd8, 0x20, 0x0a, 0x24, 0x18, 0x15, 0x18, 0x35, 0xb8, - 0x8d, 0x64, 0xf4, 0xb0, 0x39, 0x4a, 0x2f, 0x00, 0xac, 0xc6, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, - 0x20, 0xa8, 0x0e, 0x21, 0x67, 0x2e, 0x6e, 0x88, 0xba, 0xf8, 0x9c, 0xcc, 0xe2, 0x12, 0x09, 0x26, - 0x05, 0x66, 0xdc, 0x06, 0xb8, 0x81, 0xf9, 0x50, 0x03, 0xb8, 0x20, 0xb2, 0x3e, 0x99, 0xc5, 0x25, - 0x42, 0x6e, 0x5c, 0x3c, 0x20, 0x5e, 0x66, 0x5e, 0x3a, 0xc4, 0x14, 0x66, 0xb0, 0x29, 0xb2, 0xb8, - 0x4d, 0xc9, 0xcc, 0x4b, 0x87, 0x1a, 0xc3, 0x0d, 0xd5, 0x08, 0x36, 0x27, 0x8c, 0x4b, 0x08, 0x66, - 0x4e, 0x31, 0xc8, 0x67, 0x10, 0xd3, 0x58, 0xc0, 0xa6, 0x29, 0xe1, 0x35, 0x0d, 0x1c, 0x10, 0x50, - 0x23, 0x05, 0xd2, 0x90, 0xc4, 0x40, 0xe6, 0x3a, 0xb9, 0x9d, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, - 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, - 0xb1, 0x1c, 0x43, 0x94, 0x4e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0xbe, - 0x77, 0x64, 0x98, 0xab, 0x5f, 0x6a, 0x49, 0x79, 0x7e, 0x51, 0xb6, 0x7e, 0x72, 0x46, 0x62, 0x66, - 0x9e, 0x7e, 0x05, 0x3c, 0x22, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x11, 0x60, 0x0c, - 0x08, 0x00, 0x00, 0xff, 0xff, 0x69, 0x25, 0xe7, 0xb6, 0x19, 0x02, 0x00, 0x00, +var fileDescriptor_6e74524d56498e69 = []byte{ + // 294 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x4f, + 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0xa9, + 0xd0, 0x83, 0xaa, 0xd0, 0x03, 0xab, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x4b, 0xeb, 0x83, + 0x58, 0x10, 0x95, 0x52, 0xd8, 0xcc, 0x82, 0xe9, 0x83, 0xa8, 0x90, 0xc7, 0xa2, 0xa2, 0x20, 0xb1, + 0x28, 0x31, 0x17, 0xaa, 0x40, 0x69, 0x39, 0x13, 0x17, 0x8f, 0x3b, 0xc4, 0xfa, 0xe0, 0x92, 0xc4, + 0x92, 0x54, 0x21, 0x0b, 0x2e, 0x36, 0x88, 0x02, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x29, + 0x3d, 0x4c, 0xe7, 0xe8, 0x05, 0x80, 0x55, 0x38, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0x55, + 0x2f, 0xe4, 0xc8, 0xc5, 0x0d, 0x51, 0x15, 0x9f, 0x93, 0x59, 0x5c, 0x22, 0xc1, 0xa4, 0xc0, 0x8c, + 0x4b, 0xbb, 0x1b, 0x98, 0x07, 0xd5, 0xce, 0x05, 0x91, 0xf3, 0xc9, 0x2c, 0x2e, 0x11, 0x72, 0xe1, + 0xe2, 0x01, 0xf1, 0x32, 0xf3, 0xd2, 0x21, 0x66, 0x30, 0x83, 0xcd, 0x90, 0xc6, 0x65, 0x46, 0x66, + 0x5e, 0x3a, 0xd4, 0x10, 0x6e, 0xa8, 0x36, 0xb0, 0x29, 0x21, 0x5c, 0x42, 0x30, 0x53, 0x8a, 0x41, + 0x7e, 0x82, 0x98, 0xc5, 0x02, 0x36, 0x4b, 0x01, 0x8f, 0x59, 0xe0, 0x00, 0x80, 0x1a, 0x28, 0x90, + 0x86, 0x24, 0x06, 0x32, 0xd5, 0xc9, 0xed, 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, 0x74, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xbd, 0x23, 0xc3, + 0x5c, 0xfd, 0x52, 0x4b, 0xca, 0xf3, 0x8b, 0xb2, 0xf5, 0x93, 0x33, 0x12, 0x33, 0xf3, 0xf4, 0x2b, + 0x50, 0x83, 0x3f, 0x89, 0x0d, 0x1c, 0xf0, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x67, + 0x90, 0xcd, 0x09, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/params.pb.go b/x/funders/types/params.pb.go index adf8da11..e01d6521 100644 --- a/x/funders/types/params.pb.go +++ b/x/funders/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/params.proto +// source: kyve/funders/types/params.proto package types @@ -38,7 +38,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_906a9a55094dc984, []int{0} + return fileDescriptor_1e44dec664eeb78e, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -89,29 +89,28 @@ func (m *Params) GetMinFundingMultiple() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "kyve.funders.v1beta1.Params") + proto.RegisterType((*Params)(nil), "kyve.funders.types.Params") } -func init() { proto.RegisterFile("kyve/funders/v1beta1/params.proto", fileDescriptor_906a9a55094dc984) } +func init() { proto.RegisterFile("kyve/funders/types/params.proto", fileDescriptor_1e44dec664eeb78e) } -var fileDescriptor_906a9a55094dc984 = []byte{ - // 241 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, - 0x29, 0xd1, 0x83, 0x2a, 0xd1, 0x83, 0x2a, 0x51, 0x5a, 0xc5, 0xc8, 0xc5, 0x16, 0x00, 0x56, 0x26, - 0xa4, 0xc3, 0x25, 0x94, 0x9b, 0x99, 0x17, 0x0f, 0x52, 0x91, 0x99, 0x97, 0x1e, 0x9f, 0x98, 0x9b, - 0x5f, 0x9a, 0x57, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x12, 0x24, 0x90, 0x9b, 0x99, 0xe7, 0x06, - 0x91, 0x70, 0x04, 0x8b, 0x0b, 0x39, 0x70, 0xc9, 0x62, 0xaa, 0x8e, 0x2f, 0x48, 0x2d, 0x8a, 0x4f, - 0x2a, 0xcd, 0x4b, 0xc9, 0x49, 0x95, 0x60, 0x02, 0x6b, 0x94, 0x44, 0xd7, 0x18, 0x90, 0x5a, 0xe4, - 0x04, 0x56, 0x20, 0x64, 0xc0, 0x25, 0x82, 0x6c, 0x42, 0x6e, 0x69, 0x4e, 0x49, 0x66, 0x41, 0x4e, - 0xaa, 0x04, 0x33, 0x58, 0xa3, 0x10, 0x42, 0xa3, 0x2f, 0x54, 0xc6, 0xc9, 0xed, 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, 0x74, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, - 0xf3, 0x73, 0xf5, 0xbd, 0x23, 0xc3, 0x5c, 0xfd, 0x52, 0x4b, 0xca, 0xf3, 0x8b, 0xb2, 0xf5, 0x93, - 0x33, 0x12, 0x33, 0xf3, 0xf4, 0x2b, 0xe0, 0x21, 0x53, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, - 0x0e, 0x11, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x66, 0xb6, 0xfa, 0xe0, 0x36, 0x01, 0x00, - 0x00, +var fileDescriptor_1e44dec664eeb78e = []byte{ + // 234 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, + 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0x29, 0xd0, + 0x83, 0x2a, 0xd0, 0x03, 0x2b, 0x50, 0x5a, 0xc5, 0xc8, 0xc5, 0x16, 0x00, 0x56, 0x24, 0xa4, 0xc3, + 0x25, 0x94, 0x9b, 0x99, 0x17, 0x0f, 0x92, 0xcf, 0xcc, 0x4b, 0x8f, 0x4f, 0xcc, 0xcd, 0x2f, 0xcd, + 0x2b, 0x91, 0x60, 0x54, 0x60, 0xd4, 0x60, 0x09, 0x12, 0xc8, 0xcd, 0xcc, 0x73, 0x83, 0x48, 0x38, + 0x82, 0xc5, 0x85, 0x1c, 0xb8, 0x64, 0x31, 0x55, 0xc7, 0x17, 0xa4, 0x16, 0xc5, 0x27, 0x95, 0xe6, + 0xa5, 0xe4, 0xa4, 0x4a, 0x30, 0x81, 0x35, 0x4a, 0xa2, 0x6b, 0x0c, 0x48, 0x2d, 0x72, 0x02, 0x2b, + 0x10, 0x32, 0xe0, 0x12, 0x41, 0x36, 0x21, 0xb7, 0x34, 0xa7, 0x24, 0xb3, 0x20, 0x27, 0x55, 0x82, + 0x19, 0xac, 0x51, 0x08, 0xa1, 0xd1, 0x17, 0x2a, 0xe3, 0xe4, 0x76, 0xe2, 0x91, 0x1c, 0xe3, 0x85, + 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, + 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x3a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, + 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, 0xc9, 0x19, 0x89, + 0x99, 0x79, 0xfa, 0x15, 0xa8, 0xa1, 0x92, 0xc4, 0x06, 0x0e, 0x0f, 0x63, 0x40, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x6c, 0x13, 0x3f, 0x00, 0x32, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/query.pb.go b/x/funders/types/query.pb.go index 83ed0025..d5c878af 100644 --- a/x/funders/types/query.pb.go +++ b/x/funders/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/query.proto +// source: kyve/funders/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6f21e7f51590fda7, []int{0} + return fileDescriptor_9162a5167500874d, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6f21e7f51590fda7, []int{1} + return fileDescriptor_9162a5167500874d, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,33 +113,33 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.funders.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.funders.v1beta1.QueryParamsResponse") -} - -func init() { proto.RegisterFile("kyve/funders/v1beta1/query.proto", fileDescriptor_6f21e7f51590fda7) } - -var fileDescriptor_6f21e7f51590fda7 = []byte{ - // 289 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, 0xa9, - 0xd0, 0x83, 0xaa, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd0, 0x07, - 0xb1, 0x20, 0x6a, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, 0xf5, - 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, 0x8a, 0x58, 0xed, - 0x2a, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x2a, 0x51, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xd9, 0x1d, 0x00, - 0x16, 0x0c, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0x0a, 0xe4, 0x12, 0x46, 0x11, 0x2d, 0x2e, - 0xc8, 0xcf, 0x2b, 0x4e, 0x15, 0xb2, 0xe2, 0x62, 0x83, 0x68, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, - 0x36, 0x92, 0xd1, 0xc3, 0xe6, 0x54, 0x3d, 0x88, 0x2e, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, - 0xa0, 0x3a, 0x8c, 0x7a, 0x19, 0xb9, 0x58, 0xc1, 0x66, 0x0a, 0x35, 0x33, 0x72, 0xb1, 0x41, 0x94, - 0x08, 0x69, 0x60, 0x37, 0x00, 0xd3, 0x45, 0x52, 0x9a, 0x44, 0xa8, 0x84, 0xb8, 0x52, 0x49, 0xa5, - 0xe9, 0xf2, 0x93, 0xc9, 0x4c, 0x72, 0x42, 0x32, 0xfa, 0x78, 0xbc, 0xef, 0xe4, 0x76, 0xe2, 0x91, - 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, - 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x3a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, - 0xc9, 0xf9, 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, - 0xc9, 0x19, 0x89, 0x99, 0x79, 0xfa, 0x15, 0x70, 0x03, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0xe1, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x17, 0x4e, 0xe8, 0x7b, 0xd8, 0x01, 0x00, - 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.funders.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.funders.types.QueryParamsResponse") +} + +func init() { proto.RegisterFile("kyve/funders/types/query.proto", fileDescriptor_9162a5167500874d) } + +var fileDescriptor_9162a5167500874d = []byte{ + // 290 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0x2a, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, + 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0xc9, 0xeb, 0x41, + 0xe5, 0xf5, 0xc0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x69, 0x7d, 0x10, 0x0b, 0xa2, + 0x52, 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, + 0x2f, 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x2a, 0x2b, 0x8f, 0xc5, 0x9e, 0x82, 0xc4, + 0xa2, 0xc4, 0x5c, 0xa8, 0x02, 0x25, 0x11, 0x2e, 0xa1, 0x40, 0x90, 0xbd, 0x01, 0x60, 0xc1, 0xa0, + 0xd4, 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x25, 0x7f, 0x2e, 0x61, 0x14, 0xd1, 0xe2, 0x82, 0xfc, 0xbc, + 0xe2, 0x54, 0x21, 0x0b, 0x2e, 0x36, 0x88, 0x66, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x29, + 0x3d, 0x4c, 0x67, 0xea, 0x41, 0xf4, 0x38, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0x55, 0x6f, + 0xd4, 0xc1, 0xc8, 0xc5, 0x0a, 0x36, 0x51, 0xa8, 0x9e, 0x8b, 0x0d, 0xa2, 0x42, 0x48, 0x0d, 0x9b, + 0x6e, 0x4c, 0xc7, 0x48, 0xa9, 0x13, 0x54, 0x07, 0x71, 0x9e, 0x92, 0x4a, 0xd3, 0xe5, 0x27, 0x93, + 0x99, 0xe4, 0x84, 0x64, 0xf4, 0x51, 0x7c, 0x5d, 0x66, 0x98, 0x94, 0x5a, 0x92, 0x68, 0x08, 0xf5, + 0xb7, 0x93, 0xdb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, + 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa4, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x7b, 0x47, 0x86, 0xb9, 0xfa, 0xa5, 0x96, + 0x94, 0xe7, 0x17, 0x65, 0xeb, 0x27, 0x67, 0x24, 0x66, 0xe6, 0xe9, 0x57, 0xa0, 0x06, 0x63, 0x12, + 0x1b, 0x38, 0x00, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa5, 0xed, 0x5d, 0x45, 0xcb, 0x01, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -168,7 +168,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -203,7 +203,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Query/Params", + FullMethod: "/kyve.funders.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -212,7 +212,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.funders.v1beta1.Query", + ServiceName: "kyve.funders.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,7 +221,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/funders/v1beta1/query.proto", + Metadata: "kyve/funders/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/funders/types/query.pb.gw.go b/x/funders/types/query.pb.gw.go index ac6feae2..133a003f 100644 --- a/x/funders/types/query.pb.gw.go +++ b/x/funders/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/funders/v1beta1/query.proto +// source: kyve/funders/types/query.proto /* Package types is a reverse proxy. diff --git a/x/funders/types/tx.pb.go b/x/funders/types/tx.pb.go index 1c38a028..a1f67f0f 100644 --- a/x/funders/types/tx.pb.go +++ b/x/funders/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/funders/v1beta1/tx.proto +// source: kyve/funders/types/tx.proto package types @@ -49,7 +49,7 @@ func (m *MsgCreateFunder) Reset() { *m = MsgCreateFunder{} } func (m *MsgCreateFunder) String() string { return proto.CompactTextString(m) } func (*MsgCreateFunder) ProtoMessage() {} func (*MsgCreateFunder) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{0} + return fileDescriptor_61996e1bb6168e9d, []int{0} } func (m *MsgCreateFunder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,7 +128,7 @@ func (m *MsgCreateFunderResponse) Reset() { *m = MsgCreateFunderResponse func (m *MsgCreateFunderResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateFunderResponse) ProtoMessage() {} func (*MsgCreateFunderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{1} + return fileDescriptor_61996e1bb6168e9d, []int{1} } func (m *MsgCreateFunderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -177,7 +177,7 @@ func (m *MsgUpdateFunder) Reset() { *m = MsgUpdateFunder{} } func (m *MsgUpdateFunder) String() string { return proto.CompactTextString(m) } func (*MsgUpdateFunder) ProtoMessage() {} func (*MsgUpdateFunder) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{2} + return fileDescriptor_61996e1bb6168e9d, []int{2} } func (m *MsgUpdateFunder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ func (m *MsgUpdateFunderResponse) Reset() { *m = MsgUpdateFunderResponse func (m *MsgUpdateFunderResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateFunderResponse) ProtoMessage() {} func (*MsgUpdateFunderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{3} + return fileDescriptor_61996e1bb6168e9d, []int{3} } func (m *MsgUpdateFunderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -301,7 +301,7 @@ func (m *MsgFundPool) Reset() { *m = MsgFundPool{} } func (m *MsgFundPool) String() string { return proto.CompactTextString(m) } func (*MsgFundPool) ProtoMessage() {} func (*MsgFundPool) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{4} + return fileDescriptor_61996e1bb6168e9d, []int{4} } func (m *MsgFundPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -366,7 +366,7 @@ func (m *MsgFundPoolResponse) Reset() { *m = MsgFundPoolResponse{} } func (m *MsgFundPoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgFundPoolResponse) ProtoMessage() {} func (*MsgFundPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{5} + return fileDescriptor_61996e1bb6168e9d, []int{5} } func (m *MsgFundPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -409,7 +409,7 @@ func (m *MsgDefundPool) Reset() { *m = MsgDefundPool{} } func (m *MsgDefundPool) String() string { return proto.CompactTextString(m) } func (*MsgDefundPool) ProtoMessage() {} func (*MsgDefundPool) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{6} + return fileDescriptor_61996e1bb6168e9d, []int{6} } func (m *MsgDefundPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -467,7 +467,7 @@ func (m *MsgDefundPoolResponse) Reset() { *m = MsgDefundPoolResponse{} } func (m *MsgDefundPoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgDefundPoolResponse) ProtoMessage() {} func (*MsgDefundPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{7} + return fileDescriptor_61996e1bb6168e9d, []int{7} } func (m *MsgDefundPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -508,7 +508,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{8} + return fileDescriptor_61996e1bb6168e9d, []int{8} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -559,7 +559,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5145d80c2db97f3d, []int{9} + return fileDescriptor_61996e1bb6168e9d, []int{9} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -589,59 +589,59 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateFunder)(nil), "kyve.funders.v1beta1.MsgCreateFunder") - proto.RegisterType((*MsgCreateFunderResponse)(nil), "kyve.funders.v1beta1.MsgCreateFunderResponse") - proto.RegisterType((*MsgUpdateFunder)(nil), "kyve.funders.v1beta1.MsgUpdateFunder") - proto.RegisterType((*MsgUpdateFunderResponse)(nil), "kyve.funders.v1beta1.MsgUpdateFunderResponse") - proto.RegisterType((*MsgFundPool)(nil), "kyve.funders.v1beta1.MsgFundPool") - proto.RegisterType((*MsgFundPoolResponse)(nil), "kyve.funders.v1beta1.MsgFundPoolResponse") - proto.RegisterType((*MsgDefundPool)(nil), "kyve.funders.v1beta1.MsgDefundPool") - proto.RegisterType((*MsgDefundPoolResponse)(nil), "kyve.funders.v1beta1.MsgDefundPoolResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.funders.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.funders.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/funders/v1beta1/tx.proto", fileDescriptor_5145d80c2db97f3d) } - -var fileDescriptor_5145d80c2db97f3d = []byte{ - // 588 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x55, 0x41, 0x6f, 0xd3, 0x30, - 0x18, 0x5d, 0x68, 0xd7, 0x6d, 0xde, 0x60, 0x22, 0x6c, 0x34, 0x8b, 0x44, 0x34, 0x86, 0x90, 0xa0, - 0xb0, 0x44, 0x05, 0x89, 0xc3, 0x6e, 0x14, 0x98, 0x84, 0x50, 0x51, 0x15, 0x04, 0x02, 0x0e, 0x54, - 0x69, 0xec, 0xa5, 0x51, 0x1b, 0x3b, 0xb2, 0xdd, 0x6e, 0xbd, 0x21, 0x7e, 0x01, 0xe2, 0x97, 0xec, - 0xc0, 0x5f, 0x40, 0xe2, 0x38, 0x71, 0xe2, 0x88, 0xda, 0xc3, 0xfe, 0x02, 0x47, 0x64, 0x3b, 0x49, - 0xd3, 0xb2, 0xae, 0x3b, 0x70, 0xe2, 0xd4, 0x3e, 0xbf, 0x67, 0x7f, 0xef, 0xd9, 0xdf, 0xd7, 0x82, - 0x1b, 0x9d, 0x41, 0x1f, 0x39, 0x07, 0x3d, 0x0c, 0x11, 0x65, 0x4e, 0xbf, 0xda, 0x42, 0xdc, 0xab, - 0x3a, 0xfc, 0xc8, 0x8e, 0x29, 0xe1, 0x44, 0xdf, 0x10, 0xb4, 0x9d, 0xd0, 0x76, 0x42, 0x9b, 0x65, - 0x9f, 0xb0, 0x88, 0x30, 0x27, 0x62, 0x81, 0xd3, 0xaf, 0x8a, 0x0f, 0x25, 0x37, 0xb7, 0x14, 0xd1, - 0x94, 0xc8, 0x51, 0x40, 0x51, 0x3b, 0xdf, 0x34, 0xb0, 0x5e, 0x67, 0xc1, 0x13, 0x8a, 0x3c, 0x8e, - 0xf6, 0xe5, 0x81, 0xba, 0x01, 0x96, 0x7c, 0x81, 0x09, 0x35, 0xb4, 0x6d, 0xed, 0xce, 0x8a, 0x9b, - 0x42, 0xc1, 0x44, 0x04, 0x87, 0x1d, 0x44, 0x8d, 0x4b, 0x8a, 0x49, 0xa0, 0x6e, 0x82, 0xe5, 0x10, - 0x22, 0xcc, 0x43, 0x3e, 0x30, 0x0a, 0x92, 0xca, 0xb0, 0xd8, 0x75, 0x88, 0x5a, 0x2c, 0xe4, 0xc8, - 0x28, 0xaa, 0x5d, 0x09, 0x94, 0x95, 0x08, 0xe6, 0x9e, 0xcf, 0x8d, 0xc5, 0xa4, 0x92, 0x82, 0xfa, - 0x36, 0x58, 0x85, 0x88, 0xf9, 0x34, 0x8c, 0x79, 0x48, 0xb0, 0x51, 0x92, 0x6c, 0x7e, 0x69, 0x6f, - 0xed, 0xd3, 0xe9, 0x71, 0x25, 0x75, 0xb6, 0xb3, 0x05, 0xca, 0x53, 0x31, 0x5c, 0xc4, 0x62, 0x82, - 0x19, 0x4a, 0x23, 0xbe, 0x8e, 0xe1, 0xff, 0x10, 0x31, 0x1f, 0x23, 0x8b, 0xf8, 0x45, 0x03, 0xab, - 0x75, 0x16, 0x88, 0xd5, 0x06, 0x21, 0xdd, 0x73, 0xe2, 0x95, 0xc1, 0x52, 0x4c, 0x48, 0xb7, 0x19, - 0x42, 0x19, 0xaf, 0xe8, 0x96, 0x04, 0x7c, 0x0e, 0xf5, 0xeb, 0xa0, 0xe4, 0x45, 0xa4, 0x87, 0xb9, - 0xcc, 0x56, 0x74, 0x13, 0xa4, 0x57, 0xc0, 0x55, 0xf5, 0xad, 0x19, 0x23, 0xda, 0x6c, 0xf5, 0x30, - 0xec, 0xaa, 0x8c, 0x45, 0x77, 0x5d, 0x11, 0x0d, 0x44, 0x6b, 0x72, 0x79, 0xca, 0xef, 0x26, 0xb8, - 0x96, 0xf3, 0x94, 0x79, 0x6d, 0x83, 0xcb, 0x75, 0x16, 0x3c, 0x45, 0x07, 0xff, 0xde, 0xec, 0x94, - 0x81, 0x32, 0xd8, 0x9c, 0xa8, 0x94, 0x59, 0x60, 0xb9, 0x86, 0x68, 0x78, 0xd4, 0x8b, 0x98, 0xfe, - 0x08, 0xac, 0x78, 0x3d, 0xde, 0x26, 0x54, 0xbc, 0xae, 0xb4, 0x51, 0x33, 0x7e, 0x7c, 0xdd, 0xdd, - 0x48, 0x86, 0xe5, 0x31, 0x84, 0x14, 0x31, 0xf6, 0x8a, 0xd3, 0x10, 0x07, 0xee, 0x58, 0x2a, 0xcc, - 0xc7, 0xde, 0xa0, 0x4b, 0x3c, 0x98, 0xb6, 0x4b, 0x02, 0xf7, 0xae, 0x08, 0x2f, 0x63, 0xe5, 0xc4, - 0xf3, 0xa9, 0xa2, 0xa9, 0x9f, 0x07, 0xbf, 0x0b, 0xa0, 0x50, 0x67, 0x81, 0x0e, 0xc1, 0xda, 0xc4, - 0x20, 0xde, 0xb6, 0xcf, 0x9a, 0x73, 0x7b, 0xaa, 0xd1, 0xcd, 0xdd, 0x0b, 0xc9, 0xd2, 0x6a, 0xa2, - 0xca, 0xc4, 0x2c, 0xcc, 0xae, 0x92, 0x97, 0x9d, 0x53, 0xe5, 0xac, 0x96, 0xd4, 0xdf, 0x82, 0xe5, - 0xac, 0x1d, 0x6f, 0xce, 0xdc, 0x9a, 0x4a, 0xcc, 0xbb, 0x73, 0x25, 0xd9, 0xc9, 0x1f, 0x00, 0xc8, - 0x75, 0xcf, 0xad, 0x99, 0x1b, 0xc7, 0x22, 0xf3, 0xde, 0x05, 0x44, 0x7f, 0xdf, 0x4f, 0xd2, 0x1a, - 0xf3, 0xee, 0x47, 0xc9, 0xe6, 0xde, 0xcf, 0xe4, 0x9b, 0x9b, 0x8b, 0x1f, 0x4f, 0x8f, 0x2b, 0x5a, - 0x6d, 0xff, 0xfb, 0xd0, 0xd2, 0x4e, 0x86, 0x96, 0xf6, 0x6b, 0x68, 0x69, 0x9f, 0x47, 0xd6, 0xc2, - 0xc9, 0xc8, 0x5a, 0xf8, 0x39, 0xb2, 0x16, 0xde, 0xdf, 0x0f, 0x42, 0xde, 0xee, 0xb5, 0x6c, 0x9f, - 0x44, 0xce, 0x8b, 0x77, 0x6f, 0x9e, 0xbd, 0x44, 0xfc, 0x90, 0xd0, 0x8e, 0xe3, 0xb7, 0xbd, 0x10, - 0x3b, 0x47, 0xd9, 0x9f, 0x03, 0x1f, 0xc4, 0x88, 0xb5, 0x4a, 0xf2, 0xe7, 0xfc, 0xe1, 0x9f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xde, 0xdc, 0x70, 0xa2, 0x39, 0x06, 0x00, 0x00, + proto.RegisterType((*MsgCreateFunder)(nil), "kyve.funders.types.MsgCreateFunder") + proto.RegisterType((*MsgCreateFunderResponse)(nil), "kyve.funders.types.MsgCreateFunderResponse") + proto.RegisterType((*MsgUpdateFunder)(nil), "kyve.funders.types.MsgUpdateFunder") + proto.RegisterType((*MsgUpdateFunderResponse)(nil), "kyve.funders.types.MsgUpdateFunderResponse") + proto.RegisterType((*MsgFundPool)(nil), "kyve.funders.types.MsgFundPool") + proto.RegisterType((*MsgFundPoolResponse)(nil), "kyve.funders.types.MsgFundPoolResponse") + proto.RegisterType((*MsgDefundPool)(nil), "kyve.funders.types.MsgDefundPool") + proto.RegisterType((*MsgDefundPoolResponse)(nil), "kyve.funders.types.MsgDefundPoolResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.funders.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.funders.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/funders/types/tx.proto", fileDescriptor_61996e1bb6168e9d) } + +var fileDescriptor_61996e1bb6168e9d = []byte{ + // 580 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x55, 0x4f, 0x6f, 0xd3, 0x30, + 0x1c, 0x6d, 0x68, 0xd7, 0x6d, 0xde, 0x60, 0x22, 0x30, 0x9a, 0x05, 0x29, 0x8c, 0x71, 0x00, 0x0a, + 0x24, 0x02, 0x24, 0x0e, 0xbb, 0x51, 0x60, 0x12, 0x42, 0x45, 0x55, 0xf8, 0x23, 0xb1, 0x4b, 0x49, + 0x13, 0x2f, 0xb5, 0xda, 0xd8, 0x91, 0xed, 0x6e, 0xeb, 0x0d, 0xf1, 0x09, 0x10, 0x9f, 0x64, 0x07, + 0xbe, 0x02, 0x12, 0xc7, 0x89, 0x13, 0x47, 0xd4, 0x22, 0xed, 0x6b, 0x20, 0xdb, 0x49, 0x9a, 0x74, + 0x74, 0xe5, 0xc0, 0x89, 0x53, 0xfb, 0xfc, 0x9e, 0xfd, 0x7b, 0xcf, 0xfe, 0xfd, 0x5a, 0x70, 0xb5, + 0x37, 0xdc, 0x87, 0xce, 0xde, 0x00, 0x07, 0x90, 0x32, 0x87, 0x0f, 0x63, 0xc8, 0x1c, 0x7e, 0x68, + 0xc7, 0x94, 0x70, 0xa2, 0xeb, 0x82, 0xb4, 0x13, 0xd2, 0x96, 0xa4, 0x59, 0xf3, 0x09, 0x8b, 0x08, + 0x73, 0x22, 0x16, 0x3a, 0xfb, 0xf7, 0xc5, 0x87, 0x12, 0x9b, 0x1b, 0x8a, 0x68, 0x4b, 0xe4, 0x28, + 0xa0, 0xa8, 0xad, 0xaf, 0x1a, 0x58, 0x6b, 0xb2, 0xf0, 0x09, 0x85, 0x1e, 0x87, 0x3b, 0xf2, 0x38, + 0xdd, 0x00, 0x8b, 0xbe, 0xc0, 0x84, 0x1a, 0xda, 0xa6, 0x76, 0x6b, 0xd9, 0x4d, 0xa1, 0x60, 0x22, + 0x82, 0x51, 0x0f, 0x52, 0xe3, 0x9c, 0x62, 0x12, 0xa8, 0x9b, 0x60, 0x09, 0x05, 0x10, 0x73, 0xc4, + 0x87, 0x46, 0x59, 0x52, 0x19, 0x16, 0xbb, 0x0e, 0x60, 0x87, 0x21, 0x0e, 0x8d, 0x8a, 0xda, 0x95, + 0x40, 0x59, 0x89, 0x60, 0xee, 0xf9, 0xdc, 0x58, 0x48, 0x2a, 0x29, 0xa8, 0x6f, 0x82, 0x95, 0x00, + 0x32, 0x9f, 0xa2, 0x98, 0x23, 0x82, 0x8d, 0xaa, 0x64, 0xf3, 0x4b, 0xdb, 0xab, 0x1f, 0x4f, 0x8e, + 0xea, 0xa9, 0xb3, 0xad, 0x0d, 0x50, 0x9b, 0x8a, 0xe1, 0x42, 0x16, 0x13, 0xcc, 0x60, 0x1a, 0xf1, + 0x4d, 0x1c, 0xfc, 0x0f, 0x11, 0xf3, 0x31, 0xb2, 0x88, 0x9f, 0x35, 0xb0, 0xd2, 0x64, 0xa1, 0x58, + 0x6d, 0x11, 0xd2, 0x3f, 0x23, 0x5e, 0x0d, 0x2c, 0xc6, 0x84, 0xf4, 0xdb, 0x28, 0x90, 0xf1, 0x2a, + 0x6e, 0x55, 0xc0, 0xe7, 0x81, 0x7e, 0x05, 0x54, 0xbd, 0x88, 0x0c, 0x30, 0x97, 0xd9, 0x2a, 0x6e, + 0x82, 0xf4, 0x3a, 0xb8, 0xa8, 0xbe, 0xb5, 0x63, 0x48, 0xdb, 0x9d, 0x01, 0x0e, 0xfa, 0x2a, 0x63, + 0xc5, 0x5d, 0x53, 0x44, 0x0b, 0xd2, 0x86, 0x5c, 0x9e, 0xf2, 0xbb, 0x0e, 0x2e, 0xe5, 0x3c, 0x65, + 0x5e, 0xbb, 0xe0, 0x7c, 0x93, 0x85, 0x4f, 0xe1, 0xde, 0xbf, 0x37, 0x3b, 0x65, 0xa0, 0x06, 0xd6, + 0x0b, 0x95, 0x32, 0x0b, 0x2c, 0xd7, 0x10, 0x2d, 0x8f, 0x7a, 0x11, 0xd3, 0x1f, 0x81, 0x65, 0x6f, + 0xc0, 0xbb, 0x84, 0x8a, 0xd7, 0x95, 0x36, 0x1a, 0xc6, 0xf7, 0x2f, 0xf7, 0x2e, 0x27, 0xc3, 0xf2, + 0x38, 0x08, 0x28, 0x64, 0xec, 0x15, 0xa7, 0x08, 0x87, 0xee, 0x44, 0x2a, 0xcc, 0xc7, 0xde, 0xb0, + 0x4f, 0xbc, 0x20, 0x6d, 0x97, 0x04, 0x6e, 0x5f, 0x10, 0x5e, 0x26, 0xca, 0xc2, 0xf3, 0xa9, 0xa2, + 0xa9, 0x9f, 0x07, 0xbf, 0xca, 0xa0, 0xdc, 0x64, 0xa1, 0xfe, 0x1e, 0xac, 0x16, 0x06, 0xf1, 0x86, + 0x7d, 0x7a, 0xca, 0xed, 0xa9, 0x36, 0x37, 0xef, 0xfc, 0x85, 0x28, 0xad, 0x24, 0x2a, 0x14, 0xe6, + 0x60, 0x56, 0x85, 0xbc, 0x68, 0x66, 0x85, 0x3f, 0xb5, 0xa2, 0xfe, 0x1a, 0x2c, 0x65, 0x6d, 0x78, + 0x6d, 0xc6, 0xc6, 0x54, 0x60, 0xde, 0x9c, 0x23, 0xc8, 0x4e, 0xdd, 0x05, 0x20, 0xd7, 0x31, 0xd7, + 0x67, 0x6c, 0x9b, 0x48, 0xcc, 0xdb, 0x73, 0x25, 0xa7, 0xef, 0x24, 0x69, 0x85, 0xb3, 0xef, 0x44, + 0x89, 0xe6, 0xdc, 0x49, 0xf1, 0x7d, 0xcd, 0x85, 0x0f, 0x27, 0x47, 0x75, 0xad, 0xb1, 0xf3, 0x6d, + 0x64, 0x69, 0xc7, 0x23, 0x4b, 0xfb, 0x39, 0xb2, 0xb4, 0x4f, 0x63, 0xab, 0x74, 0x3c, 0xb6, 0x4a, + 0x3f, 0xc6, 0x56, 0x69, 0xf7, 0x6e, 0x88, 0x78, 0x77, 0xd0, 0xb1, 0x7d, 0x12, 0x39, 0x2f, 0xde, + 0xbd, 0x7d, 0xf6, 0x12, 0xf2, 0x03, 0x42, 0x7b, 0x8e, 0xdf, 0xf5, 0x10, 0x76, 0x0e, 0x8b, 0x7f, + 0x02, 0x9d, 0xaa, 0xfc, 0xe9, 0x7e, 0xf8, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x96, 0xd6, 0xd2, 0xd8, + 0x21, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -679,7 +679,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateFunder(ctx context.Context, in *MsgCreateFunder, opts ...grpc.CallOption) (*MsgCreateFunderResponse, error) { out := new(MsgCreateFunderResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Msg/CreateFunder", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Msg/CreateFunder", in, out, opts...) if err != nil { return nil, err } @@ -688,7 +688,7 @@ func (c *msgClient) CreateFunder(ctx context.Context, in *MsgCreateFunder, opts func (c *msgClient) UpdateFunder(ctx context.Context, in *MsgUpdateFunder, opts ...grpc.CallOption) (*MsgUpdateFunderResponse, error) { out := new(MsgUpdateFunderResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Msg/UpdateFunder", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Msg/UpdateFunder", in, out, opts...) if err != nil { return nil, err } @@ -697,7 +697,7 @@ func (c *msgClient) UpdateFunder(ctx context.Context, in *MsgUpdateFunder, opts func (c *msgClient) FundPool(ctx context.Context, in *MsgFundPool, opts ...grpc.CallOption) (*MsgFundPoolResponse, error) { out := new(MsgFundPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Msg/FundPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Msg/FundPool", in, out, opts...) if err != nil { return nil, err } @@ -706,7 +706,7 @@ func (c *msgClient) FundPool(ctx context.Context, in *MsgFundPool, opts ...grpc. func (c *msgClient) DefundPool(ctx context.Context, in *MsgDefundPool, opts ...grpc.CallOption) (*MsgDefundPoolResponse, error) { out := new(MsgDefundPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Msg/DefundPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Msg/DefundPool", in, out, opts...) if err != nil { return nil, err } @@ -715,7 +715,7 @@ func (c *msgClient) DefundPool(ctx context.Context, in *MsgDefundPool, opts ...g func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.funders.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.funders.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -771,7 +771,7 @@ func _Msg_CreateFunder_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Msg/CreateFunder", + FullMethod: "/kyve.funders.types.Msg/CreateFunder", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateFunder(ctx, req.(*MsgCreateFunder)) @@ -789,7 +789,7 @@ func _Msg_UpdateFunder_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Msg/UpdateFunder", + FullMethod: "/kyve.funders.types.Msg/UpdateFunder", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateFunder(ctx, req.(*MsgUpdateFunder)) @@ -807,7 +807,7 @@ func _Msg_FundPool_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Msg/FundPool", + FullMethod: "/kyve.funders.types.Msg/FundPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).FundPool(ctx, req.(*MsgFundPool)) @@ -825,7 +825,7 @@ func _Msg_DefundPool_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Msg/DefundPool", + FullMethod: "/kyve.funders.types.Msg/DefundPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).DefundPool(ctx, req.(*MsgDefundPool)) @@ -843,7 +843,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.funders.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.funders.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -852,7 +852,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.funders.v1beta1.Msg", + ServiceName: "kyve.funders.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -877,7 +877,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/funders/v1beta1/tx.proto", + Metadata: "kyve/funders/types/tx.proto", } func (m *MsgCreateFunder) Marshal() (dAtA []byte, err error) { diff --git a/x/global/types/events.pb.go b/x/global/types/events.pb.go index d2fe1d4a..705dd238 100644 --- a/x/global/types/events.pb.go +++ b/x/global/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/global/v1beta1/events.proto +// source: kyve/global/types/events.proto package types @@ -38,7 +38,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_e23fcddbe36854a4, []int{0} + return fileDescriptor_9ec4e37ada7c3d8e, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -89,29 +89,29 @@ func (m *EventUpdateParams) GetPayload() string { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.global.v1beta1.EventUpdateParams") + proto.RegisterType((*EventUpdateParams)(nil), "kyve.global.types.EventUpdateParams") } -func init() { proto.RegisterFile("kyve/global/v1beta1/events.proto", fileDescriptor_e23fcddbe36854a4) } +func init() { proto.RegisterFile("kyve/global/types/events.proto", fileDescriptor_9ec4e37ada7c3d8e) } -var fileDescriptor_e23fcddbe36854a4 = []byte{ - // 252 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, - 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x06, 0xa9, - 0xd0, 0x83, 0xa8, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xeb, 0x83, - 0x58, 0x10, 0xa5, 0x52, 0x58, 0x0d, 0x83, 0xea, 0x04, 0xab, 0x50, 0xda, 0xc8, 0xc8, 0x25, 0xe8, - 0x0a, 0x32, 0x3d, 0xb4, 0x20, 0x25, 0xb1, 0x24, 0x35, 0x20, 0xb1, 0x28, 0x31, 0xb7, 0x58, 0xc8, - 0x81, 0x8b, 0x2b, 0x3f, 0x27, 0x25, 0xbe, 0x00, 0xcc, 0x93, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, - 0x92, 0xd6, 0xc3, 0x62, 0xaf, 0x1e, 0x44, 0x83, 0x13, 0xcb, 0x89, 0x7b, 0xf2, 0x0c, 0x41, 0x9c, - 0xf9, 0x39, 0x29, 0x08, 0x13, 0xf2, 0x52, 0xcb, 0x61, 0x26, 0x30, 0x11, 0x6d, 0x42, 0x5e, 0x6a, - 0x39, 0xd4, 0x04, 0x09, 0x2e, 0xf6, 0x82, 0xc4, 0xca, 0x9c, 0xfc, 0xc4, 0x14, 0x09, 0x66, 0x05, - 0x46, 0x0d, 0xce, 0x20, 0x18, 0xd7, 0xc9, 0xf5, 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, 0xb4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xbd, 0x23, - 0xc3, 0x5c, 0xfd, 0x52, 0x4b, 0xca, 0xf3, 0x8b, 0xb2, 0xf5, 0x93, 0x33, 0x12, 0x33, 0xf3, 0xf4, - 0x2b, 0x60, 0x21, 0x51, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x01, 0x63, 0x40, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xe5, 0x68, 0x7b, 0x75, 0x72, 0x01, 0x00, 0x00, +var fileDescriptor_9ec4e37ada7c3d8e = []byte{ + // 243 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x4f, 0x2d, + 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0xc9, 0xeb, 0x41, + 0xe4, 0xf5, 0xc0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x59, 0x7d, 0x10, 0x0b, 0xa2, + 0x50, 0x0a, 0x8b, 0x41, 0x50, 0x5d, 0x60, 0x79, 0xa5, 0xb5, 0x8c, 0x5c, 0x82, 0xae, 0x20, 0x93, + 0x43, 0x0b, 0x52, 0x12, 0x4b, 0x52, 0x03, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0x85, 0xec, 0xb8, 0xb8, + 0xf2, 0x73, 0x52, 0xe2, 0x0b, 0xc0, 0x3c, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x49, 0x3d, + 0x0c, 0x3b, 0xf5, 0x20, 0xca, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0xe2, 0xcc, 0xcf, 0x49, + 0x41, 0xe8, 0xcf, 0x4b, 0x2d, 0x87, 0xe9, 0x67, 0x22, 0x52, 0x7f, 0x5e, 0x6a, 0x39, 0x54, 0xbf, + 0x04, 0x17, 0x7b, 0x41, 0x62, 0x65, 0x4e, 0x7e, 0x62, 0x8a, 0x04, 0xb3, 0x02, 0xa3, 0x06, 0x67, + 0x10, 0x8c, 0xeb, 0xe4, 0x7a, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, + 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xda, + 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, + 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, 0xc9, 0x19, 0x89, 0x99, 0x79, 0xfa, 0x15, 0x28, 0x61, + 0x90, 0xc4, 0x06, 0xf6, 0xbd, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xe9, 0xd5, 0x5b, 0x06, 0x68, + 0x01, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/global/types/genesis.pb.go b/x/global/types/genesis.pb.go index c18eaff3..ae5e64f7 100644 --- a/x/global/types/genesis.pb.go +++ b/x/global/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/global/v1beta1/genesis.proto +// source: kyve/global/types/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_c35b7ff881baba68, []int{0} + return fileDescriptor_0b71a93b826adad0, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -70,27 +70,26 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.global.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.global.types.GenesisState") } -func init() { proto.RegisterFile("kyve/global/v1beta1/genesis.proto", fileDescriptor_c35b7ff881baba68) } +func init() { proto.RegisterFile("kyve/global/types/genesis.proto", fileDescriptor_0b71a93b826adad0) } -var fileDescriptor_c35b7ff881baba68 = []byte{ - // 209 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, - 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x06, - 0x29, 0xd1, 0x83, 0x28, 0xd1, 0x83, 0x2a, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xeb, - 0x83, 0x58, 0x10, 0xa5, 0x52, 0x0a, 0x58, 0x4d, 0x83, 0xe8, 0x04, 0xab, 0x50, 0xf2, 0xe4, 0xe2, - 0x71, 0x87, 0x98, 0x1e, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc9, 0xc5, 0x56, 0x90, 0x58, 0x94, - 0x98, 0x5b, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xad, 0x87, 0xc5, 0x36, 0xbd, 0x00, - 0xb0, 0x12, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x1a, 0x9c, 0x5c, 0x4f, 0x3c, 0x92, - 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, - 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x3b, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, - 0x39, 0x3f, 0x57, 0xdf, 0x3b, 0x32, 0xcc, 0xd5, 0x2f, 0xb5, 0xa4, 0x3c, 0xbf, 0x28, 0x5b, 0x3f, - 0x39, 0x23, 0x31, 0x33, 0x4f, 0xbf, 0x02, 0xe6, 0xc0, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, - 0xb0, 0xc3, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x72, 0xf3, 0x92, 0x32, 0x0a, 0x01, 0x00, - 0x00, +var fileDescriptor_0b71a93b826adad0 = []byte{ + // 202 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x4f, 0x4f, + 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0x29, 0xd0, + 0x83, 0x28, 0xd0, 0x03, 0x2b, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xea, 0x83, 0x58, + 0x10, 0x85, 0x52, 0x72, 0x58, 0x4c, 0x82, 0xe8, 0x02, 0xcb, 0x2b, 0xb9, 0x73, 0xf1, 0xb8, 0x43, + 0x4c, 0x0e, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x32, 0xe7, 0x62, 0x2b, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, + 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd4, 0xc3, 0xb0, 0x49, 0x2f, 0x00, 0xac, 0xc0, + 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x72, 0x27, 0xd7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, + 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, + 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, + 0xd5, 0xf7, 0x8e, 0x0c, 0x73, 0xf5, 0x4b, 0x2d, 0x29, 0xcf, 0x2f, 0xca, 0xd6, 0x4f, 0xce, 0x48, + 0xcc, 0xcc, 0xd3, 0xaf, 0x40, 0x71, 0x5c, 0x12, 0x1b, 0xd8, 0x59, 0xc6, 0x80, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x2d, 0x11, 0x13, 0xaf, 0x02, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/global/types/global.pb.go b/x/global/types/global.pb.go index a04ee31c..b2bd01d0 100644 --- a/x/global/types/global.pb.go +++ b/x/global/types/global.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/global/v1beta1/global.proto +// source: kyve/global/types/global.proto package types @@ -49,7 +49,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_d1b5d4c0bbdf8bfb, []int{0} + return fileDescriptor_bdfbd61db80b66f8, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -105,7 +105,7 @@ func (m *GasAdjustment) Reset() { *m = GasAdjustment{} } func (m *GasAdjustment) String() string { return proto.CompactTextString(m) } func (*GasAdjustment) ProtoMessage() {} func (*GasAdjustment) Descriptor() ([]byte, []int) { - return fileDescriptor_d1b5d4c0bbdf8bfb, []int{1} + return fileDescriptor_bdfbd61db80b66f8, []int{1} } func (m *GasAdjustment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -162,7 +162,7 @@ func (m *GasRefund) Reset() { *m = GasRefund{} } func (m *GasRefund) String() string { return proto.CompactTextString(m) } func (*GasRefund) ProtoMessage() {} func (*GasRefund) Descriptor() ([]byte, []int) { - return fileDescriptor_d1b5d4c0bbdf8bfb, []int{2} + return fileDescriptor_bdfbd61db80b66f8, []int{2} } func (m *GasRefund) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -199,42 +199,41 @@ func (m *GasRefund) GetType() string { } func init() { - proto.RegisterType((*Params)(nil), "kyve.global.v1beta1.Params") - proto.RegisterType((*GasAdjustment)(nil), "kyve.global.v1beta1.GasAdjustment") - proto.RegisterType((*GasRefund)(nil), "kyve.global.v1beta1.GasRefund") -} - -func init() { proto.RegisterFile("kyve/global/v1beta1/global.proto", fileDescriptor_d1b5d4c0bbdf8bfb) } - -var fileDescriptor_d1b5d4c0bbdf8bfb = []byte{ - // 417 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x51, 0xab, 0xd3, 0x30, - 0x14, 0x6e, 0x5d, 0x1d, 0x2e, 0xe3, 0x2a, 0x44, 0xb9, 0x54, 0x85, 0xde, 0x51, 0x11, 0x2e, 0x08, - 0x2d, 0x57, 0x1f, 0x7d, 0x10, 0xcb, 0x1d, 0x43, 0x14, 0x99, 0x7d, 0x10, 0xf4, 0xa5, 0x4b, 0xdb, - 0x2c, 0x8b, 0x5b, 0x92, 0x92, 0xa4, 0xd3, 0xfd, 0x0b, 0xfd, 0x57, 0x7b, 0xdc, 0xa3, 0xf8, 0x30, - 0x64, 0xfb, 0x23, 0x92, 0xac, 0x1b, 0x0a, 0x13, 0x76, 0xdf, 0xce, 0x39, 0xf9, 0xbe, 0x2f, 0xe7, - 0x3b, 0xe7, 0x80, 0xde, 0x74, 0x31, 0xc7, 0x31, 0x99, 0x89, 0x1c, 0xcd, 0xe2, 0xf9, 0x55, 0x8e, - 0x35, 0xba, 0x6a, 0xd2, 0xa8, 0x92, 0x42, 0x0b, 0x78, 0xdf, 0x20, 0xa2, 0xa6, 0xd4, 0x20, 0x1e, - 0x3d, 0x20, 0x82, 0x08, 0xfb, 0x1e, 0x9b, 0x68, 0x07, 0x0d, 0x7f, 0xb4, 0x40, 0x7b, 0x88, 0x24, - 0x62, 0x0a, 0x0e, 0xc0, 0x19, 0xa3, 0x3c, 0x23, 0x48, 0x65, 0x95, 0xa4, 0x05, 0xf6, 0xdd, 0x9e, - 0x7b, 0xd9, 0x49, 0x9e, 0x2c, 0xd7, 0x17, 0xce, 0xaf, 0xf5, 0xc5, 0xe3, 0x42, 0x28, 0x26, 0x94, - 0x2a, 0xa7, 0x11, 0x15, 0x31, 0x43, 0x7a, 0x12, 0xbd, 0xc3, 0x04, 0x15, 0x8b, 0x6b, 0x5c, 0xa4, - 0x5d, 0x46, 0xf9, 0x00, 0xa9, 0xa1, 0xe1, 0xc1, 0x04, 0x80, 0xbc, 0x96, 0x3c, 0x93, 0x48, 0x53, - 0xe1, 0xdf, 0x3a, 0x5d, 0xa5, 0x63, 0x68, 0xa9, 0x61, 0xc1, 0x0f, 0xe0, 0x9e, 0x69, 0x04, 0x95, - 0x5f, 0x6a, 0xa5, 0x19, 0xe6, 0x5a, 0xf9, 0xad, 0x5e, 0xeb, 0xb2, 0xfb, 0x3c, 0x8c, 0x8e, 0x98, - 0x8b, 0x06, 0x48, 0xbd, 0x3e, 0x40, 0x13, 0xcf, 0x7c, 0x96, 0xde, 0x25, 0x7f, 0x17, 0x15, 0xec, - 0x83, 0xae, 0x91, 0x94, 0x78, 0x5c, 0xf3, 0x52, 0xf9, 0x9e, 0x95, 0x0b, 0xfe, 0x27, 0x97, 0x5a, - 0x58, 0x23, 0x05, 0xc8, 0xbe, 0xa0, 0xe0, 0x08, 0x3c, 0x34, 0x63, 0xa2, 0x9c, 0x6a, 0x8a, 0x66, - 0x59, 0x89, 0x2b, 0xa1, 0xa8, 0x6e, 0xcc, 0xde, 0xb6, 0x66, 0x9f, 0x9e, 0x60, 0xd6, 0x77, 0xd3, - 0x73, 0x46, 0xf9, 0x9b, 0x9d, 0xcc, 0xf5, 0x4e, 0xc5, 0x7a, 0x0f, 0x5f, 0x82, 0xb3, 0x7f, 0xfc, - 0x40, 0x08, 0x3c, 0xbd, 0xa8, 0x9a, 0x85, 0xa4, 0x36, 0x86, 0xe7, 0xa0, 0x8d, 0x98, 0xa8, 0xb9, - 0xb6, 0x03, 0xf6, 0xd2, 0x26, 0x0b, 0x47, 0xa0, 0x73, 0xe8, 0xfe, 0x28, 0xf1, 0x15, 0xb8, 0x33, - 0x96, 0xa8, 0xd0, 0x54, 0xf0, 0x9b, 0xec, 0xe6, 0x40, 0x4a, 0xfa, 0xcb, 0x4d, 0xe0, 0xae, 0x36, - 0x81, 0xfb, 0x7b, 0x13, 0xb8, 0xdf, 0xb7, 0x81, 0xb3, 0xda, 0x06, 0xce, 0xcf, 0x6d, 0xe0, 0x7c, - 0x7e, 0x46, 0xa8, 0x9e, 0xd4, 0x79, 0x54, 0x08, 0x16, 0xbf, 0xfd, 0xf4, 0xb1, 0xff, 0x1e, 0xeb, - 0xaf, 0x42, 0x4e, 0xe3, 0x62, 0x82, 0x28, 0x8f, 0xbf, 0xed, 0x6f, 0xd6, 0xb4, 0xa1, 0xf2, 0xb6, - 0x3d, 0xc0, 0x17, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x01, 0x54, 0xa5, 0x7e, 0xcf, 0x02, 0x00, - 0x00, + proto.RegisterType((*Params)(nil), "kyve.global.types.Params") + proto.RegisterType((*GasAdjustment)(nil), "kyve.global.types.GasAdjustment") + proto.RegisterType((*GasRefund)(nil), "kyve.global.types.GasRefund") +} + +func init() { proto.RegisterFile("kyve/global/types/global.proto", fileDescriptor_bdfbd61db80b66f8) } + +var fileDescriptor_bdfbd61db80b66f8 = []byte{ + // 413 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x5f, 0xcb, 0xd3, 0x30, + 0x14, 0xc6, 0x5b, 0x57, 0x87, 0xcb, 0x78, 0x15, 0x83, 0xbc, 0xd4, 0x3f, 0xf4, 0x1d, 0x13, 0x61, + 0x20, 0xb4, 0xa0, 0x97, 0x5e, 0x88, 0x75, 0x63, 0x88, 0xa2, 0xa3, 0x17, 0x82, 0xde, 0x74, 0x69, + 0x9b, 0x65, 0x71, 0x4b, 0x52, 0x92, 0x54, 0xdd, 0x87, 0x10, 0xfc, 0x58, 0xbb, 0xdc, 0xa5, 0x78, + 0x31, 0x64, 0xfb, 0x22, 0x92, 0xb4, 0x0e, 0x87, 0xbb, 0x98, 0x77, 0xc9, 0x39, 0xe7, 0xf9, 0xe5, + 0x3c, 0x39, 0x07, 0x04, 0x8b, 0xd5, 0x67, 0x1c, 0x91, 0xa5, 0xc8, 0xd0, 0x32, 0xd2, 0xab, 0x12, + 0xab, 0xe6, 0x12, 0x96, 0x52, 0x68, 0x01, 0x6f, 0x9b, 0x7c, 0xd8, 0x84, 0x6c, 0xfe, 0xde, 0x1d, + 0x22, 0x88, 0xb0, 0xd9, 0xc8, 0x9c, 0xea, 0xc2, 0xfe, 0xb7, 0x16, 0x68, 0x4f, 0x90, 0x44, 0x4c, + 0xc1, 0x31, 0xb8, 0x60, 0x94, 0xa7, 0x04, 0xa9, 0xb4, 0x94, 0x34, 0xc7, 0xbe, 0xdb, 0x73, 0x07, + 0x9d, 0xf8, 0xe1, 0x7a, 0x7b, 0xe5, 0xfc, 0xdc, 0x5e, 0xdd, 0xcf, 0x85, 0x62, 0x42, 0xa9, 0x62, + 0x11, 0x52, 0x11, 0x31, 0xa4, 0xe7, 0xe1, 0x1b, 0x4c, 0x50, 0xbe, 0x1a, 0xe2, 0x3c, 0xe9, 0x32, + 0xca, 0xc7, 0x48, 0x4d, 0x8c, 0x0e, 0xc6, 0x00, 0x64, 0x95, 0xe4, 0xa9, 0x44, 0x9a, 0x0a, 0xff, + 0xda, 0xf9, 0x94, 0x8e, 0x91, 0x25, 0x46, 0x05, 0xdf, 0x81, 0x5b, 0xa6, 0x11, 0x54, 0x7c, 0xaa, + 0x94, 0x66, 0x98, 0x6b, 0xe5, 0xb7, 0x7a, 0xad, 0x41, 0xf7, 0x49, 0x2f, 0xfc, 0xc7, 0x5a, 0x38, + 0x46, 0xea, 0xc5, 0xa1, 0x30, 0xf6, 0xcc, 0x53, 0xc9, 0x4d, 0xf2, 0x77, 0x50, 0xc1, 0x97, 0xa0, + 0x6b, 0x80, 0x12, 0xcf, 0x2a, 0x5e, 0x28, 0xdf, 0xb3, 0xb0, 0x07, 0xa7, 0x61, 0x89, 0x2d, 0x6a, + 0x40, 0x80, 0xfc, 0x09, 0x28, 0x38, 0x05, 0x77, 0xcd, 0x17, 0x51, 0x4e, 0x35, 0x45, 0xcb, 0xb4, + 0xc0, 0xa5, 0x50, 0x54, 0x37, 0x46, 0xaf, 0x5b, 0xa3, 0x8f, 0xce, 0x30, 0xea, 0xbb, 0xc9, 0x25, + 0xa3, 0xfc, 0x55, 0x8d, 0x19, 0xd6, 0x14, 0xeb, 0xbb, 0xff, 0x0c, 0x5c, 0x1c, 0xb9, 0x81, 0x10, + 0x78, 0xa6, 0xaf, 0x7a, 0x18, 0x89, 0x3d, 0xc3, 0x4b, 0xd0, 0x46, 0x4c, 0x54, 0x5c, 0xdb, 0xcf, + 0xf5, 0x92, 0xe6, 0xd6, 0x9f, 0x82, 0xce, 0xa1, 0xfb, 0x93, 0xc2, 0xe7, 0xe0, 0xc6, 0x4c, 0xa2, + 0x5c, 0x53, 0xc1, 0xff, 0x67, 0x2e, 0x07, 0x51, 0x3c, 0x5a, 0xef, 0x02, 0x77, 0xb3, 0x0b, 0xdc, + 0x5f, 0xbb, 0xc0, 0xfd, 0xbe, 0x0f, 0x9c, 0xcd, 0x3e, 0x70, 0x7e, 0xec, 0x03, 0xe7, 0xe3, 0x63, + 0x42, 0xf5, 0xbc, 0xca, 0xc2, 0x5c, 0xb0, 0xe8, 0xf5, 0x87, 0xf7, 0xa3, 0xb7, 0x58, 0x7f, 0x11, + 0x72, 0x11, 0xe5, 0x73, 0x44, 0x79, 0xf4, 0xf5, 0x68, 0x57, 0xb3, 0xb6, 0x5d, 0xbe, 0xa7, 0xbf, + 0x03, 0x00, 0x00, 0xff, 0xff, 0x06, 0xbb, 0x67, 0xb5, 0xc7, 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/global/types/query.pb.go b/x/global/types/query.pb.go index 98d63b63..f3b0535c 100644 --- a/x/global/types/query.pb.go +++ b/x/global/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/global/v1beta1/query.proto +// source: kyve/global/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_117f917a03a4039c, []int{0} + return fileDescriptor_54596700919ddee1, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_117f917a03a4039c, []int{1} + return fileDescriptor_54596700919ddee1, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,32 +113,32 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.global.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.global.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.global.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.global.types.QueryParamsResponse") } -func init() { proto.RegisterFile("kyve/global/v1beta1/query.proto", fileDescriptor_117f917a03a4039c) } +func init() { proto.RegisterFile("kyve/global/types/query.proto", fileDescriptor_54596700919ddee1) } -var fileDescriptor_117f917a03a4039c = []byte{ +var fileDescriptor_54596700919ddee1 = []byte{ // 291 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, - 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x06, 0x29, 0xd0, - 0x83, 0x28, 0xd0, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xeb, 0x83, 0x58, - 0x10, 0xa5, 0x52, 0x32, 0xe9, 0xf9, 0xf9, 0xe9, 0x39, 0xa9, 0xfa, 0x89, 0x05, 0x99, 0xfa, 0x89, - 0x79, 0x79, 0xf9, 0x25, 0x89, 0x25, 0x99, 0xf9, 0x79, 0xc5, 0x50, 0x59, 0x05, 0x6c, 0x36, 0x41, - 0xcd, 0x05, 0xab, 0x50, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xd9, 0x1c, 0x90, 0x58, 0x94, 0x98, 0x5b, - 0x1c, 0x94, 0x5a, 0x58, 0x9a, 0x5a, 0x5c, 0xa2, 0x14, 0xc0, 0x25, 0x8c, 0x22, 0x5a, 0x5c, 0x90, - 0x9f, 0x57, 0x9c, 0x2a, 0x64, 0xc9, 0xc5, 0x56, 0x00, 0x16, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, - 0x36, 0x92, 0xd6, 0xc3, 0xe2, 0x50, 0x3d, 0x88, 0x26, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, - 0xa0, 0x1a, 0x8c, 0xba, 0x18, 0xb9, 0x58, 0xc1, 0x46, 0x0a, 0x35, 0x30, 0x72, 0xb1, 0x41, 0x94, - 0x08, 0xa9, 0x63, 0xd5, 0x8f, 0xe9, 0x1e, 0x29, 0x0d, 0xc2, 0x0a, 0x21, 0x4e, 0x54, 0x52, 0x6e, - 0xba, 0xfc, 0x64, 0x32, 0x93, 0xac, 0x90, 0xb4, 0x3e, 0x36, 0xaf, 0x43, 0x1c, 0xe3, 0xe4, 0x7a, - 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, - 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xda, 0xe9, 0x99, 0x25, 0x19, 0xa5, - 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, - 0xd9, 0xfa, 0xc9, 0x19, 0x89, 0x99, 0x79, 0xfa, 0x15, 0x30, 0xf3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, - 0x93, 0xd8, 0xc0, 0x41, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x44, 0x21, 0xc5, 0xfb, 0xd0, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0x2c, + 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0x49, 0xeb, 0x41, 0xa4, + 0xf5, 0xc0, 0xd2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x59, 0x7d, 0x10, 0x0b, 0xa2, 0x50, + 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, 0x2f, + 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x2a, 0x2b, 0x87, 0x69, 0x0b, 0xd4, 0x4c, 0xb0, + 0xbc, 0x92, 0x08, 0x97, 0x50, 0x20, 0xc8, 0xd6, 0x80, 0xc4, 0xa2, 0xc4, 0xdc, 0xe2, 0xa0, 0xd4, + 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x25, 0x3f, 0x2e, 0x61, 0x14, 0xd1, 0xe2, 0x82, 0xfc, 0xbc, 0xe2, + 0x54, 0x21, 0x73, 0x2e, 0xb6, 0x02, 0xb0, 0x88, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0xa4, + 0x1e, 0x86, 0x23, 0xf5, 0x20, 0x5a, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x2a, 0x37, + 0x6a, 0x65, 0xe4, 0x62, 0x05, 0x1b, 0x28, 0x54, 0xc3, 0xc5, 0x06, 0x51, 0x21, 0xa4, 0x8a, 0x45, + 0x33, 0xa6, 0x53, 0xa4, 0xd4, 0x08, 0x29, 0x83, 0xb8, 0x4d, 0x49, 0xb9, 0xe9, 0xf2, 0x93, 0xc9, + 0x4c, 0xb2, 0x42, 0xd2, 0xfa, 0xc8, 0x3e, 0x2e, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x87, + 0xb8, 0xc3, 0xc9, 0xf5, 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, 0xb4, 0xd3, + 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xbd, 0x23, 0xc3, 0x5c, 0xfd, 0x52, + 0x4b, 0xca, 0xf3, 0x8b, 0xb2, 0xf5, 0x93, 0x33, 0x12, 0x33, 0xf3, 0xf4, 0x2b, 0x50, 0x42, 0x30, + 0x89, 0x0d, 0x1c, 0x76, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x0b, 0x3b, 0x70, 0xc3, 0x01, 0x00, 0x00, } @@ -168,7 +168,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.global.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.global.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -203,7 +203,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.global.v1beta1.Query/Params", + FullMethod: "/kyve.global.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -212,7 +212,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.global.v1beta1.Query", + ServiceName: "kyve.global.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,7 +221,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/global/v1beta1/query.proto", + Metadata: "kyve/global/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/global/types/query.pb.gw.go b/x/global/types/query.pb.gw.go index 79a454e2..ba24237b 100644 --- a/x/global/types/query.pb.gw.go +++ b/x/global/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/global/v1beta1/query.proto +// source: kyve/global/types/query.proto /* Package types is a reverse proxy. diff --git a/x/global/types/tx.pb.go b/x/global/types/tx.pb.go index eed0561d..aa25ab03 100644 --- a/x/global/types/tx.pb.go +++ b/x/global/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/global/v1beta1/tx.proto +// source: kyve/global/types/tx.proto package types @@ -41,7 +41,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_69d8ea894bb09a0e, []int{0} + return fileDescriptor_1e7e796e11026aaf, []int{0} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -92,7 +92,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_69d8ea894bb09a0e, []int{1} + return fileDescriptor_1e7e796e11026aaf, []int{1} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,33 +122,33 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.global.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.global.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/global/v1beta1/tx.proto", fileDescriptor_69d8ea894bb09a0e) } - -var fileDescriptor_69d8ea894bb09a0e = []byte{ - // 303 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc9, 0xae, 0x2c, 0x4b, - 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, - 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x06, 0xc9, 0xea, 0x41, 0x64, 0xf5, - 0xa0, 0xb2, 0x52, 0xe2, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xfa, 0xb9, 0xc5, 0xe9, 0xfa, 0x65, - 0x86, 0x20, 0x0a, 0xa2, 0x5a, 0x4a, 0x12, 0x22, 0x11, 0x0f, 0xe6, 0xe9, 0x43, 0x38, 0x10, 0x29, - 0xa5, 0x62, 0x2e, 0x7e, 0xdf, 0xe2, 0xf4, 0xd0, 0x82, 0x94, 0xc4, 0x92, 0xd4, 0x80, 0xc4, 0xa2, - 0xc4, 0xdc, 0x62, 0x21, 0x33, 0x2e, 0xce, 0xc4, 0xd2, 0x92, 0x8c, 0xfc, 0xa2, 0xcc, 0x92, 0x4a, - 0x09, 0x46, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, 0x45, 0xa0, 0xfa, 0x1c, 0x53, - 0x52, 0x8a, 0x52, 0x8b, 0x8b, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x10, 0x4a, 0x85, 0x24, - 0xb8, 0xd8, 0x0b, 0x12, 0x2b, 0x73, 0xf2, 0x13, 0x53, 0x24, 0x98, 0x40, 0xba, 0x82, 0x60, 0x5c, - 0x2b, 0xbe, 0xa6, 0xe7, 0x1b, 0xb4, 0x10, 0x2a, 0x95, 0x24, 0xb9, 0xc4, 0xd1, 0x2c, 0x0d, 0x4a, - 0x2d, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x35, 0x2a, 0xe0, 0x62, 0xf6, 0x2d, 0x4e, 0x17, 0x4a, 0xe2, - 0xe2, 0x41, 0x71, 0x93, 0x8a, 0x1e, 0x16, 0x0f, 0xeb, 0xa1, 0x19, 0x22, 0xa5, 0x43, 0x8c, 0x2a, - 0x98, 0x55, 0x52, 0xac, 0x0d, 0xcf, 0x37, 0x68, 0x31, 0x3a, 0xb9, 0x9e, 0x78, 0x24, 0xc7, 0x78, - 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, - 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x76, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, - 0xae, 0xbe, 0x77, 0x64, 0x98, 0xab, 0x5f, 0x6a, 0x49, 0x79, 0x7e, 0x51, 0xb6, 0x7e, 0x72, 0x46, - 0x62, 0x66, 0x9e, 0x7e, 0x05, 0x2c, 0x72, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xe1, - 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x88, 0xac, 0x64, 0xb8, 0x01, 0x00, 0x00, + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.global.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.global.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/global/types/tx.proto", fileDescriptor_1e7e796e11026aaf) } + +var fileDescriptor_1e7e796e11026aaf = []byte{ + // 296 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0xae, 0x2c, 0x4b, + 0xd5, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0xa9, + 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0xc9, 0xe9, 0x41, 0xe4, 0xf4, 0xc0, 0x72, + 0x52, 0xe2, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xfa, 0xb9, 0xc5, 0xe9, 0xfa, 0x65, 0x86, 0x20, + 0x0a, 0xa2, 0x56, 0x4a, 0x12, 0x22, 0x11, 0x0f, 0xe6, 0xe9, 0x43, 0x38, 0x10, 0x29, 0xa5, 0x62, + 0x2e, 0x7e, 0xdf, 0xe2, 0xf4, 0xd0, 0x82, 0x94, 0xc4, 0x92, 0xd4, 0x80, 0xc4, 0xa2, 0xc4, 0xdc, + 0x62, 0x21, 0x33, 0x2e, 0xce, 0xc4, 0xd2, 0x92, 0x8c, 0xfc, 0xa2, 0xcc, 0x92, 0x4a, 0x09, 0x46, + 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, 0x45, 0xa0, 0xfa, 0x1c, 0x53, 0x52, 0x8a, + 0x52, 0x8b, 0x8b, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x10, 0x4a, 0x85, 0x24, 0xb8, 0xd8, + 0x0b, 0x12, 0x2b, 0x73, 0xf2, 0x13, 0x53, 0x24, 0x98, 0x40, 0xba, 0x82, 0x60, 0x5c, 0x2b, 0xbe, + 0xa6, 0xe7, 0x1b, 0xb4, 0x10, 0x2a, 0x95, 0x24, 0xb9, 0xc4, 0xd1, 0x2c, 0x0d, 0x4a, 0x2d, 0x2e, + 0xc8, 0xcf, 0x2b, 0x4e, 0x35, 0xca, 0xe1, 0x62, 0xf6, 0x2d, 0x4e, 0x17, 0x8a, 0xe3, 0xe2, 0x41, + 0x71, 0x93, 0x92, 0x1e, 0x86, 0x77, 0xf5, 0xd0, 0x8c, 0x90, 0xd2, 0x22, 0xac, 0x06, 0x66, 0x8d, + 0x14, 0x6b, 0xc3, 0xf3, 0x0d, 0x5a, 0x8c, 0x4e, 0xae, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, + 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, + 0x2c, 0xc7, 0x10, 0xa5, 0x9d, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0xef, + 0x1d, 0x19, 0xe6, 0xea, 0x97, 0x5a, 0x52, 0x9e, 0x5f, 0x94, 0xad, 0x9f, 0x9c, 0x91, 0x98, 0x99, + 0xa7, 0x5f, 0x81, 0x12, 0x29, 0x49, 0x6c, 0xe0, 0xb0, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, + 0x96, 0xe9, 0xa1, 0xd8, 0xb0, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -179,7 +179,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.global.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.global.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -216,7 +216,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.global.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.global.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -225,7 +225,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.global.v1beta1.Msg", + ServiceName: "kyve.global.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -234,7 +234,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/global/v1beta1/tx.proto", + Metadata: "kyve/global/types/tx.proto", } func (m *MsgUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/events.pb.go b/x/pool/types/events.pb.go index 35d7e1a4..38e1b210 100644 --- a/x/pool/types/events.pb.go +++ b/x/pool/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/events.proto +// source: kyve/pool/types/events.proto package types @@ -38,7 +38,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{0} + return fileDescriptor_abc6b6cbdecb13a5, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -133,7 +133,7 @@ func (m *EventCreatePool) Reset() { *m = EventCreatePool{} } func (m *EventCreatePool) String() string { return proto.CompactTextString(m) } func (*EventCreatePool) ProtoMessage() {} func (*EventCreatePool) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{1} + return fileDescriptor_abc6b6cbdecb13a5, []int{1} } func (m *EventCreatePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -271,7 +271,7 @@ func (m *EventPoolEnabled) Reset() { *m = EventPoolEnabled{} } func (m *EventPoolEnabled) String() string { return proto.CompactTextString(m) } func (*EventPoolEnabled) ProtoMessage() {} func (*EventPoolEnabled) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{2} + return fileDescriptor_abc6b6cbdecb13a5, []int{2} } func (m *EventPoolEnabled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -318,7 +318,7 @@ func (m *EventPoolDisabled) Reset() { *m = EventPoolDisabled{} } func (m *EventPoolDisabled) String() string { return proto.CompactTextString(m) } func (*EventPoolDisabled) ProtoMessage() {} func (*EventPoolDisabled) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{3} + return fileDescriptor_abc6b6cbdecb13a5, []int{3} } func (m *EventPoolDisabled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -377,7 +377,7 @@ func (m *EventRuntimeUpgradeScheduled) Reset() { *m = EventRuntimeUpgrad func (m *EventRuntimeUpgradeScheduled) String() string { return proto.CompactTextString(m) } func (*EventRuntimeUpgradeScheduled) ProtoMessage() {} func (*EventRuntimeUpgradeScheduled) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{4} + return fileDescriptor_abc6b6cbdecb13a5, []int{4} } func (m *EventRuntimeUpgradeScheduled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -462,7 +462,7 @@ func (m *EventRuntimeUpgradeCancelled) Reset() { *m = EventRuntimeUpgrad func (m *EventRuntimeUpgradeCancelled) String() string { return proto.CompactTextString(m) } func (*EventRuntimeUpgradeCancelled) ProtoMessage() {} func (*EventRuntimeUpgradeCancelled) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{5} + return fileDescriptor_abc6b6cbdecb13a5, []int{5} } func (m *EventRuntimeUpgradeCancelled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -545,7 +545,7 @@ func (m *EventPoolUpdated) Reset() { *m = EventPoolUpdated{} } func (m *EventPoolUpdated) String() string { return proto.CompactTextString(m) } func (*EventPoolUpdated) ProtoMessage() {} func (*EventPoolUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{6} + return fileDescriptor_abc6b6cbdecb13a5, []int{6} } func (m *EventPoolUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -673,7 +673,7 @@ func (m *EventPoolFundsSlashed) Reset() { *m = EventPoolFundsSlashed{} } func (m *EventPoolFundsSlashed) String() string { return proto.CompactTextString(m) } func (*EventPoolFundsSlashed) ProtoMessage() {} func (*EventPoolFundsSlashed) Descriptor() ([]byte, []int) { - return fileDescriptor_c1828a100d789238, []int{7} + return fileDescriptor_abc6b6cbdecb13a5, []int{7} } func (m *EventPoolFundsSlashed) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -724,68 +724,68 @@ func (m *EventPoolFundsSlashed) GetAmount() uint64 { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.pool.v1beta1.EventUpdateParams") - proto.RegisterType((*EventCreatePool)(nil), "kyve.pool.v1beta1.EventCreatePool") - proto.RegisterType((*EventPoolEnabled)(nil), "kyve.pool.v1beta1.EventPoolEnabled") - proto.RegisterType((*EventPoolDisabled)(nil), "kyve.pool.v1beta1.EventPoolDisabled") - proto.RegisterType((*EventRuntimeUpgradeScheduled)(nil), "kyve.pool.v1beta1.EventRuntimeUpgradeScheduled") - proto.RegisterType((*EventRuntimeUpgradeCancelled)(nil), "kyve.pool.v1beta1.EventRuntimeUpgradeCancelled") - proto.RegisterType((*EventPoolUpdated)(nil), "kyve.pool.v1beta1.EventPoolUpdated") - proto.RegisterType((*EventPoolFundsSlashed)(nil), "kyve.pool.v1beta1.EventPoolFundsSlashed") -} - -func init() { proto.RegisterFile("kyve/pool/v1beta1/events.proto", fileDescriptor_c1828a100d789238) } - -var fileDescriptor_c1828a100d789238 = []byte{ - // 763 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0xcf, 0x6e, 0x33, 0x35, - 0x10, 0xcf, 0x26, 0x69, 0xda, 0x38, 0x4d, 0x42, 0x96, 0x52, 0x96, 0x82, 0x42, 0x08, 0x2a, 0x14, - 0x0e, 0x89, 0x0a, 0x9c, 0x91, 0xe8, 0x1f, 0xa4, 0xa8, 0x12, 0xaa, 0x12, 0x15, 0x04, 0x17, 0xcb, - 0x89, 0x27, 0x1b, 0xab, 0xbb, 0xf6, 0xca, 0xf6, 0x26, 0x4d, 0x9f, 0x82, 0x17, 0xe9, 0x7b, 0xf4, - 0x58, 0x09, 0x0e, 0x9c, 0x10, 0x6a, 0x5f, 0x04, 0xd9, 0xbb, 0x9b, 0x2f, 0x69, 0xf7, 0xfb, 0xd4, - 0xeb, 0x77, 0xf3, 0xcc, 0xef, 0x37, 0xe3, 0xf1, 0xcc, 0xfc, 0x76, 0x51, 0xfb, 0x7a, 0x39, 0x87, - 0x7e, 0x24, 0x44, 0xd0, 0x9f, 0x1f, 0x8f, 0x41, 0x93, 0xe3, 0x3e, 0xcc, 0x81, 0x6b, 0xd5, 0x8b, - 0xa4, 0xd0, 0xc2, 0x6d, 0x19, 0xbc, 0x67, 0xf0, 0x5e, 0x8a, 0x1f, 0xec, 0xf9, 0xc2, 0x17, 0x16, - 0xed, 0x9b, 0x53, 0x42, 0x3c, 0xc8, 0x49, 0x14, 0x11, 0x49, 0xc2, 0x34, 0x51, 0xf7, 0xce, 0x41, - 0xad, 0x73, 0x93, 0xf9, 0x2a, 0xa2, 0x44, 0xc3, 0xa5, 0xc5, 0xdc, 0x1f, 0x11, 0x12, 0x01, 0xc5, - 0x09, 0xd3, 0x73, 0x3a, 0xce, 0x51, 0xed, 0xbb, 0x4f, 0x7a, 0x2f, 0xee, 0xec, 0x25, 0xf4, 0x93, - 0xf2, 0xfd, 0xbf, 0x9f, 0x17, 0x86, 0x55, 0x11, 0xd0, 0x37, 0xf1, 0x1c, 0x16, 0x59, 0x7c, 0xf1, - 0x95, 0xf1, 0x1c, 0x16, 0x69, 0xbc, 0x87, 0xb6, 0x23, 0xb2, 0x0c, 0x04, 0xa1, 0x5e, 0xa9, 0xe3, - 0x1c, 0x55, 0x87, 0x99, 0xd9, 0xfd, 0xab, 0x84, 0x9a, 0xb6, 0xde, 0x53, 0x09, 0xa6, 0x5e, 0x21, - 0x02, 0xb7, 0x81, 0x8a, 0x8c, 0xda, 0x2a, 0xcb, 0xc3, 0x22, 0xa3, 0xae, 0x8b, 0xca, 0x9c, 0x84, - 0x60, 0xef, 0xad, 0x0e, 0xed, 0xd9, 0x64, 0x94, 0x31, 0xd7, 0x2c, 0x84, 0x2c, 0x63, 0x6a, 0x1a, - 0x76, 0x20, 0x7c, 0xe1, 0x95, 0x13, 0xb6, 0x39, 0xbb, 0xfb, 0xa8, 0x32, 0x11, 0x7c, 0xca, 0x7c, - 0x6f, 0xcb, 0x7a, 0x53, 0xcb, 0xfd, 0x14, 0x55, 0x95, 0x26, 0x52, 0xe3, 0x6b, 0x58, 0x7a, 0x15, - 0x0b, 0xed, 0x58, 0xc7, 0x05, 0x2c, 0xdd, 0xaf, 0x51, 0x33, 0x8e, 0x4c, 0x91, 0x98, 0x71, 0x0d, - 0x72, 0x4e, 0x02, 0x6f, 0xdb, 0xd6, 0xd4, 0x48, 0xdc, 0x83, 0xd4, 0xeb, 0xfe, 0x80, 0xf6, 0x19, - 0x9f, 0x06, 0x44, 0x33, 0xc1, 0xb1, 0x9a, 0x11, 0x09, 0x78, 0x01, 0xcc, 0x9f, 0x69, 0x6f, 0xc7, - 0xf2, 0xf7, 0x56, 0xe8, 0xc8, 0x80, 0xbf, 0x59, 0xcc, 0x3d, 0x44, 0x8d, 0x90, 0x71, 0x4c, 0x21, - 0x00, 0xdf, 0x82, 0x5e, 0xd5, 0xb2, 0xeb, 0x21, 0xe3, 0x67, 0x2b, 0xa7, 0xfb, 0x15, 0x6a, 0x86, - 0xe4, 0x06, 0x8f, 0x63, 0x4e, 0x03, 0xc0, 0x8a, 0xdd, 0x82, 0x87, 0x52, 0x1e, 0xb9, 0x39, 0xb1, - 0xde, 0x11, 0xbb, 0xb5, 0x0d, 0x99, 0x83, 0x54, 0x26, 0x4f, 0x2d, 0x69, 0x48, 0x6a, 0xba, 0x07, - 0x68, 0x67, 0xcc, 0x38, 0x91, 0x0c, 0x94, 0xb7, 0x9b, 0xbc, 0x31, 0xb3, 0xdd, 0x1e, 0xfa, 0x50, - 0x69, 0x21, 0x89, 0x0f, 0x38, 0x92, 0x62, 0xce, 0x28, 0x48, 0xcc, 0xa8, 0x57, 0xef, 0x38, 0x47, - 0xf5, 0x61, 0x2b, 0x85, 0x2e, 0x53, 0x64, 0x40, 0x4d, 0xd1, 0x13, 0x11, 0x46, 0x12, 0x94, 0x49, - 0x6d, 0xa8, 0x0d, 0x4b, 0xad, 0xaf, 0x79, 0x07, 0xb4, 0xdb, 0x45, 0x1f, 0xd8, 0xa1, 0x9a, 0x71, - 0x9e, 0x73, 0x32, 0x0e, 0x80, 0x3e, 0x9f, 0x6a, 0xf7, 0xcb, 0x74, 0x51, 0x0d, 0xe7, 0x8c, 0xa9, - 0x7c, 0xd2, 0xdf, 0x0e, 0xfa, 0xcc, 0xb2, 0x86, 0xc9, 0x74, 0xaf, 0x22, 0x5f, 0x12, 0x0a, 0xa3, - 0xc9, 0x0c, 0x68, 0x6c, 0x02, 0xd6, 0xf6, 0xc0, 0xd9, 0xdc, 0x83, 0xb5, 0x86, 0x14, 0x37, 0x1b, - 0xf2, 0x05, 0xda, 0x55, 0x59, 0x02, 0x4c, 0xb4, 0x5d, 0xa0, 0xf2, 0xb0, 0xb6, 0xf2, 0xfd, 0xa4, - 0x4d, 0xcf, 0x68, 0x2c, 0x93, 0xb1, 0x94, 0x2d, 0xbc, 0xb2, 0x37, 0xfa, 0xb9, 0xf5, 0xac, 0x9f, - 0x87, 0xa8, 0x41, 0xa6, 0x53, 0x98, 0x68, 0xa0, 0xd8, 0x28, 0x43, 0x79, 0x95, 0x4e, 0xc9, 0x0c, - 0x2b, 0xf3, 0x9a, 0xd7, 0xaa, 0x2e, 0xce, 0x7d, 0xd5, 0x29, 0xe1, 0x13, 0x08, 0xde, 0xfd, 0xaa, - 0x97, 0x17, 0x14, 0xf3, 0x2e, 0xb8, 0x2b, 0xad, 0x4d, 0x20, 0xf9, 0x14, 0xbc, 0x68, 0xae, 0xfb, - 0x2d, 0x6a, 0x49, 0xb2, 0xc0, 0xb1, 0x85, 0xb1, 0xd2, 0x92, 0x71, 0x3f, 0xed, 0x55, 0x53, 0x92, - 0x45, 0x12, 0x36, 0xb2, 0xee, 0x95, 0x06, 0x4b, 0xf9, 0x1a, 0x2c, 0xe7, 0x6b, 0x70, 0x2b, 0x57, - 0x83, 0x95, 0x0d, 0x0d, 0xbe, 0x5f, 0x32, 0x7b, 0x8b, 0x60, 0x6a, 0xaf, 0x17, 0xcc, 0x6e, 0x9e, - 0x60, 0xc6, 0xe8, 0xa3, 0xd5, 0xb8, 0x7e, 0x8e, 0x39, 0x55, 0xa3, 0x80, 0xa8, 0x19, 0x50, 0xf7, - 0x63, 0xb4, 0x6d, 0xc6, 0x8c, 0x57, 0x83, 0xab, 0x18, 0x73, 0x60, 0x57, 0x84, 0x50, 0x6a, 0x32, - 0x64, 0xeb, 0x9d, 0x9a, 0xa6, 0xd1, 0x24, 0x14, 0x31, 0xcf, 0x16, 0x3b, 0xb5, 0x4e, 0x4e, 0xef, - 0x1f, 0xdb, 0xce, 0xc3, 0x63, 0xdb, 0xf9, 0xef, 0xb1, 0xed, 0xfc, 0xf9, 0xd4, 0x2e, 0x3c, 0x3c, - 0xb5, 0x0b, 0xff, 0x3c, 0xb5, 0x0b, 0x7f, 0x7c, 0xe3, 0x33, 0x3d, 0x8b, 0xc7, 0xbd, 0x89, 0x08, - 0xfb, 0x17, 0xbf, 0xff, 0x7a, 0xfe, 0x0b, 0xe8, 0x85, 0x90, 0xd7, 0xfd, 0xc9, 0x8c, 0x30, 0xde, - 0xbf, 0x49, 0x7e, 0x37, 0x7a, 0x19, 0x81, 0x1a, 0x57, 0xec, 0x6f, 0xe6, 0xfb, 0xff, 0x03, 0x00, - 0x00, 0xff, 0xff, 0x99, 0xc5, 0x91, 0xec, 0xd1, 0x06, 0x00, 0x00, + proto.RegisterType((*EventUpdateParams)(nil), "kyve.pool.types.EventUpdateParams") + proto.RegisterType((*EventCreatePool)(nil), "kyve.pool.types.EventCreatePool") + proto.RegisterType((*EventPoolEnabled)(nil), "kyve.pool.types.EventPoolEnabled") + proto.RegisterType((*EventPoolDisabled)(nil), "kyve.pool.types.EventPoolDisabled") + proto.RegisterType((*EventRuntimeUpgradeScheduled)(nil), "kyve.pool.types.EventRuntimeUpgradeScheduled") + proto.RegisterType((*EventRuntimeUpgradeCancelled)(nil), "kyve.pool.types.EventRuntimeUpgradeCancelled") + proto.RegisterType((*EventPoolUpdated)(nil), "kyve.pool.types.EventPoolUpdated") + proto.RegisterType((*EventPoolFundsSlashed)(nil), "kyve.pool.types.EventPoolFundsSlashed") +} + +func init() { proto.RegisterFile("kyve/pool/types/events.proto", fileDescriptor_abc6b6cbdecb13a5) } + +var fileDescriptor_abc6b6cbdecb13a5 = []byte{ + // 760 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0xcd, 0x6e, 0x1b, 0x37, + 0x10, 0xd6, 0x4a, 0xb2, 0x6c, 0x51, 0x96, 0x54, 0x6f, 0x5d, 0x7b, 0xe1, 0x1a, 0xaa, 0xaa, 0xc2, + 0xad, 0xdb, 0x83, 0x04, 0xb4, 0x3d, 0xf6, 0x52, 0xff, 0x14, 0x10, 0x0c, 0x14, 0x86, 0x04, 0x27, + 0x48, 0x2e, 0x04, 0x25, 0x8e, 0x56, 0x84, 0x77, 0xc9, 0x05, 0xc9, 0x95, 0x2c, 0x3f, 0x45, 0x5e, + 0x23, 0x87, 0xbc, 0x87, 0x8f, 0x06, 0x92, 0x43, 0x4e, 0x41, 0x60, 0xbf, 0x48, 0x40, 0xee, 0xae, + 0x22, 0xd9, 0x4a, 0xe0, 0x6b, 0x6e, 0x9c, 0xf9, 0xbe, 0x19, 0x0e, 0x67, 0xe6, 0xdb, 0x45, 0xfb, + 0x97, 0xb3, 0x09, 0x74, 0x22, 0x21, 0x82, 0x8e, 0x9e, 0x45, 0xa0, 0x3a, 0x30, 0x01, 0xae, 0x55, + 0x3b, 0x92, 0x42, 0x0b, 0xb7, 0x6e, 0xd0, 0xb6, 0x41, 0xdb, 0x16, 0xdd, 0xdb, 0xf6, 0x85, 0x2f, + 0x2c, 0xd6, 0x31, 0xa7, 0x84, 0xb6, 0xf7, 0x28, 0x49, 0x44, 0x24, 0x09, 0xd3, 0x24, 0xad, 0xd7, + 0x0e, 0xda, 0x3a, 0x35, 0x59, 0x2f, 0x22, 0x4a, 0x34, 0x9c, 0x5b, 0xcc, 0xfd, 0x07, 0x21, 0x11, + 0x50, 0x9c, 0x30, 0x3d, 0xa7, 0xe9, 0x1c, 0x56, 0xfe, 0xdc, 0x6d, 0x3f, 0xb8, 0xaf, 0x9d, 0x90, + 0x8f, 0x8a, 0x37, 0x1f, 0x7e, 0xca, 0xf5, 0xca, 0x22, 0xa0, 0x9f, 0xa3, 0x39, 0x4c, 0xb3, 0xe8, + 0xfc, 0x93, 0xa2, 0x39, 0x4c, 0xd3, 0x68, 0x0f, 0xad, 0x47, 0x64, 0x16, 0x08, 0x42, 0xbd, 0x42, + 0xd3, 0x39, 0x2c, 0xf7, 0x32, 0xb3, 0xf5, 0xb6, 0x80, 0xea, 0xb6, 0xd6, 0x63, 0x09, 0xa6, 0x56, + 0x21, 0x02, 0xb7, 0x86, 0xf2, 0x8c, 0xda, 0x0a, 0x8b, 0xbd, 0x3c, 0xa3, 0xae, 0x8b, 0x8a, 0x9c, + 0x84, 0x60, 0x6f, 0x2d, 0xf7, 0xec, 0xd9, 0x64, 0x94, 0x31, 0xd7, 0x2c, 0x84, 0x2c, 0x63, 0x6a, + 0x1a, 0x76, 0x20, 0x7c, 0xe1, 0x15, 0x13, 0xb6, 0x39, 0xbb, 0x3b, 0xa8, 0x34, 0x14, 0x7c, 0xc4, + 0x7c, 0x6f, 0xcd, 0x7a, 0x53, 0xcb, 0xfd, 0x11, 0x95, 0x95, 0x26, 0x52, 0xe3, 0x4b, 0x98, 0x79, + 0x25, 0x0b, 0x6d, 0x58, 0xc7, 0x19, 0xcc, 0xdc, 0xdf, 0x50, 0x3d, 0x8e, 0x4c, 0x91, 0x98, 0x71, + 0x0d, 0x72, 0x42, 0x02, 0x6f, 0xdd, 0xd6, 0x54, 0x4b, 0xdc, 0xdd, 0xd4, 0xeb, 0xfe, 0x8d, 0x76, + 0x18, 0x1f, 0x05, 0x44, 0x33, 0xc1, 0xb1, 0x1a, 0x13, 0x09, 0x78, 0x0a, 0xcc, 0x1f, 0x6b, 0x6f, + 0xc3, 0xf2, 0xb7, 0xe7, 0x68, 0xdf, 0x80, 0xcf, 0x2d, 0xe6, 0x1e, 0xa0, 0x5a, 0xc8, 0x38, 0xa6, + 0x10, 0x80, 0x6f, 0x41, 0xaf, 0x6c, 0xd9, 0xd5, 0x90, 0xf1, 0x93, 0xb9, 0xd3, 0xfd, 0x15, 0xd5, + 0x43, 0x72, 0x85, 0x07, 0x31, 0xa7, 0x01, 0x60, 0xc5, 0xae, 0xc1, 0x43, 0x29, 0x8f, 0x5c, 0x1d, + 0x59, 0x6f, 0x9f, 0x5d, 0xdb, 0x86, 0x4c, 0x40, 0x2a, 0x93, 0xa7, 0x92, 0x34, 0x24, 0x35, 0xdd, + 0x3d, 0xb4, 0x31, 0x60, 0x9c, 0x48, 0x06, 0xca, 0xdb, 0x4c, 0xde, 0x98, 0xd9, 0x6e, 0x1b, 0x7d, + 0xaf, 0xb4, 0x90, 0xc4, 0x07, 0x1c, 0x49, 0x31, 0x61, 0x14, 0x24, 0x66, 0xd4, 0xab, 0x36, 0x9d, + 0xc3, 0x6a, 0x6f, 0x2b, 0x85, 0xce, 0x53, 0xa4, 0x4b, 0x4d, 0xd1, 0x43, 0x11, 0x46, 0x12, 0x94, + 0x49, 0x6d, 0xa8, 0x35, 0x4b, 0xad, 0x2e, 0x78, 0xbb, 0xb4, 0xd5, 0x42, 0xdf, 0xd9, 0xa1, 0x9a, + 0x71, 0x9e, 0x72, 0x32, 0x08, 0x80, 0x3e, 0x9c, 0x6a, 0xeb, 0x97, 0x74, 0x49, 0x0d, 0xe7, 0x84, + 0xa9, 0xd5, 0xa4, 0x77, 0x0e, 0xda, 0xb7, 0xac, 0x5e, 0x32, 0xdd, 0x8b, 0xc8, 0x97, 0x84, 0x42, + 0x7f, 0x38, 0x06, 0x1a, 0x9b, 0x80, 0x85, 0x3d, 0x70, 0x96, 0xf7, 0x60, 0xa1, 0x21, 0xf9, 0xe5, + 0x86, 0xfc, 0x8c, 0x36, 0x55, 0x96, 0x00, 0x13, 0x6d, 0x17, 0xa8, 0xd8, 0xab, 0xcc, 0x7d, 0xff, + 0x6a, 0xd3, 0x33, 0x1a, 0xcb, 0x64, 0x2c, 0x45, 0x0b, 0xcf, 0xed, 0xa5, 0x7e, 0xae, 0x3d, 0xe8, + 0xe7, 0x01, 0xaa, 0x91, 0xd1, 0x08, 0x86, 0x1a, 0x28, 0x36, 0xba, 0x50, 0x5e, 0xa9, 0x59, 0x30, + 0xc3, 0xca, 0xbc, 0xe6, 0xb5, 0xaa, 0x85, 0x57, 0xbe, 0xea, 0x98, 0xf0, 0x21, 0x04, 0x5f, 0x7f, + 0xd5, 0xe3, 0x0b, 0xf2, 0xab, 0x2e, 0x78, 0x53, 0x58, 0x98, 0x40, 0xf2, 0x19, 0x78, 0xd4, 0x5c, + 0xf7, 0x0f, 0xb4, 0x25, 0xc9, 0x14, 0xc7, 0x16, 0xc6, 0x4a, 0x4b, 0xc6, 0xfd, 0xb4, 0x57, 0x75, + 0x49, 0xa6, 0x49, 0x58, 0xdf, 0xba, 0xe7, 0x1a, 0x2c, 0xac, 0xd6, 0x60, 0x71, 0xb5, 0x06, 0xd7, + 0x56, 0x6a, 0xb0, 0xb4, 0xa4, 0xc1, 0x6f, 0x4b, 0x66, 0x5f, 0x10, 0x4c, 0xe5, 0xe9, 0x82, 0xd9, + 0x5c, 0x25, 0x98, 0x01, 0xfa, 0x61, 0x3e, 0xae, 0xff, 0x62, 0x4e, 0x55, 0x3f, 0x20, 0x6a, 0x0c, + 0xd4, 0xdd, 0x45, 0xeb, 0x66, 0xcc, 0x78, 0x3e, 0xb8, 0x92, 0x31, 0xbb, 0x76, 0x45, 0x08, 0xa5, + 0x26, 0x43, 0xb6, 0xde, 0xa9, 0x69, 0x1a, 0x4d, 0x42, 0x11, 0xf3, 0x6c, 0xb1, 0x53, 0xeb, 0xe8, + 0xf8, 0xe6, 0xae, 0xe1, 0xdc, 0xde, 0x35, 0x9c, 0x8f, 0x77, 0x0d, 0xe7, 0xd5, 0x7d, 0x23, 0x77, + 0x7b, 0xdf, 0xc8, 0xbd, 0xbf, 0x6f, 0xe4, 0x5e, 0xfe, 0xee, 0x33, 0x3d, 0x8e, 0x07, 0xed, 0xa1, + 0x08, 0x3b, 0x67, 0x2f, 0x9e, 0x9d, 0xfe, 0x0f, 0x7a, 0x2a, 0xe4, 0x65, 0x67, 0x38, 0x26, 0x8c, + 0x77, 0xae, 0x16, 0x7e, 0x34, 0x83, 0x92, 0xfd, 0xc5, 0xfc, 0xf5, 0x29, 0x00, 0x00, 0xff, 0xff, + 0x43, 0x86, 0xcb, 0x0b, 0xc7, 0x06, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/genesis.pb.go b/x/pool/types/genesis.pb.go index d0546861..6a43024c 100644 --- a/x/pool/types/genesis.pb.go +++ b/x/pool/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/genesis.proto +// source: kyve/pool/types/genesis.proto package types @@ -37,7 +37,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_ba827ab14a3de899, []int{0} + return fileDescriptor_fea80db90b88a6ee, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,30 +88,30 @@ func (m *GenesisState) GetPoolCount() uint64 { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.pool.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.pool.types.GenesisState") } -func init() { proto.RegisterFile("kyve/pool/v1beta1/genesis.proto", fileDescriptor_ba827ab14a3de899) } +func init() { proto.RegisterFile("kyve/pool/types/genesis.proto", fileDescriptor_fea80db90b88a6ee) } -var fileDescriptor_ba827ab14a3de899 = []byte{ - // 271 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, - 0xd5, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, - 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0x29, 0xd0, - 0x03, 0x29, 0xd0, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xea, 0x83, 0x58, - 0x10, 0x85, 0x52, 0x72, 0x98, 0x26, 0x15, 0x24, 0x16, 0x25, 0xe6, 0x42, 0x0d, 0x92, 0x92, 0xc1, - 0x22, 0x0f, 0x32, 0x15, 0x2c, 0xab, 0xb4, 0x88, 0x91, 0x8b, 0xc7, 0x1d, 0x62, 0x71, 0x70, 0x49, - 0x62, 0x49, 0xaa, 0x90, 0x39, 0x17, 0x1b, 0x44, 0xbb, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, - 0xa4, 0x1e, 0x86, 0x43, 0xf4, 0x02, 0xc0, 0x0a, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, - 0x2a, 0x17, 0xb2, 0xe2, 0xe2, 0x04, 0x29, 0x8a, 0xcf, 0xc9, 0x2c, 0x2e, 0x91, 0x60, 0x52, 0x60, - 0xd6, 0xe0, 0x36, 0x12, 0xc7, 0xa6, 0x37, 0x3f, 0x3f, 0x07, 0xaa, 0x93, 0x03, 0x24, 0xe1, 0x93, - 0x59, 0x5c, 0x22, 0x24, 0xcb, 0xc5, 0x05, 0xd6, 0x9b, 0x9c, 0x5f, 0x9a, 0x57, 0x22, 0xc1, 0xac, - 0xc0, 0xa8, 0xc1, 0x12, 0x04, 0x36, 0xcd, 0x19, 0x24, 0xe0, 0xe4, 0x7c, 0xe2, 0x91, 0x1c, 0xe3, - 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, - 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x9a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, - 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, 0xc9, 0x19, - 0x89, 0x99, 0x79, 0xfa, 0x15, 0x10, 0x6f, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x3d, - 0x6c, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xc6, 0x79, 0x5b, 0xc5, 0x7a, 0x01, 0x00, 0x00, +var fileDescriptor_fea80db90b88a6ee = []byte{ + // 264 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, + 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x07, 0x49, 0xeb, 0x81, 0xa4, + 0xf5, 0xc0, 0xd2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x39, 0x7d, 0x10, 0x0b, 0xa2, 0x4c, + 0x4a, 0x06, 0xdd, 0x94, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x21, 0x52, 0x52, 0x18, 0xb2, 0x20, + 0xf3, 0xc0, 0x72, 0x4a, 0xf3, 0x18, 0xb9, 0x78, 0xdc, 0x21, 0x56, 0x06, 0x97, 0x24, 0x96, 0xa4, + 0x0a, 0x99, 0x72, 0xb1, 0x41, 0x34, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xeb, 0xa1, + 0x39, 0x41, 0x2f, 0x00, 0x2c, 0xed, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0xb1, 0x90, + 0x05, 0x17, 0x27, 0x48, 0x49, 0x7c, 0x4e, 0x66, 0x71, 0x89, 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, + 0x91, 0x28, 0xa6, 0xce, 0xfc, 0xfc, 0x1c, 0xa8, 0x3e, 0x0e, 0x90, 0xb0, 0x4f, 0x66, 0x71, 0x89, + 0x90, 0x2c, 0x17, 0x17, 0x58, 0x67, 0x72, 0x7e, 0x69, 0x5e, 0x89, 0x04, 0xb3, 0x02, 0xa3, 0x06, + 0x4b, 0x10, 0xd8, 0x2c, 0x67, 0x90, 0x80, 0x93, 0xf3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, + 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, + 0xcb, 0x31, 0x44, 0x69, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x7b, + 0x47, 0x86, 0xb9, 0xfa, 0xa5, 0x96, 0x94, 0xe7, 0x17, 0x65, 0xeb, 0x27, 0x67, 0x24, 0x66, 0xe6, + 0xe9, 0x57, 0x20, 0x79, 0x38, 0x89, 0x0d, 0xec, 0x59, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x87, 0xb9, 0x5b, 0xcd, 0x6e, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/params.pb.go b/x/pool/types/params.pb.go index 5d55ec74..6ba4f873 100644 --- a/x/pool/types/params.pb.go +++ b/x/pool/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/params.proto +// source: kyve/pool/types/params.proto package types @@ -36,7 +36,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_7d8646dfa6da3b4d, []int{0} + return fileDescriptor_6d2df93f3bff1fb6, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -66,31 +66,30 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "kyve.pool.v1beta1.Params") + proto.RegisterType((*Params)(nil), "kyve.pool.types.Params") } -func init() { proto.RegisterFile("kyve/pool/v1beta1/params.proto", fileDescriptor_7d8646dfa6da3b4d) } +func init() { proto.RegisterFile("kyve/pool/types/params.proto", fileDescriptor_6d2df93f3bff1fb6) } -var fileDescriptor_7d8646dfa6da3b4d = []byte{ - // 273 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xcf, 0x4a, 0xc3, 0x40, - 0x10, 0x87, 0xb3, 0x1e, 0x0a, 0xe6, 0x66, 0x10, 0x0d, 0x15, 0xb6, 0xa2, 0x17, 0xbd, 0xec, 0x52, - 0x7c, 0x83, 0xaa, 0x07, 0x51, 0xa4, 0x54, 0x10, 0x14, 0x24, 0x4e, 0xd6, 0x35, 0x09, 0xf9, 0x33, - 0x21, 0x3b, 0xad, 0xe6, 0x2d, 0x7c, 0xac, 0x7a, 0xeb, 0x51, 0x3c, 0x14, 0x49, 0x5e, 0x44, 0x36, - 0xb5, 0xe2, 0xd1, 0xdb, 0x30, 0xdf, 0xcc, 0x37, 0x3f, 0xc6, 0xe5, 0x69, 0x3d, 0xd3, 0xb2, 0x44, - 0xcc, 0xe4, 0x6c, 0x18, 0x6a, 0x82, 0xa1, 0x2c, 0xa1, 0x82, 0xdc, 0x88, 0xb2, 0x42, 0x42, 0x6f, - 0xcb, 0x72, 0x61, 0xb9, 0xf8, 0xe1, 0xfd, 0xed, 0x08, 0x23, 0xec, 0xa8, 0xb4, 0xd5, 0x6a, 0xf0, - 0xe0, 0x9d, 0xb9, 0xbd, 0x71, 0xb7, 0xe9, 0x3d, 0xb8, 0x7e, 0xd7, 0x53, 0x98, 0x05, 0x49, 0xf1, - 0x9c, 0x01, 0x25, 0x58, 0x04, 0x26, 0x86, 0x4a, 0xfb, 0x6c, 0x9f, 0x1d, 0x6d, 0x8e, 0x0e, 0xe7, - 0xcb, 0x81, 0xf3, 0xb9, 0x1c, 0xec, 0x29, 0x34, 0x39, 0x1a, 0xf3, 0x94, 0x8a, 0x04, 0x65, 0x0e, - 0x14, 0x8b, 0x2b, 0x1d, 0x81, 0xaa, 0xcf, 0xb4, 0x9a, 0xec, 0xac, 0x25, 0x17, 0x6b, 0xc7, 0x8d, - 0x55, 0x78, 0x8f, 0x6e, 0xdf, 0xe6, 0xf9, 0xa3, 0x2e, 0xa1, 0xc6, 0x29, 0x05, 0x15, 0x90, 0xf6, - 0x37, 0xfe, 0x7f, 0x60, 0xd7, 0x6a, 0x7e, 0xe5, 0xe3, 0x4e, 0x32, 0x01, 0xd2, 0xa3, 0xd3, 0x79, - 0xc3, 0xd9, 0xa2, 0xe1, 0xec, 0xab, 0xe1, 0xec, 0xad, 0xe5, 0xce, 0xa2, 0xe5, 0xce, 0x47, 0xcb, - 0x9d, 0xfb, 0xe3, 0x28, 0xa1, 0x78, 0x1a, 0x0a, 0x85, 0xb9, 0xbc, 0xbc, 0xbb, 0x3d, 0xbf, 0xd6, - 0xf4, 0x82, 0x55, 0x2a, 0x55, 0x0c, 0x49, 0x21, 0x5f, 0x57, 0x8f, 0xa4, 0xba, 0xd4, 0x26, 0xec, - 0x75, 0xf1, 0x4f, 0xbe, 0x03, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x3f, 0x7d, 0x42, 0x62, 0x01, 0x00, - 0x00, +var fileDescriptor_6d2df93f3bff1fb6 = []byte{ + // 267 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc9, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, + 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x07, 0xc9, 0xea, 0x81, 0x64, 0xf5, + 0xc0, 0xb2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x39, 0x7d, 0x10, 0x0b, 0xa2, 0x4c, 0xe9, + 0x24, 0x23, 0x17, 0x5b, 0x00, 0x58, 0x9f, 0x50, 0x2c, 0x97, 0x04, 0x58, 0x2c, 0x39, 0x3f, 0x27, + 0x3e, 0x33, 0x2f, 0x2d, 0x27, 0xb1, 0x24, 0x33, 0x3f, 0x2f, 0xbe, 0x38, 0x23, 0xb1, 0x28, 0x55, + 0x82, 0x51, 0x81, 0x51, 0x83, 0xd3, 0x49, 0xf9, 0xc4, 0x3d, 0x79, 0x86, 0x5b, 0xf7, 0xe4, 0xa5, + 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0x8b, 0x53, 0xb2, 0xf5, 0x32, 0xf3, 0xf5, 0x73, 0x13, 0x4b, + 0x32, 0xf4, 0x7c, 0x52, 0xd3, 0x13, 0x93, 0x2b, 0x5d, 0x52, 0x93, 0x83, 0xc4, 0x60, 0x86, 0x78, + 0xc2, 0xcc, 0x08, 0x06, 0x19, 0x21, 0x94, 0xc0, 0x25, 0x05, 0x72, 0x0d, 0x92, 0xd1, 0x05, 0x89, + 0x95, 0xf9, 0xa5, 0x25, 0xf1, 0x45, 0x89, 0x25, 0xa9, 0x12, 0x4c, 0xc4, 0x5b, 0x20, 0x0e, 0x32, + 0x06, 0x6e, 0x78, 0x00, 0xd8, 0x90, 0xa0, 0xc4, 0x92, 0x54, 0x27, 0xe7, 0x13, 0x8f, 0xe4, 0x18, + 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, + 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4c, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, + 0xcf, 0xd5, 0xf7, 0x8e, 0x0c, 0x73, 0xf5, 0x4b, 0x2d, 0x29, 0xcf, 0x2f, 0xca, 0xd6, 0x4f, 0xce, + 0x48, 0xcc, 0xcc, 0xd3, 0xaf, 0x40, 0x0a, 0xc4, 0x24, 0x36, 0xb0, 0xf3, 0x8d, 0x01, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x3c, 0xba, 0x95, 0x4a, 0x5e, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/pool.pb.go b/x/pool/types/pool.pb.go index a02bd2e7..894c51bc 100644 --- a/x/pool/types/pool.pb.go +++ b/x/pool/types/pool.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/pool.proto +// source: kyve/pool/types/pool.proto package types @@ -76,7 +76,7 @@ func (x PoolStatus) String() string { } func (PoolStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_40c1730f47ff2ef8, []int{0} + return fileDescriptor_959455a3e315373d, []int{0} } // Protocol holds all info about the current pool version and the @@ -95,7 +95,7 @@ func (m *Protocol) Reset() { *m = Protocol{} } func (m *Protocol) String() string { return proto.CompactTextString(m) } func (*Protocol) ProtoMessage() {} func (*Protocol) Descriptor() ([]byte, []int) { - return fileDescriptor_40c1730f47ff2ef8, []int{0} + return fileDescriptor_959455a3e315373d, []int{0} } func (m *Protocol) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -164,7 +164,7 @@ func (m *UpgradePlan) Reset() { *m = UpgradePlan{} } func (m *UpgradePlan) String() string { return proto.CompactTextString(m) } func (*UpgradePlan) ProtoMessage() {} func (*UpgradePlan) Descriptor() ([]byte, []int) { - return fileDescriptor_40c1730f47ff2ef8, []int{1} + return fileDescriptor_959455a3e315373d, []int{1} } func (m *UpgradePlan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -269,7 +269,7 @@ func (m *Pool) Reset() { *m = Pool{} } func (m *Pool) String() string { return proto.CompactTextString(m) } func (*Pool) ProtoMessage() {} func (*Pool) Descriptor() ([]byte, []int) { - return fileDescriptor_40c1730f47ff2ef8, []int{2} + return fileDescriptor_959455a3e315373d, []int{2} } func (m *Pool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,65 +432,65 @@ func (m *Pool) GetCurrentCompressionId() uint32 { } func init() { - proto.RegisterEnum("kyve.pool.v1beta1.PoolStatus", PoolStatus_name, PoolStatus_value) - proto.RegisterType((*Protocol)(nil), "kyve.pool.v1beta1.Protocol") - proto.RegisterType((*UpgradePlan)(nil), "kyve.pool.v1beta1.UpgradePlan") - proto.RegisterType((*Pool)(nil), "kyve.pool.v1beta1.Pool") -} - -func init() { proto.RegisterFile("kyve/pool/v1beta1/pool.proto", fileDescriptor_40c1730f47ff2ef8) } - -var fileDescriptor_40c1730f47ff2ef8 = []byte{ - // 784 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x73, 0xe3, 0x34, - 0x14, 0xc7, 0xe3, 0x6e, 0xda, 0x4d, 0x94, 0x36, 0xcd, 0x8a, 0x52, 0x44, 0xcb, 0x84, 0x6c, 0x99, - 0x85, 0xc0, 0x21, 0x99, 0x05, 0x66, 0x38, 0x71, 0x48, 0x1b, 0x6f, 0xea, 0xd9, 0x4e, 0x9c, 0xb1, - 0x93, 0xee, 0xc0, 0x45, 0xa3, 0xd8, 0x5a, 0x47, 0x53, 0xdb, 0xf2, 0xc8, 0x72, 0xb6, 0xd9, 0x23, - 0x27, 0x8e, 0xfc, 0x0f, 0xfc, 0x33, 0x1c, 0xf7, 0xc8, 0x81, 0x03, 0xd3, 0xf2, 0x87, 0x30, 0x92, - 0x7f, 0x90, 0x2d, 0x9c, 0xb8, 0xbd, 0xf7, 0xf9, 0x7e, 0x9f, 0x9e, 0x94, 0xf7, 0x1c, 0xf0, 0xc9, - 0xcd, 0x66, 0x4d, 0x87, 0x09, 0xe7, 0xe1, 0x70, 0xfd, 0x7c, 0x49, 0x25, 0x79, 0xae, 0x93, 0x41, - 0x22, 0xb8, 0xe4, 0xf0, 0x89, 0x52, 0x07, 0x1a, 0x14, 0xea, 0xc9, 0x51, 0xc0, 0x03, 0xae, 0xd5, - 0xa1, 0x8a, 0x72, 0xe3, 0x99, 0x07, 0x1a, 0x33, 0x15, 0x78, 0x3c, 0x84, 0x08, 0x3c, 0x5e, 0x53, - 0x91, 0x32, 0x1e, 0x23, 0xa3, 0x67, 0xf4, 0x9b, 0x4e, 0x99, 0xc2, 0x13, 0xd0, 0x58, 0xb2, 0x98, - 0x08, 0x46, 0x53, 0xb4, 0xa3, 0xa5, 0x2a, 0x87, 0x4f, 0xc1, 0x7e, 0x48, 0x52, 0x89, 0xb3, 0x24, - 0x10, 0xc4, 0xa7, 0xe8, 0x51, 0xcf, 0xe8, 0xd7, 0x9d, 0x96, 0x62, 0x8b, 0x1c, 0x9d, 0xfd, 0x64, - 0x80, 0x56, 0x11, 0xcf, 0x42, 0x12, 0xff, 0xff, 0x46, 0xa9, 0xb7, 0xa2, 0x7e, 0x16, 0x52, 0x1f, - 0x13, 0x59, 0x36, 0xaa, 0xd8, 0x48, 0xaa, 0x72, 0x3f, 0x13, 0x44, 0xaa, 0x93, 0xeb, 0x5a, 0xae, - 0xf2, 0xb3, 0x3f, 0x76, 0x41, 0x7d, 0xc6, 0x79, 0x08, 0xdb, 0x60, 0x87, 0xf9, 0xba, 0x71, 0xdd, - 0xd9, 0x61, 0x3e, 0x84, 0xa0, 0x1e, 0x93, 0x88, 0x16, 0xfd, 0x74, 0xac, 0x6e, 0x28, 0xb2, 0x58, - 0xb2, 0x28, 0x7f, 0x4f, 0xd3, 0x29, 0x53, 0xe5, 0x0e, 0x79, 0xc0, 0xf5, 0xf1, 0x4d, 0x47, 0xc7, - 0xf0, 0x18, 0xec, 0x79, 0x3c, 0x7e, 0xcd, 0x02, 0xb4, 0xab, 0x69, 0x91, 0xc1, 0x53, 0xd0, 0x4c, - 0x25, 0x11, 0x12, 0xdf, 0xd0, 0x0d, 0xda, 0xcb, 0x9f, 0xa3, 0xc1, 0x4b, 0xba, 0x81, 0x9f, 0x82, - 0x96, 0x97, 0x09, 0x41, 0xe3, 0x5c, 0x7e, 0xac, 0x65, 0x50, 0x20, 0x65, 0xf8, 0x02, 0x1c, 0x96, - 0x86, 0x34, 0x8b, 0x22, 0x22, 0x36, 0xa8, 0xa1, 0x4d, 0xed, 0x02, 0xbb, 0x39, 0x85, 0x9f, 0x81, - 0x83, 0xd2, 0xc8, 0x62, 0x9f, 0xde, 0xa2, 0xa6, 0x7e, 0xdb, 0x7e, 0x01, 0x2d, 0xc5, 0x94, 0x49, - 0x72, 0x49, 0x42, 0xbc, 0xcc, 0x62, 0x3f, 0xa4, 0x29, 0x02, 0xb9, 0x49, 0xc3, 0xf3, 0x9c, 0xa9, - 0x96, 0x59, 0x12, 0x72, 0xe2, 0x63, 0x16, 0x4b, 0x2a, 0xd6, 0x24, 0x44, 0x2d, 0x6d, 0x6b, 0xe7, - 0xd8, 0x2a, 0x28, 0xfc, 0x16, 0x1c, 0xb3, 0xf8, 0x75, 0xa8, 0x7f, 0x59, 0x9c, 0xae, 0x88, 0xa0, - 0xf8, 0x0d, 0x65, 0xc1, 0x4a, 0xa2, 0x7d, 0xed, 0x3f, 0xaa, 0x54, 0x57, 0x89, 0xaf, 0xb4, 0x06, - 0x9f, 0x81, 0x76, 0xc4, 0x62, 0xec, 0xd3, 0x90, 0x06, 0xf9, 0x90, 0x0e, 0xb4, 0xfb, 0x20, 0x62, - 0xf1, 0xb8, 0x82, 0xf0, 0x73, 0x70, 0x18, 0x91, 0xdb, 0xe2, 0xa2, 0x38, 0x65, 0x6f, 0x29, 0x6a, - 0x17, 0x3e, 0x72, 0x9b, 0x5f, 0xd5, 0x65, 0x6f, 0xa9, 0x9e, 0x36, 0x4b, 0xc9, 0x32, 0xa4, 0x3e, - 0x3a, 0xec, 0x19, 0xfd, 0x86, 0x53, 0xe5, 0xf0, 0x3b, 0xd0, 0x48, 0x8a, 0xbd, 0x46, 0x9d, 0x9e, - 0xd1, 0x6f, 0x7d, 0x7d, 0x3a, 0xf8, 0xd7, 0x37, 0x31, 0x28, 0x57, 0xdf, 0xa9, 0xcc, 0x70, 0x04, - 0xf6, 0x8b, 0x4d, 0xc6, 0x49, 0x48, 0x62, 0xf4, 0x44, 0x17, 0x77, 0xff, 0xa3, 0x78, 0x6b, 0xa3, - 0x9d, 0x56, 0xb6, 0xb5, 0xde, 0xdf, 0x83, 0xd3, 0x6a, 0x70, 0x92, 0x0b, 0x12, 0x50, 0x9c, 0x08, - 0xbe, 0x66, 0x3e, 0x15, 0x98, 0xf9, 0x08, 0xf6, 0x8c, 0xfe, 0x81, 0x83, 0xca, 0x21, 0xe6, 0x8e, - 0x59, 0x61, 0xb0, 0x7c, 0xf5, 0xdb, 0x96, 0xe5, 0x1e, 0x8f, 0x12, 0x41, 0x53, 0xf5, 0x69, 0xa8, - 0xca, 0x0f, 0x74, 0xe5, 0x51, 0xa1, 0x5e, 0xfc, 0x23, 0x5a, 0xfe, 0x57, 0x7f, 0x19, 0x00, 0xa8, - 0xf5, 0x76, 0x25, 0x91, 0x59, 0x0a, 0x4f, 0xc1, 0x47, 0x33, 0xdb, 0xbe, 0xc2, 0xee, 0x7c, 0x34, - 0x5f, 0xb8, 0x78, 0x31, 0x75, 0x67, 0xe6, 0x85, 0xf5, 0xc2, 0x32, 0xc7, 0x9d, 0x1a, 0x3c, 0x06, - 0x70, 0x5b, 0x1c, 0x5d, 0xcc, 0xad, 0x6b, 0xb3, 0x63, 0x40, 0x04, 0x8e, 0xb6, 0xf9, 0xd8, 0x72, - 0x47, 0xe7, 0x57, 0xe6, 0xb8, 0xb3, 0xf3, 0x50, 0x99, 0xda, 0xf8, 0xc5, 0x62, 0x3a, 0x76, 0x3b, - 0x8f, 0xe0, 0x33, 0xf0, 0xf4, 0x7d, 0x65, 0x8e, 0xcd, 0xa9, 0xbd, 0x98, 0x5c, 0xe2, 0xb1, 0x79, - 0x65, 0x4e, 0x46, 0x73, 0xcb, 0x9e, 0x76, 0xea, 0xf0, 0x63, 0xf0, 0xe1, 0x7b, 0xf7, 0x99, 0x4d, - 0x9c, 0xd1, 0xd8, 0x9a, 0x4e, 0x3a, 0xbb, 0x0f, 0x4f, 0xb8, 0xb6, 0xe7, 0xd6, 0x74, 0x82, 0x67, - 0xf6, 0x2b, 0xd3, 0xc1, 0x73, 0xdb, 0xc6, 0x97, 0xd6, 0xe4, 0xb2, 0xb3, 0x77, 0x52, 0xff, 0xf9, - 0xd7, 0x6e, 0xed, 0xfc, 0xe2, 0xb7, 0xbb, 0xae, 0xf1, 0xee, 0xae, 0x6b, 0xfc, 0x79, 0xd7, 0x35, - 0x7e, 0xb9, 0xef, 0xd6, 0xde, 0xdd, 0x77, 0x6b, 0xbf, 0xdf, 0x77, 0x6b, 0x3f, 0x7e, 0x19, 0x30, - 0xb9, 0xca, 0x96, 0x03, 0x8f, 0x47, 0xc3, 0x97, 0x3f, 0x5c, 0x9b, 0x53, 0x2a, 0xdf, 0x70, 0x71, - 0x33, 0xf4, 0x56, 0x84, 0xc5, 0xc3, 0xdb, 0xfc, 0xaf, 0x52, 0x6e, 0x12, 0x9a, 0x2e, 0xf7, 0xf4, - 0xb4, 0xbf, 0xf9, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x76, 0xe7, 0x4a, 0x49, 0x44, 0x05, 0x00, 0x00, + proto.RegisterEnum("kyve.pool.types.PoolStatus", PoolStatus_name, PoolStatus_value) + proto.RegisterType((*Protocol)(nil), "kyve.pool.types.Protocol") + proto.RegisterType((*UpgradePlan)(nil), "kyve.pool.types.UpgradePlan") + proto.RegisterType((*Pool)(nil), "kyve.pool.types.Pool") +} + +func init() { proto.RegisterFile("kyve/pool/types/pool.proto", fileDescriptor_959455a3e315373d) } + +var fileDescriptor_959455a3e315373d = []byte{ + // 777 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcd, 0x6e, 0xe3, 0x36, + 0x10, 0xc7, 0xad, 0xac, 0x93, 0xb5, 0xe9, 0xc4, 0x71, 0xd9, 0x34, 0xe5, 0x26, 0x85, 0xeb, 0x4d, + 0xb1, 0xad, 0xdb, 0x83, 0x0d, 0xf4, 0xe3, 0x58, 0x14, 0x4e, 0xac, 0x75, 0x84, 0x0d, 0x2c, 0x43, + 0xb2, 0xb3, 0x68, 0x2f, 0x04, 0x2d, 0x71, 0x65, 0x22, 0x92, 0x28, 0x50, 0x54, 0xd6, 0xde, 0x63, + 0x4f, 0x3d, 0xf6, 0x1d, 0xfa, 0x32, 0x3d, 0xee, 0x71, 0x8f, 0x45, 0xd2, 0x07, 0x29, 0x48, 0x7d, + 0xd4, 0x49, 0x6f, 0xbd, 0xcd, 0xfc, 0xfe, 0xff, 0xe1, 0x90, 0x9e, 0x91, 0xc1, 0xc9, 0xcd, 0xe6, + 0x96, 0x0e, 0x13, 0xce, 0xc3, 0xa1, 0xdc, 0x24, 0x34, 0xd5, 0xe1, 0x20, 0x11, 0x5c, 0x72, 0x78, + 0xa8, 0xb4, 0x81, 0x06, 0x5a, 0x3b, 0x39, 0x0a, 0x78, 0xc0, 0xb5, 0x36, 0x54, 0x51, 0x6e, 0x3b, + 0xf3, 0x40, 0x63, 0xa6, 0x02, 0x8f, 0x87, 0x10, 0x81, 0xa7, 0xb7, 0x54, 0xa4, 0x8c, 0xc7, 0xc8, + 0xe8, 0x19, 0xfd, 0xa6, 0x53, 0xa6, 0xf0, 0x04, 0x34, 0x96, 0x2c, 0x26, 0x82, 0xd1, 0x14, 0xed, + 0x68, 0xa9, 0xca, 0xe1, 0x73, 0xb0, 0x1f, 0x92, 0x54, 0xe2, 0x2c, 0x09, 0x04, 0xf1, 0x29, 0x7a, + 0xd2, 0x33, 0xfa, 0x75, 0xa7, 0xa5, 0xd8, 0x22, 0x47, 0x67, 0xbf, 0x1a, 0xa0, 0x55, 0xc4, 0xb3, + 0x90, 0xc4, 0xff, 0xbf, 0x51, 0xea, 0xad, 0xa8, 0x9f, 0x85, 0xd4, 0xc7, 0x44, 0x96, 0x8d, 0x2a, + 0x36, 0x92, 0xaa, 0xdc, 0xcf, 0x04, 0x91, 0xea, 0xe4, 0xba, 0x96, 0xab, 0xfc, 0xec, 0xc3, 0x2e, + 0xa8, 0xcf, 0x38, 0x0f, 0x61, 0x1b, 0xec, 0x30, 0x5f, 0x37, 0xae, 0x3b, 0x3b, 0xcc, 0x87, 0x10, + 0xd4, 0x63, 0x12, 0xd1, 0xa2, 0x9f, 0x8e, 0xd5, 0x0d, 0x45, 0x16, 0x4b, 0x16, 0xe5, 0xef, 0x69, + 0x3a, 0x65, 0xaa, 0xdc, 0x21, 0x0f, 0xb8, 0x3e, 0xbe, 0xe9, 0xe8, 0x18, 0x1e, 0x83, 0x3d, 0x8f, + 0xc7, 0x6f, 0x58, 0x80, 0x76, 0x35, 0x2d, 0x32, 0x78, 0x0a, 0x9a, 0xa9, 0x24, 0x42, 0xe2, 0x1b, + 0xba, 0x41, 0x7b, 0xf9, 0x73, 0x34, 0x78, 0x45, 0x37, 0xf0, 0x73, 0xd0, 0xf2, 0x32, 0x21, 0x68, + 0x9c, 0xcb, 0x4f, 0xb5, 0x0c, 0x0a, 0xa4, 0x0c, 0x5f, 0x81, 0xc3, 0xd2, 0x90, 0x66, 0x51, 0x44, + 0xc4, 0x06, 0x35, 0xb4, 0xa9, 0x5d, 0x60, 0x37, 0xa7, 0xf0, 0x0b, 0x70, 0x50, 0x1a, 0x59, 0xec, + 0xd3, 0x35, 0x6a, 0xea, 0xb7, 0xed, 0x17, 0xd0, 0x52, 0x4c, 0x99, 0x24, 0x97, 0x24, 0xc4, 0xcb, + 0x2c, 0xf6, 0x43, 0x9a, 0x22, 0x90, 0x9b, 0x34, 0x3c, 0xcf, 0x99, 0x6a, 0x99, 0x25, 0x21, 0x27, + 0x3e, 0x66, 0xb1, 0xa4, 0xe2, 0x96, 0x84, 0xa8, 0xa5, 0x6d, 0xed, 0x1c, 0x5b, 0x05, 0x85, 0xdf, + 0x83, 0x63, 0x16, 0xbf, 0x09, 0xf5, 0x2f, 0x8b, 0xd3, 0x15, 0x11, 0x14, 0xbf, 0xa5, 0x2c, 0x58, + 0x49, 0xb4, 0xaf, 0xfd, 0x47, 0x95, 0xea, 0x2a, 0xf1, 0xb5, 0xd6, 0xe0, 0x0b, 0xd0, 0x8e, 0x58, + 0x8c, 0x7d, 0x1a, 0xd2, 0x20, 0x1f, 0xd2, 0x81, 0x76, 0x1f, 0x44, 0x2c, 0x1e, 0x57, 0x10, 0x7e, + 0x09, 0x0e, 0x23, 0xb2, 0x2e, 0x2e, 0x8a, 0x53, 0xf6, 0x8e, 0xa2, 0x76, 0xe1, 0x23, 0xeb, 0xfc, + 0xaa, 0x2e, 0x7b, 0x47, 0xf5, 0xb4, 0x59, 0x4a, 0x96, 0x21, 0xf5, 0xd1, 0x61, 0xcf, 0xe8, 0x37, + 0x9c, 0x2a, 0x87, 0x3f, 0x80, 0x46, 0x52, 0xec, 0x35, 0xea, 0xf4, 0x8c, 0x7e, 0xeb, 0xdb, 0x67, + 0x83, 0x47, 0x5f, 0xc4, 0xa0, 0x5c, 0x7c, 0xa7, 0xb2, 0xc2, 0x9f, 0xc0, 0x7e, 0xb1, 0xc7, 0x38, + 0x09, 0x49, 0x8c, 0x3e, 0xd2, 0xa5, 0x9f, 0xfd, 0xa7, 0x74, 0x6b, 0x9b, 0x9d, 0x56, 0xb6, 0xb5, + 0xda, 0x3f, 0x82, 0xd3, 0x6a, 0x68, 0x92, 0x0b, 0x12, 0x50, 0x9c, 0x08, 0x7e, 0xcb, 0x7c, 0x2a, + 0x30, 0xf3, 0x11, 0xec, 0x19, 0xfd, 0x03, 0x07, 0x95, 0x03, 0xcc, 0x1d, 0xb3, 0xc2, 0x60, 0xf9, + 0xea, 0x77, 0x2d, 0xcb, 0x3d, 0x1e, 0x25, 0x82, 0xa6, 0xea, 0xb3, 0x50, 0x95, 0x1f, 0xeb, 0xca, + 0xa3, 0x42, 0xbd, 0xf8, 0x57, 0xb4, 0xfc, 0x6f, 0xfe, 0x36, 0x00, 0x50, 0xab, 0xed, 0x4a, 0x22, + 0xb3, 0x14, 0x9e, 0x82, 0x4f, 0x67, 0xb6, 0x7d, 0x85, 0xdd, 0xf9, 0x68, 0xbe, 0x70, 0xf1, 0x62, + 0xea, 0xce, 0xcc, 0x0b, 0xeb, 0xa5, 0x65, 0x8e, 0x3b, 0x35, 0x78, 0x0c, 0xe0, 0xb6, 0x38, 0xba, + 0x98, 0x5b, 0xd7, 0x66, 0xc7, 0x80, 0x08, 0x1c, 0x6d, 0xf3, 0xb1, 0xe5, 0x8e, 0xce, 0xaf, 0xcc, + 0x71, 0x67, 0xe7, 0xb1, 0x32, 0xb5, 0xf1, 0xcb, 0xc5, 0x74, 0xec, 0x76, 0x9e, 0xc0, 0x17, 0xe0, + 0xf9, 0x43, 0x65, 0x8e, 0xcd, 0xa9, 0xbd, 0x98, 0x5c, 0xe2, 0xb1, 0x79, 0x65, 0x4e, 0x46, 0x73, + 0xcb, 0x9e, 0x76, 0xea, 0xf0, 0x19, 0xf8, 0xe4, 0xc1, 0x7d, 0x66, 0x13, 0x67, 0x34, 0xb6, 0xa6, + 0x93, 0xce, 0xee, 0xe3, 0x13, 0xae, 0xed, 0xb9, 0x35, 0x9d, 0xe0, 0x99, 0xfd, 0xda, 0x74, 0xf0, + 0xdc, 0xb6, 0xf1, 0xa5, 0x35, 0xb9, 0xec, 0xec, 0x9d, 0xd4, 0x7f, 0xfb, 0xa3, 0x5b, 0x3b, 0xbf, + 0xf8, 0xf3, 0xae, 0x6b, 0xbc, 0xbf, 0xeb, 0x1a, 0x7f, 0xdd, 0x75, 0x8d, 0xdf, 0xef, 0xbb, 0xb5, + 0xf7, 0xf7, 0xdd, 0xda, 0x87, 0xfb, 0x6e, 0xed, 0x97, 0xaf, 0x03, 0x26, 0x57, 0xd9, 0x72, 0xe0, + 0xf1, 0x68, 0xf8, 0xea, 0xe7, 0x6b, 0x73, 0x4a, 0xe5, 0x5b, 0x2e, 0x6e, 0x86, 0xde, 0x8a, 0xb0, + 0x78, 0xb8, 0xde, 0xfa, 0x8b, 0x5c, 0xee, 0xe9, 0x59, 0x7f, 0xf7, 0x4f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x62, 0xd2, 0x3f, 0xa7, 0x3c, 0x05, 0x00, 0x00, } func (m *Protocol) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/query.pb.go b/x/pool/types/query.pb.go index 7d9c678c..6f8db88c 100644 --- a/x/pool/types/query.pb.go +++ b/x/pool/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/query.proto +// source: kyve/pool/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_9c2f559babbc8665, []int{0} + return fileDescriptor_4b4b02c84670a59a, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_9c2f559babbc8665, []int{1} + return fileDescriptor_4b4b02c84670a59a, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,32 +113,32 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.pool.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.pool.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.pool.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.pool.types.QueryParamsResponse") } -func init() { proto.RegisterFile("kyve/pool/v1beta1/query.proto", fileDescriptor_9c2f559babbc8665) } +func init() { proto.RegisterFile("kyve/pool/types/query.proto", fileDescriptor_4b4b02c84670a59a) } -var fileDescriptor_9c2f559babbc8665 = []byte{ +var fileDescriptor_4b4b02c84670a59a = []byte{ // 284 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0xae, 0x2c, 0x4b, - 0xd5, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x2c, - 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0x49, 0xeb, 0x81, 0xa4, - 0xf5, 0xa0, 0xd2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x59, 0x7d, 0x10, 0x0b, 0xa2, 0x50, - 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, 0x2f, - 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x2a, 0x2b, 0x87, 0x69, 0x4b, 0x41, 0x62, 0x51, - 0x62, 0x2e, 0x54, 0x5e, 0x49, 0x84, 0x4b, 0x28, 0x10, 0x64, 0x6b, 0x00, 0x58, 0x30, 0x28, 0xb5, - 0xb0, 0x34, 0xb5, 0xb8, 0x44, 0xc9, 0x8f, 0x4b, 0x18, 0x45, 0xb4, 0xb8, 0x20, 0x3f, 0xaf, 0x38, - 0x55, 0xc8, 0x9c, 0x8b, 0x0d, 0xa2, 0x59, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x52, 0x0f, - 0xc3, 0x91, 0x7a, 0x10, 0x2d, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x95, 0x1b, 0x35, - 0x33, 0x72, 0xb1, 0x82, 0x0d, 0x14, 0xaa, 0xe2, 0x62, 0x83, 0xa8, 0x10, 0x52, 0xc5, 0xa2, 0x19, - 0xd3, 0x29, 0x52, 0x6a, 0x84, 0x94, 0x41, 0xdc, 0xa6, 0xa4, 0xd8, 0x74, 0xf9, 0xc9, 0x64, 0x26, - 0x69, 0x21, 0x49, 0x7d, 0x5c, 0x3e, 0x76, 0x72, 0x3e, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, - 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, - 0x39, 0x86, 0x28, 0xcd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xef, - 0xc8, 0x30, 0x57, 0xbf, 0xd4, 0x92, 0xf2, 0xfc, 0xa2, 0x6c, 0xfd, 0xe4, 0x8c, 0xc4, 0xcc, 0x3c, - 0xfd, 0x0a, 0x88, 0x69, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x70, 0x33, 0x06, 0x04, - 0x00, 0x00, 0xff, 0xff, 0x09, 0x81, 0xd4, 0xe5, 0xbf, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xce, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, 0x2c, 0x4d, 0x2d, + 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x07, 0x49, 0xea, 0x81, 0x24, 0xf5, 0xc0, + 0x92, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x39, 0x7d, 0x10, 0x0b, 0xa2, 0x4c, 0x4a, 0x26, + 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, 0x2f, 0xbf, 0x24, + 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x26, 0x8b, 0x6e, 0x43, 0x41, 0x62, 0x51, 0x62, 0x2e, 0x54, + 0x56, 0x49, 0x84, 0x4b, 0x28, 0x10, 0x64, 0x63, 0x00, 0x58, 0x30, 0x28, 0xb5, 0xb0, 0x34, 0xb5, + 0xb8, 0x44, 0xc9, 0x87, 0x4b, 0x18, 0x45, 0xb4, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, 0xc8, 0x94, + 0x8b, 0x0d, 0xa2, 0x59, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x5c, 0x0f, 0xcd, 0x81, 0x7a, + 0x10, 0x0d, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x15, 0x1b, 0xd5, 0x73, 0xb1, 0x82, + 0x4d, 0x13, 0x2a, 0xe3, 0x62, 0x83, 0x28, 0x10, 0x52, 0xc6, 0xd0, 0x89, 0xe9, 0x0a, 0x29, 0x15, + 0xfc, 0x8a, 0x20, 0x8e, 0x52, 0x52, 0x6c, 0xba, 0xfc, 0x64, 0x32, 0x93, 0xb4, 0x90, 0xa4, 0x3e, + 0xc2, 0xa3, 0x65, 0x86, 0x49, 0xa9, 0x25, 0x89, 0x86, 0x50, 0xaf, 0x3a, 0x39, 0x9f, 0x78, 0x24, + 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, + 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x66, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0xbe, 0x77, 0x64, 0x98, 0xab, 0x5f, 0x6a, 0x49, 0x79, 0x7e, 0x51, 0xb6, 0x7e, + 0x72, 0x46, 0x62, 0x66, 0x9e, 0x7e, 0x05, 0x52, 0xb0, 0x25, 0xb1, 0x81, 0x03, 0xcc, 0x18, 0x10, + 0x00, 0x00, 0xff, 0xff, 0x91, 0x5c, 0xdd, 0xd3, 0xb2, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -167,7 +167,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -202,7 +202,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Query/Params", + FullMethod: "/kyve.pool.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -211,7 +211,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.pool.v1beta1.Query", + ServiceName: "kyve.pool.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -220,7 +220,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/pool/v1beta1/query.proto", + Metadata: "kyve/pool/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/pool/types/query.pb.gw.go b/x/pool/types/query.pb.gw.go index 000d5948..23c950b4 100644 --- a/x/pool/types/query.pb.gw.go +++ b/x/pool/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/pool/v1beta1/query.proto +// source: kyve/pool/types/query.proto /* Package types is a reverse proxy. diff --git a/x/pool/types/tx.pb.go b/x/pool/types/tx.pb.go index f7c6ab36..0185fcc7 100644 --- a/x/pool/types/tx.pb.go +++ b/x/pool/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/pool/v1beta1/tx.proto +// source: kyve/pool/types/tx.proto package types @@ -65,7 +65,7 @@ func (m *MsgCreatePool) Reset() { *m = MsgCreatePool{} } func (m *MsgCreatePool) String() string { return proto.CompactTextString(m) } func (*MsgCreatePool) ProtoMessage() {} func (*MsgCreatePool) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{0} + return fileDescriptor_f11824f4fe1b9815, []int{0} } func (m *MsgCreatePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,7 +200,7 @@ func (m *MsgCreatePoolResponse) Reset() { *m = MsgCreatePoolResponse{} } func (m *MsgCreatePoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreatePoolResponse) ProtoMessage() {} func (*MsgCreatePoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{1} + return fileDescriptor_f11824f4fe1b9815, []int{1} } func (m *MsgCreatePoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -243,7 +243,7 @@ func (m *MsgUpdatePool) Reset() { *m = MsgUpdatePool{} } func (m *MsgUpdatePool) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePool) ProtoMessage() {} func (*MsgUpdatePool) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{2} + return fileDescriptor_f11824f4fe1b9815, []int{2} } func (m *MsgUpdatePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -301,7 +301,7 @@ func (m *MsgUpdatePoolResponse) Reset() { *m = MsgUpdatePoolResponse{} } func (m *MsgUpdatePoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdatePoolResponse) ProtoMessage() {} func (*MsgUpdatePoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{3} + return fileDescriptor_f11824f4fe1b9815, []int{3} } func (m *MsgUpdatePoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -342,7 +342,7 @@ func (m *MsgDisablePool) Reset() { *m = MsgDisablePool{} } func (m *MsgDisablePool) String() string { return proto.CompactTextString(m) } func (*MsgDisablePool) ProtoMessage() {} func (*MsgDisablePool) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{4} + return fileDescriptor_f11824f4fe1b9815, []int{4} } func (m *MsgDisablePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -393,7 +393,7 @@ func (m *MsgDisablePoolResponse) Reset() { *m = MsgDisablePoolResponse{} func (m *MsgDisablePoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgDisablePoolResponse) ProtoMessage() {} func (*MsgDisablePoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{5} + return fileDescriptor_f11824f4fe1b9815, []int{5} } func (m *MsgDisablePoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -434,7 +434,7 @@ func (m *MsgEnablePool) Reset() { *m = MsgEnablePool{} } func (m *MsgEnablePool) String() string { return proto.CompactTextString(m) } func (*MsgEnablePool) ProtoMessage() {} func (*MsgEnablePool) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{6} + return fileDescriptor_f11824f4fe1b9815, []int{6} } func (m *MsgEnablePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -485,7 +485,7 @@ func (m *MsgEnablePoolResponse) Reset() { *m = MsgEnablePoolResponse{} } func (m *MsgEnablePoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgEnablePoolResponse) ProtoMessage() {} func (*MsgEnablePoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{7} + return fileDescriptor_f11824f4fe1b9815, []int{7} } func (m *MsgEnablePoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -534,7 +534,7 @@ func (m *MsgScheduleRuntimeUpgrade) Reset() { *m = MsgScheduleRuntimeUpg func (m *MsgScheduleRuntimeUpgrade) String() string { return proto.CompactTextString(m) } func (*MsgScheduleRuntimeUpgrade) ProtoMessage() {} func (*MsgScheduleRuntimeUpgrade) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{8} + return fileDescriptor_f11824f4fe1b9815, []int{8} } func (m *MsgScheduleRuntimeUpgrade) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -613,7 +613,7 @@ func (m *MsgScheduleRuntimeUpgradeResponse) Reset() { *m = MsgScheduleRu func (m *MsgScheduleRuntimeUpgradeResponse) String() string { return proto.CompactTextString(m) } func (*MsgScheduleRuntimeUpgradeResponse) ProtoMessage() {} func (*MsgScheduleRuntimeUpgradeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{9} + return fileDescriptor_f11824f4fe1b9815, []int{9} } func (m *MsgScheduleRuntimeUpgradeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -654,7 +654,7 @@ func (m *MsgCancelRuntimeUpgrade) Reset() { *m = MsgCancelRuntimeUpgrade func (m *MsgCancelRuntimeUpgrade) String() string { return proto.CompactTextString(m) } func (*MsgCancelRuntimeUpgrade) ProtoMessage() {} func (*MsgCancelRuntimeUpgrade) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{10} + return fileDescriptor_f11824f4fe1b9815, []int{10} } func (m *MsgCancelRuntimeUpgrade) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -705,7 +705,7 @@ func (m *MsgCancelRuntimeUpgradeResponse) Reset() { *m = MsgCancelRuntim func (m *MsgCancelRuntimeUpgradeResponse) String() string { return proto.CompactTextString(m) } func (*MsgCancelRuntimeUpgradeResponse) ProtoMessage() {} func (*MsgCancelRuntimeUpgradeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{11} + return fileDescriptor_f11824f4fe1b9815, []int{11} } func (m *MsgCancelRuntimeUpgradeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -746,7 +746,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{12} + return fileDescriptor_f11824f4fe1b9815, []int{12} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -797,7 +797,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_20ddefdf83388ddc, []int{13} + return fileDescriptor_f11824f4fe1b9815, []int{13} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -827,80 +827,79 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreatePool)(nil), "kyve.pool.v1beta1.MsgCreatePool") - proto.RegisterType((*MsgCreatePoolResponse)(nil), "kyve.pool.v1beta1.MsgCreatePoolResponse") - proto.RegisterType((*MsgUpdatePool)(nil), "kyve.pool.v1beta1.MsgUpdatePool") - proto.RegisterType((*MsgUpdatePoolResponse)(nil), "kyve.pool.v1beta1.MsgUpdatePoolResponse") - proto.RegisterType((*MsgDisablePool)(nil), "kyve.pool.v1beta1.MsgDisablePool") - proto.RegisterType((*MsgDisablePoolResponse)(nil), "kyve.pool.v1beta1.MsgDisablePoolResponse") - proto.RegisterType((*MsgEnablePool)(nil), "kyve.pool.v1beta1.MsgEnablePool") - proto.RegisterType((*MsgEnablePoolResponse)(nil), "kyve.pool.v1beta1.MsgEnablePoolResponse") - proto.RegisterType((*MsgScheduleRuntimeUpgrade)(nil), "kyve.pool.v1beta1.MsgScheduleRuntimeUpgrade") - proto.RegisterType((*MsgScheduleRuntimeUpgradeResponse)(nil), "kyve.pool.v1beta1.MsgScheduleRuntimeUpgradeResponse") - proto.RegisterType((*MsgCancelRuntimeUpgrade)(nil), "kyve.pool.v1beta1.MsgCancelRuntimeUpgrade") - proto.RegisterType((*MsgCancelRuntimeUpgradeResponse)(nil), "kyve.pool.v1beta1.MsgCancelRuntimeUpgradeResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.pool.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.pool.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/pool/v1beta1/tx.proto", fileDescriptor_20ddefdf83388ddc) } - -var fileDescriptor_20ddefdf83388ddc = []byte{ - // 851 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0xdb, 0x36, - 0x14, 0x8e, 0x1c, 0x27, 0x4d, 0x98, 0xd8, 0x41, 0xb9, 0x2c, 0x61, 0x34, 0xc0, 0x8b, 0x3d, 0x6c, - 0x73, 0x8d, 0xcd, 0x42, 0xba, 0x62, 0x87, 0xdd, 0x9a, 0xb6, 0x87, 0xa0, 0xf0, 0x50, 0xc8, 0xe8, - 0x7e, 0x02, 0x13, 0x68, 0x93, 0x95, 0x89, 0x48, 0xa2, 0x40, 0xd2, 0xae, 0xdd, 0xed, 0xb0, 0xed, - 0xb6, 0xdb, 0xfe, 0x94, 0x1e, 0xf6, 0x47, 0xec, 0x32, 0xa0, 0xd8, 0x69, 0xc7, 0x21, 0x39, 0xf4, - 0xbe, 0xbf, 0x60, 0x20, 0x25, 0xcb, 0x12, 0x6c, 0x35, 0xdb, 0xba, 0x9c, 0xec, 0xf7, 0xbe, 0x4f, - 0x7c, 0x1f, 0x1f, 0xdf, 0x47, 0x09, 0xd8, 0xe7, 0xb3, 0x09, 0x75, 0x62, 0xce, 0x03, 0x67, 0x72, - 0x32, 0xa0, 0x0a, 0x9f, 0x38, 0x6a, 0xda, 0x8d, 0x05, 0x57, 0x1c, 0xde, 0xd4, 0x58, 0x57, 0x63, - 0xdd, 0x14, 0xb3, 0x0f, 0x87, 0x5c, 0x86, 0x5c, 0x3a, 0xa1, 0xf4, 0x9d, 0xc9, 0x89, 0xfe, 0x49, - 0xb8, 0xf6, 0x51, 0x02, 0x78, 0x26, 0x72, 0x92, 0x20, 0x81, 0x5a, 0x3f, 0x55, 0x41, 0xad, 0x27, - 0xfd, 0x7b, 0x82, 0x62, 0x45, 0x1f, 0x71, 0x1e, 0xc0, 0x8f, 0xc1, 0x36, 0x1e, 0xab, 0x11, 0x17, - 0x4c, 0xcd, 0x90, 0x75, 0x6c, 0xb5, 0xb7, 0x4f, 0xd1, 0xef, 0xbf, 0x7c, 0xb8, 0x9f, 0x3e, 0x76, - 0x97, 0x10, 0x41, 0xa5, 0xec, 0x2b, 0xc1, 0x22, 0xdf, 0x5d, 0x50, 0x21, 0x04, 0xd5, 0x08, 0x87, - 0x14, 0x55, 0xf4, 0x23, 0xae, 0xf9, 0x0f, 0x11, 0xb8, 0x21, 0xc6, 0x91, 0x62, 0x21, 0x45, 0xeb, - 0x26, 0x3d, 0x0f, 0x35, 0x3b, 0xe0, 0x3e, 0x47, 0xd5, 0x84, 0xad, 0xff, 0xc3, 0x03, 0xb0, 0x39, - 0xe4, 0xd1, 0x13, 0xe6, 0xa3, 0x0d, 0x93, 0x4d, 0x23, 0xf8, 0x16, 0xd8, 0x96, 0x0a, 0x0b, 0xe5, - 0x9d, 0xd3, 0x19, 0xda, 0x34, 0xd0, 0x96, 0x49, 0x3c, 0xa4, 0x33, 0xf8, 0x3e, 0xd8, 0x1b, 0xc7, - 0x01, 0xc7, 0xc4, 0x63, 0x91, 0xa2, 0x62, 0x82, 0x03, 0x74, 0xe3, 0xd8, 0x6a, 0x57, 0xdd, 0x7a, - 0x92, 0x3e, 0x4b, 0xb3, 0xf0, 0x0e, 0x38, 0x60, 0xd1, 0x93, 0x00, 0x2b, 0xc6, 0x23, 0x4f, 0x8e, - 0xb0, 0xa0, 0xde, 0x53, 0xca, 0xfc, 0x91, 0x42, 0x5b, 0x86, 0xbf, 0x9f, 0xa1, 0x7d, 0x0d, 0x7e, - 0x6e, 0x30, 0xf8, 0x2e, 0xa8, 0x87, 0x2c, 0xf2, 0x08, 0x0d, 0xa8, 0x6f, 0x40, 0xb4, 0x6d, 0xd8, - 0xb5, 0x90, 0x45, 0xf7, 0xb3, 0x24, 0x7c, 0x0f, 0xec, 0x85, 0x78, 0xea, 0x0d, 0xc6, 0x11, 0x09, - 0xa8, 0x27, 0xd9, 0x33, 0x8a, 0x40, 0xca, 0xc3, 0xd3, 0x53, 0x93, 0xed, 0xb3, 0x67, 0xa6, 0x21, - 0x13, 0x2a, 0xa4, 0x5e, 0x67, 0x27, 0x69, 0x48, 0x1a, 0x42, 0x1b, 0x6c, 0x0d, 0x58, 0x84, 0x05, - 0xa3, 0x12, 0xed, 0x26, 0x7b, 0x9c, 0xc7, 0xb0, 0x0b, 0xde, 0x90, 0x8a, 0x0b, 0xec, 0x53, 0x7d, - 0x84, 0x13, 0x46, 0xa8, 0xf0, 0x18, 0x41, 0xb5, 0x63, 0xab, 0x5d, 0x73, 0x6f, 0xa6, 0xd0, 0xa3, - 0x14, 0x39, 0x23, 0x5a, 0xf4, 0x90, 0x87, 0xb1, 0x3e, 0x27, 0xbd, 0x59, 0x46, 0x50, 0xdd, 0x50, - 0x6b, 0xb9, 0xec, 0x19, 0xf9, 0xa4, 0xfe, 0xe3, 0xcb, 0xe7, 0x9d, 0xc5, 0x09, 0xb6, 0x0e, 0xc1, - 0x9b, 0x85, 0x51, 0x70, 0xa9, 0x8c, 0x79, 0x24, 0x69, 0xeb, 0x07, 0xcb, 0x0c, 0xc9, 0xe3, 0x98, - 0xbc, 0xee, 0x90, 0xd4, 0x41, 0x85, 0x11, 0x33, 0x22, 0x55, 0xb7, 0xc2, 0x88, 0xee, 0x47, 0x8c, - 0x67, 0xfa, 0x9c, 0xe6, 0x03, 0x92, 0x86, 0x25, 0xe2, 0x16, 0x12, 0x32, 0x71, 0x23, 0x50, 0xef, - 0x49, 0xff, 0x3e, 0x93, 0x78, 0x10, 0xfc, 0xaf, 0xe2, 0x96, 0x24, 0x20, 0x70, 0x50, 0xac, 0x94, - 0x69, 0xf0, 0x4d, 0x7f, 0x1e, 0x44, 0xd7, 0x2e, 0x21, 0xe9, 0xc2, 0xa2, 0x50, 0xa6, 0xe0, 0x2f, - 0x0b, 0x1c, 0xf5, 0xa4, 0xdf, 0x1f, 0x8e, 0x28, 0x19, 0x07, 0xd4, 0x4d, 0x6c, 0xf6, 0x38, 0xf6, - 0x05, 0x26, 0xf4, 0x3f, 0xcb, 0xc9, 0xf9, 0xb7, 0x52, 0xf4, 0x6f, 0x6e, 0x90, 0xd7, 0x8b, 0x83, - 0xdc, 0x04, 0xbb, 0x32, 0x55, 0x41, 0x3c, 0xac, 0x8c, 0xc3, 0xab, 0xee, 0x4e, 0x96, 0xbb, 0xab, - 0xf4, 0xac, 0x93, 0xb1, 0x48, 0xec, 0xb4, 0x61, 0xe0, 0x2c, 0x2e, 0xf8, 0x60, 0xb3, 0xe8, 0x83, - 0xa5, 0x6e, 0xbc, 0x03, 0x9a, 0xa5, 0x7b, 0xce, 0x3a, 0xf3, 0x2d, 0x38, 0xd4, 0x53, 0x8d, 0xa3, - 0x21, 0x0d, 0xae, 0xbb, 0x2d, 0x4b, 0x0a, 0x9b, 0xe0, 0xed, 0x92, 0xe2, 0x99, 0x3e, 0x09, 0xf6, - 0x16, 0x83, 0x8d, 0x05, 0x0e, 0xe5, 0xeb, 0xe8, 0x9a, 0xbb, 0xa9, 0xf2, 0x6a, 0x37, 0x1d, 0x99, - 0xa6, 0xe4, 0x8b, 0xce, 0xf5, 0xdc, 0xfe, 0x6d, 0x03, 0xac, 0xf7, 0xa4, 0x0f, 0xbf, 0x00, 0x20, - 0xf7, 0x56, 0x38, 0xee, 0x2e, 0xbd, 0x6f, 0xba, 0x85, 0xcb, 0xc2, 0x6e, 0x5f, 0xc5, 0x98, 0x57, - 0xd0, 0x2b, 0xe7, 0xae, 0x92, 0x92, 0x95, 0x17, 0x8c, 0xb2, 0x95, 0x97, 0xef, 0x02, 0xf8, 0x35, - 0xd8, 0xc9, 0x5f, 0x04, 0xcd, 0xd5, 0x0f, 0xe6, 0x28, 0xf6, 0xad, 0x2b, 0x29, 0x79, 0xd9, 0x39, - 0x87, 0x97, 0xc8, 0x5e, 0x30, 0xca, 0x64, 0x2f, 0x9b, 0x17, 0x7e, 0x07, 0x0e, 0x4a, 0x8c, 0xfb, - 0xc1, 0xea, 0x35, 0x56, 0xb3, 0xed, 0x3b, 0xff, 0x86, 0x9d, 0x55, 0x9f, 0x80, 0xfd, 0x95, 0xee, - 0xe8, 0x94, 0x1c, 0xe8, 0x0a, 0xae, 0x7d, 0xfb, 0x9f, 0x73, 0xb3, 0xba, 0xdf, 0x80, 0xdd, 0xc2, - 0xd4, 0xb7, 0x5e, 0x79, 0xcc, 0x86, 0x63, 0x77, 0xae, 0xe6, 0xcc, 0xd7, 0xb7, 0x37, 0xbe, 0x7f, - 0xf9, 0xbc, 0x63, 0x9d, 0xde, 0xfb, 0xf5, 0xa2, 0x61, 0xbd, 0xb8, 0x68, 0x58, 0x7f, 0x5e, 0x34, - 0xac, 0x9f, 0x2f, 0x1b, 0x6b, 0x2f, 0x2e, 0x1b, 0x6b, 0x7f, 0x5c, 0x36, 0xd6, 0xbe, 0xba, 0xe5, - 0x33, 0x35, 0x1a, 0x0f, 0xba, 0x43, 0x1e, 0x3a, 0x0f, 0xbf, 0xfc, 0xec, 0xc1, 0xa7, 0x54, 0x3d, - 0xe5, 0xe2, 0xdc, 0x19, 0x8e, 0x30, 0x8b, 0x9c, 0x69, 0xf2, 0xe1, 0xa5, 0x66, 0x31, 0x95, 0x83, - 0x4d, 0xf3, 0xb5, 0xf4, 0xd1, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x62, 0x52, 0x92, 0x7f, 0x92, - 0x09, 0x00, 0x00, + proto.RegisterType((*MsgCreatePool)(nil), "kyve.pool.types.MsgCreatePool") + proto.RegisterType((*MsgCreatePoolResponse)(nil), "kyve.pool.types.MsgCreatePoolResponse") + proto.RegisterType((*MsgUpdatePool)(nil), "kyve.pool.types.MsgUpdatePool") + proto.RegisterType((*MsgUpdatePoolResponse)(nil), "kyve.pool.types.MsgUpdatePoolResponse") + proto.RegisterType((*MsgDisablePool)(nil), "kyve.pool.types.MsgDisablePool") + proto.RegisterType((*MsgDisablePoolResponse)(nil), "kyve.pool.types.MsgDisablePoolResponse") + proto.RegisterType((*MsgEnablePool)(nil), "kyve.pool.types.MsgEnablePool") + proto.RegisterType((*MsgEnablePoolResponse)(nil), "kyve.pool.types.MsgEnablePoolResponse") + proto.RegisterType((*MsgScheduleRuntimeUpgrade)(nil), "kyve.pool.types.MsgScheduleRuntimeUpgrade") + proto.RegisterType((*MsgScheduleRuntimeUpgradeResponse)(nil), "kyve.pool.types.MsgScheduleRuntimeUpgradeResponse") + proto.RegisterType((*MsgCancelRuntimeUpgrade)(nil), "kyve.pool.types.MsgCancelRuntimeUpgrade") + proto.RegisterType((*MsgCancelRuntimeUpgradeResponse)(nil), "kyve.pool.types.MsgCancelRuntimeUpgradeResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.pool.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.pool.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/pool/types/tx.proto", fileDescriptor_f11824f4fe1b9815) } + +var fileDescriptor_f11824f4fe1b9815 = []byte{ + // 842 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x41, 0x6f, 0xdb, 0x36, + 0x14, 0x8e, 0x1c, 0x27, 0x8d, 0x99, 0xd8, 0xc6, 0xb8, 0xcc, 0x61, 0x34, 0xc0, 0x75, 0x32, 0xac, + 0xf5, 0x02, 0xcc, 0xda, 0xba, 0x61, 0x87, 0xdd, 0x9a, 0xb6, 0x87, 0xa0, 0xf0, 0x50, 0xc8, 0xeb, + 0x8a, 0xf5, 0x22, 0xd0, 0x26, 0x2b, 0x13, 0x91, 0x44, 0x81, 0xa4, 0x5d, 0xbb, 0xbb, 0x6c, 0xbb, + 0xed, 0xb6, 0x9f, 0xd2, 0x01, 0xfb, 0x11, 0x3b, 0x16, 0x3b, 0xed, 0x38, 0x24, 0x87, 0xde, 0xf7, + 0x0b, 0x06, 0x52, 0xb2, 0x2c, 0xcd, 0x72, 0x5a, 0xac, 0xed, 0xc9, 0x7e, 0xef, 0xfb, 0xf4, 0xf8, + 0xf1, 0xf1, 0x7d, 0x94, 0x00, 0x3a, 0x9f, 0x4f, 0xa9, 0x13, 0x73, 0x1e, 0x38, 0x6a, 0x1e, 0x53, + 0xe9, 0xa8, 0x59, 0x2f, 0x16, 0x5c, 0x71, 0xd8, 0xd4, 0x48, 0x4f, 0x23, 0x3d, 0x83, 0xd8, 0x07, + 0x23, 0x2e, 0x43, 0x2e, 0x9d, 0x50, 0xfa, 0xce, 0xf4, 0x73, 0xfd, 0x93, 0x30, 0xed, 0xc3, 0x04, + 0xf0, 0x4c, 0xe4, 0x24, 0x41, 0x02, 0x1d, 0xff, 0x52, 0x05, 0xf5, 0xbe, 0xf4, 0xef, 0x08, 0x8a, + 0x15, 0x7d, 0xc0, 0x79, 0x00, 0xbf, 0x02, 0x35, 0x3c, 0x51, 0x63, 0x2e, 0x98, 0x9a, 0x23, 0xab, + 0x63, 0x75, 0x6b, 0xa7, 0xe8, 0xcf, 0xdf, 0x3f, 0xdd, 0x4f, 0x1f, 0xbb, 0x4d, 0x88, 0xa0, 0x52, + 0x0e, 0x94, 0x60, 0x91, 0xef, 0x2e, 0xa9, 0x10, 0x82, 0x6a, 0x84, 0x43, 0x8a, 0x2a, 0xfa, 0x11, + 0xd7, 0xfc, 0x87, 0x08, 0x5c, 0x13, 0x93, 0x48, 0xb1, 0x90, 0xa2, 0x4d, 0x93, 0x5e, 0x84, 0x9a, + 0x1d, 0x70, 0x9f, 0xa3, 0x6a, 0xc2, 0xd6, 0xff, 0x61, 0x0b, 0x6c, 0x8f, 0x78, 0xf4, 0x84, 0xf9, + 0x68, 0xcb, 0x64, 0xd3, 0x08, 0x7e, 0x08, 0x6a, 0x52, 0x61, 0xa1, 0xbc, 0x73, 0x3a, 0x47, 0xdb, + 0x06, 0xda, 0x31, 0x89, 0xfb, 0x74, 0x0e, 0x6f, 0x82, 0xe6, 0x24, 0x0e, 0x38, 0x26, 0x1e, 0x8b, + 0x14, 0x15, 0x53, 0x1c, 0xa0, 0x6b, 0x1d, 0xab, 0x5b, 0x75, 0x1b, 0x49, 0xfa, 0x2c, 0xcd, 0xc2, + 0x2f, 0x41, 0x8b, 0x45, 0x4f, 0x02, 0xac, 0x18, 0x8f, 0x3c, 0x39, 0xc6, 0x82, 0x7a, 0x4f, 0x29, + 0xf3, 0xc7, 0x0a, 0xed, 0x18, 0xfe, 0x7e, 0x86, 0x0e, 0x34, 0xf8, 0xc8, 0x60, 0xf0, 0x63, 0xd0, + 0x08, 0x59, 0xe4, 0x11, 0x1a, 0x50, 0xdf, 0x80, 0xa8, 0x66, 0xd8, 0xf5, 0x90, 0x45, 0x77, 0xb3, + 0x24, 0xbc, 0x01, 0x9a, 0x21, 0x9e, 0x79, 0xc3, 0x49, 0x44, 0x02, 0xea, 0x49, 0xf6, 0x8c, 0x22, + 0x90, 0xf2, 0xf0, 0xec, 0xd4, 0x64, 0x07, 0xec, 0x99, 0x69, 0xc8, 0x94, 0x0a, 0xa9, 0xeb, 0xec, + 0x26, 0x0d, 0x49, 0x43, 0x68, 0x83, 0x9d, 0x21, 0x8b, 0xb0, 0x60, 0x54, 0xa2, 0xbd, 0x64, 0x8f, + 0x8b, 0x18, 0xf6, 0xc0, 0xfb, 0x52, 0x71, 0x81, 0x7d, 0xaa, 0x8f, 0x70, 0xca, 0x08, 0x15, 0x1e, + 0x23, 0xa8, 0xde, 0xb1, 0xba, 0x75, 0xf7, 0xbd, 0x14, 0x7a, 0x90, 0x22, 0x67, 0x44, 0x8b, 0x1e, + 0xf1, 0x30, 0xd6, 0xe7, 0xa4, 0x37, 0xcb, 0x08, 0x6a, 0x18, 0x6a, 0x3d, 0x97, 0x3d, 0x23, 0x5f, + 0x37, 0x7e, 0x7e, 0xf9, 0xfc, 0x64, 0x79, 0x82, 0xc7, 0x07, 0xe0, 0x83, 0xc2, 0x28, 0xb8, 0x54, + 0xc6, 0x3c, 0x92, 0xf4, 0xf8, 0x27, 0xcb, 0x0c, 0xc9, 0xc3, 0x98, 0xbc, 0xe9, 0x90, 0x34, 0x40, + 0x85, 0x11, 0x33, 0x22, 0x55, 0xb7, 0xc2, 0x88, 0xee, 0x47, 0x8c, 0xe7, 0xfa, 0x9c, 0x16, 0x03, + 0x92, 0x86, 0x6b, 0xc4, 0x2d, 0x25, 0x64, 0xe2, 0xc6, 0xa0, 0xd1, 0x97, 0xfe, 0x5d, 0x26, 0xf1, + 0x30, 0x78, 0xab, 0xe2, 0x56, 0x24, 0x20, 0xd0, 0x2a, 0xae, 0x94, 0x69, 0xf0, 0x4d, 0x7f, 0xee, + 0x45, 0xef, 0x5c, 0x42, 0xd2, 0x85, 0xe5, 0x42, 0x99, 0x82, 0x7f, 0x2c, 0x70, 0xd8, 0x97, 0xfe, + 0x60, 0x34, 0xa6, 0x64, 0x12, 0x50, 0x37, 0xb1, 0xd9, 0xc3, 0xd8, 0x17, 0x98, 0xd0, 0xff, 0x2d, + 0x27, 0xe7, 0xdf, 0x4a, 0xd1, 0xbf, 0xb9, 0x41, 0xde, 0x2c, 0x0e, 0xf2, 0x11, 0xd8, 0x93, 0xa9, + 0x0a, 0xe2, 0x61, 0x65, 0x1c, 0x5e, 0x75, 0x77, 0xb3, 0xdc, 0x6d, 0xa5, 0x67, 0x9d, 0x4c, 0x44, + 0x62, 0xa7, 0x2d, 0x03, 0x67, 0x71, 0xc1, 0x07, 0xdb, 0x45, 0x1f, 0xac, 0x74, 0xe3, 0x23, 0x70, + 0xb4, 0x76, 0xcf, 0x59, 0x67, 0x7e, 0x00, 0x07, 0x7a, 0xaa, 0x71, 0x34, 0xa2, 0xc1, 0xbb, 0x6e, + 0xcb, 0x8a, 0xc2, 0x23, 0x70, 0x7d, 0xcd, 0xe2, 0x99, 0x3e, 0x09, 0x9a, 0xcb, 0xc1, 0xc6, 0x02, + 0x87, 0xf2, 0x4d, 0x74, 0x2d, 0xdc, 0x54, 0xb9, 0xda, 0x4d, 0x87, 0xa6, 0x29, 0xf9, 0x45, 0x17, + 0x7a, 0x6e, 0xfd, 0xb6, 0x05, 0x36, 0xfb, 0xd2, 0x87, 0xdf, 0x02, 0x90, 0x7b, 0x2b, 0xb4, 0x7b, + 0xff, 0x79, 0xdb, 0xf4, 0x0a, 0x57, 0x85, 0x7d, 0xe3, 0x6a, 0x7c, 0x51, 0x5d, 0x57, 0xcd, 0x5d, + 0x23, 0xa5, 0x55, 0x97, 0x78, 0x79, 0xd5, 0xd5, 0x3b, 0x00, 0x3e, 0x02, 0xbb, 0xf9, 0x0b, 0xe0, + 0x7a, 0xd9, 0x63, 0x39, 0x82, 0x7d, 0xf3, 0x15, 0x84, 0xbc, 0xdc, 0x9c, 0xab, 0x4b, 0xe5, 0x2e, + 0xf1, 0x72, 0xb9, 0xab, 0x66, 0x85, 0x33, 0xd0, 0x5a, 0x63, 0xd4, 0x93, 0xb2, 0x0a, 0xe5, 0x5c, + 0xfb, 0xd6, 0xeb, 0x73, 0xb3, 0x95, 0x05, 0xd8, 0x2f, 0x75, 0x42, 0xb7, 0xf4, 0xf8, 0x4a, 0x98, + 0xf6, 0x67, 0xaf, 0xcb, 0xcc, 0xd6, 0x7c, 0x0c, 0xf6, 0x0a, 0xd3, 0xdd, 0xb9, 0xe2, 0x50, 0x0d, + 0xc3, 0xee, 0xbe, 0x8a, 0xb1, 0xa8, 0x6d, 0x6f, 0xfd, 0xf8, 0xf2, 0xf9, 0x89, 0x75, 0x7a, 0xe7, + 0x8f, 0x8b, 0xb6, 0xf5, 0xe2, 0xa2, 0x6d, 0xfd, 0x7d, 0xd1, 0xb6, 0x7e, 0xbd, 0x6c, 0x6f, 0xbc, + 0xb8, 0x6c, 0x6f, 0xfc, 0x75, 0xd9, 0xde, 0x78, 0xfc, 0x89, 0xcf, 0xd4, 0x78, 0x32, 0xec, 0x8d, + 0x78, 0xe8, 0xdc, 0xff, 0xfe, 0xbb, 0x7b, 0xdf, 0x50, 0xf5, 0x94, 0x8b, 0x73, 0x67, 0x34, 0xc6, + 0x2c, 0x72, 0x66, 0xb9, 0x0f, 0xab, 0xe1, 0xb6, 0xf9, 0x22, 0xfa, 0xe2, 0xdf, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x74, 0xa4, 0xad, 0x73, 0x72, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -948,7 +947,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreatePool(ctx context.Context, in *MsgCreatePool, opts ...grpc.CallOption) (*MsgCreatePoolResponse, error) { out := new(MsgCreatePoolResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/CreatePool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/CreatePool", in, out, opts...) if err != nil { return nil, err } @@ -957,7 +956,7 @@ func (c *msgClient) CreatePool(ctx context.Context, in *MsgCreatePool, opts ...g func (c *msgClient) UpdatePool(ctx context.Context, in *MsgUpdatePool, opts ...grpc.CallOption) (*MsgUpdatePoolResponse, error) { out := new(MsgUpdatePoolResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/UpdatePool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/UpdatePool", in, out, opts...) if err != nil { return nil, err } @@ -966,7 +965,7 @@ func (c *msgClient) UpdatePool(ctx context.Context, in *MsgUpdatePool, opts ...g func (c *msgClient) DisablePool(ctx context.Context, in *MsgDisablePool, opts ...grpc.CallOption) (*MsgDisablePoolResponse, error) { out := new(MsgDisablePoolResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/DisablePool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/DisablePool", in, out, opts...) if err != nil { return nil, err } @@ -975,7 +974,7 @@ func (c *msgClient) DisablePool(ctx context.Context, in *MsgDisablePool, opts .. func (c *msgClient) EnablePool(ctx context.Context, in *MsgEnablePool, opts ...grpc.CallOption) (*MsgEnablePoolResponse, error) { out := new(MsgEnablePoolResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/EnablePool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/EnablePool", in, out, opts...) if err != nil { return nil, err } @@ -984,7 +983,7 @@ func (c *msgClient) EnablePool(ctx context.Context, in *MsgEnablePool, opts ...g func (c *msgClient) ScheduleRuntimeUpgrade(ctx context.Context, in *MsgScheduleRuntimeUpgrade, opts ...grpc.CallOption) (*MsgScheduleRuntimeUpgradeResponse, error) { out := new(MsgScheduleRuntimeUpgradeResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/ScheduleRuntimeUpgrade", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/ScheduleRuntimeUpgrade", in, out, opts...) if err != nil { return nil, err } @@ -993,7 +992,7 @@ func (c *msgClient) ScheduleRuntimeUpgrade(ctx context.Context, in *MsgScheduleR func (c *msgClient) CancelRuntimeUpgrade(ctx context.Context, in *MsgCancelRuntimeUpgrade, opts ...grpc.CallOption) (*MsgCancelRuntimeUpgradeResponse, error) { out := new(MsgCancelRuntimeUpgradeResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/CancelRuntimeUpgrade", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/CancelRuntimeUpgrade", in, out, opts...) if err != nil { return nil, err } @@ -1002,7 +1001,7 @@ func (c *msgClient) CancelRuntimeUpgrade(ctx context.Context, in *MsgCancelRunti func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.pool.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.pool.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -1074,7 +1073,7 @@ func _Msg_CreatePool_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/CreatePool", + FullMethod: "/kyve.pool.types.Msg/CreatePool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreatePool(ctx, req.(*MsgCreatePool)) @@ -1092,7 +1091,7 @@ func _Msg_UpdatePool_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/UpdatePool", + FullMethod: "/kyve.pool.types.Msg/UpdatePool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdatePool(ctx, req.(*MsgUpdatePool)) @@ -1110,7 +1109,7 @@ func _Msg_DisablePool_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/DisablePool", + FullMethod: "/kyve.pool.types.Msg/DisablePool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).DisablePool(ctx, req.(*MsgDisablePool)) @@ -1128,7 +1127,7 @@ func _Msg_EnablePool_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/EnablePool", + FullMethod: "/kyve.pool.types.Msg/EnablePool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).EnablePool(ctx, req.(*MsgEnablePool)) @@ -1146,7 +1145,7 @@ func _Msg_ScheduleRuntimeUpgrade_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/ScheduleRuntimeUpgrade", + FullMethod: "/kyve.pool.types.Msg/ScheduleRuntimeUpgrade", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ScheduleRuntimeUpgrade(ctx, req.(*MsgScheduleRuntimeUpgrade)) @@ -1164,7 +1163,7 @@ func _Msg_CancelRuntimeUpgrade_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/CancelRuntimeUpgrade", + FullMethod: "/kyve.pool.types.Msg/CancelRuntimeUpgrade", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CancelRuntimeUpgrade(ctx, req.(*MsgCancelRuntimeUpgrade)) @@ -1182,7 +1181,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.pool.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.pool.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -1191,7 +1190,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.pool.v1beta1.Msg", + ServiceName: "kyve.pool.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1224,7 +1223,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/pool/v1beta1/tx.proto", + Metadata: "kyve/pool/types/tx.proto", } func (m *MsgCreatePool) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/account.pb.go b/x/query/types/account.pb.go index 89fcd5d2..f4300f74 100644 --- a/x/query/types/account.pb.go +++ b/x/query/types/account.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/account.proto +// source: kyve/query/types/account.proto package types @@ -40,7 +40,7 @@ func (m *QueryAccountAssetsRequest) Reset() { *m = QueryAccountAssetsReq func (m *QueryAccountAssetsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountAssetsRequest) ProtoMessage() {} func (*QueryAccountAssetsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{0} + return fileDescriptor_9dd2ef4666e645f1, []int{0} } func (m *QueryAccountAssetsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -98,7 +98,7 @@ func (m *QueryAccountAssetsResponse) Reset() { *m = QueryAccountAssetsRe func (m *QueryAccountAssetsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountAssetsResponse) ProtoMessage() {} func (*QueryAccountAssetsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{1} + return fileDescriptor_9dd2ef4666e645f1, []int{1} } func (m *QueryAccountAssetsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -190,7 +190,7 @@ func (m *QueryAccountDelegationUnbondingsRequest) Reset() { func (m *QueryAccountDelegationUnbondingsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountDelegationUnbondingsRequest) ProtoMessage() {} func (*QueryAccountDelegationUnbondingsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{2} + return fileDescriptor_9dd2ef4666e645f1, []int{2} } func (m *QueryAccountDelegationUnbondingsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -247,7 +247,7 @@ func (m *QueryAccountDelegationUnbondingsResponse) Reset() { func (m *QueryAccountDelegationUnbondingsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountDelegationUnbondingsResponse) ProtoMessage() {} func (*QueryAccountDelegationUnbondingsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{3} + return fileDescriptor_9dd2ef4666e645f1, []int{3} } func (m *QueryAccountDelegationUnbondingsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +304,7 @@ func (m *DelegationUnbonding) Reset() { *m = DelegationUnbonding{} } func (m *DelegationUnbonding) String() string { return proto.CompactTextString(m) } func (*DelegationUnbonding) ProtoMessage() {} func (*DelegationUnbonding) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{4} + return fileDescriptor_9dd2ef4666e645f1, []int{4} } func (m *DelegationUnbonding) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -364,7 +364,7 @@ func (m *QueryAccountFundedListRequest) Reset() { *m = QueryAccountFunde func (m *QueryAccountFundedListRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountFundedListRequest) ProtoMessage() {} func (*QueryAccountFundedListRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{5} + return fileDescriptor_9dd2ef4666e645f1, []int{5} } func (m *QueryAccountFundedListRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -410,7 +410,7 @@ func (m *QueryAccountFundedListResponse) Reset() { *m = QueryAccountFund func (m *QueryAccountFundedListResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountFundedListResponse) ProtoMessage() {} func (*QueryAccountFundedListResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{6} + return fileDescriptor_9dd2ef4666e645f1, []int{6} } func (m *QueryAccountFundedListResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -458,7 +458,7 @@ func (m *Funded) Reset() { *m = Funded{} } func (m *Funded) String() string { return proto.CompactTextString(m) } func (*Funded) ProtoMessage() {} func (*Funded) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{7} + return fileDescriptor_9dd2ef4666e645f1, []int{7} } func (m *Funded) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -511,7 +511,7 @@ func (m *QueryAccountRedelegationRequest) Reset() { *m = QueryAccountRed func (m *QueryAccountRedelegationRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountRedelegationRequest) ProtoMessage() {} func (*QueryAccountRedelegationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{8} + return fileDescriptor_9dd2ef4666e645f1, []int{8} } func (m *QueryAccountRedelegationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -559,7 +559,7 @@ func (m *QueryAccountRedelegationResponse) Reset() { *m = QueryAccountRe func (m *QueryAccountRedelegationResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountRedelegationResponse) ProtoMessage() {} func (*QueryAccountRedelegationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{9} + return fileDescriptor_9dd2ef4666e645f1, []int{9} } func (m *QueryAccountRedelegationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -614,7 +614,7 @@ func (m *RedelegationEntry) Reset() { *m = RedelegationEntry{} } func (m *RedelegationEntry) String() string { return proto.CompactTextString(m) } func (*RedelegationEntry) ProtoMessage() {} func (*RedelegationEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_51ca316755261aec, []int{10} + return fileDescriptor_9dd2ef4666e645f1, []int{10} } func (m *RedelegationEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -658,79 +658,80 @@ func (m *RedelegationEntry) GetFinishDate() uint64 { } func init() { - proto.RegisterType((*QueryAccountAssetsRequest)(nil), "kyve.query.v1beta1.QueryAccountAssetsRequest") - proto.RegisterType((*QueryAccountAssetsResponse)(nil), "kyve.query.v1beta1.QueryAccountAssetsResponse") - proto.RegisterType((*QueryAccountDelegationUnbondingsRequest)(nil), "kyve.query.v1beta1.QueryAccountDelegationUnbondingsRequest") - proto.RegisterType((*QueryAccountDelegationUnbondingsResponse)(nil), "kyve.query.v1beta1.QueryAccountDelegationUnbondingsResponse") - proto.RegisterType((*DelegationUnbonding)(nil), "kyve.query.v1beta1.DelegationUnbonding") - proto.RegisterType((*QueryAccountFundedListRequest)(nil), "kyve.query.v1beta1.QueryAccountFundedListRequest") - proto.RegisterType((*QueryAccountFundedListResponse)(nil), "kyve.query.v1beta1.QueryAccountFundedListResponse") - proto.RegisterType((*Funded)(nil), "kyve.query.v1beta1.Funded") - proto.RegisterType((*QueryAccountRedelegationRequest)(nil), "kyve.query.v1beta1.QueryAccountRedelegationRequest") - proto.RegisterType((*QueryAccountRedelegationResponse)(nil), "kyve.query.v1beta1.QueryAccountRedelegationResponse") - proto.RegisterType((*RedelegationEntry)(nil), "kyve.query.v1beta1.RedelegationEntry") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/account.proto", fileDescriptor_51ca316755261aec) } - -var fileDescriptor_51ca316755261aec = []byte{ - // 896 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x41, 0x6f, 0x1b, 0x45, - 0x14, 0xce, 0x26, 0xc1, 0x15, 0x2f, 0x2d, 0xa5, 0x13, 0x54, 0x99, 0x0d, 0x5e, 0x47, 0x8b, 0xc0, - 0xa1, 0x82, 0x5d, 0xd9, 0x09, 0xa8, 0x25, 0x70, 0xa8, 0x9b, 0x84, 0x43, 0x01, 0x95, 0x35, 0x20, - 0xb5, 0x97, 0xd5, 0x78, 0x77, 0xbc, 0x59, 0x65, 0xbd, 0xe3, 0xee, 0x8c, 0x13, 0x2c, 0xc4, 0x85, - 0x13, 0x02, 0x0e, 0x48, 0xfc, 0x05, 0xfe, 0x02, 0xb7, 0x9e, 0x38, 0xf5, 0x58, 0x89, 0x0b, 0x17, - 0x10, 0x4a, 0xf8, 0x21, 0x68, 0x67, 0x66, 0xed, 0x31, 0x5e, 0xdb, 0xa4, 0xb7, 0xdd, 0x37, 0xef, - 0x7b, 0xf3, 0x7d, 0xf3, 0xbe, 0x37, 0x03, 0xdb, 0x27, 0xa3, 0x53, 0xe2, 0x3e, 0x1e, 0x92, 0x6c, - 0xe4, 0x9e, 0x36, 0xbb, 0x84, 0xe3, 0xa6, 0x8b, 0x83, 0x80, 0x0e, 0x53, 0xee, 0x0c, 0x32, 0xca, - 0x29, 0x42, 0x79, 0x86, 0x23, 0x32, 0x1c, 0x95, 0x61, 0xde, 0x0a, 0x28, 0xeb, 0x53, 0xe6, 0x76, - 0x31, 0xfb, 0x2f, 0x78, 0x80, 0xa3, 0x38, 0xc5, 0x3c, 0xa6, 0xa9, 0xc4, 0x9b, 0xaf, 0x44, 0x34, - 0xa2, 0xe2, 0xd3, 0xcd, 0xbf, 0x54, 0xf4, 0xb5, 0x88, 0xd2, 0x28, 0x21, 0x2e, 0x1e, 0xc4, 0x2e, - 0x4e, 0x53, 0xca, 0x05, 0x84, 0xa9, 0x55, 0xab, 0x84, 0x95, 0x64, 0x20, 0xd6, 0xed, 0x77, 0xe1, - 0xd5, 0xcf, 0xf2, 0xdf, 0xbb, 0x92, 0xe9, 0x5d, 0xc6, 0x08, 0x67, 0x1e, 0x79, 0x3c, 0x24, 0x8c, - 0xa3, 0x2a, 0x5c, 0xc1, 0x61, 0x98, 0x11, 0xc6, 0xaa, 0xc6, 0xb6, 0xb1, 0xf3, 0xa2, 0x57, 0xfc, - 0xda, 0xdf, 0xad, 0x81, 0x59, 0x86, 0x63, 0x03, 0x9a, 0x32, 0x92, 0x03, 0xbb, 0x38, 0xc1, 0x69, - 0x40, 0x04, 0x70, 0xdd, 0x2b, 0x7e, 0xd1, 0x6d, 0xa8, 0x8a, 0x8d, 0x03, 0x9a, 0xf8, 0x8c, 0x24, - 0x3d, 0x3f, 0x24, 0x09, 0x89, 0x04, 0xe5, 0xea, 0xaa, 0x48, 0xbd, 0x59, 0xac, 0x77, 0x48, 0xd2, - 0x3b, 0x18, 0xaf, 0xa2, 0xfb, 0x60, 0xcf, 0x43, 0xfa, 0xc3, 0xb4, 0x4b, 0xd3, 0x30, 0x4e, 0xa3, - 0xea, 0x9a, 0xa8, 0x51, 0x2f, 0xaf, 0xf1, 0x45, 0x91, 0x86, 0x5c, 0xd8, 0x1c, 0x17, 0xd3, 0x18, - 0xac, 0x0b, 0x34, 0x2a, 0x96, 0xb4, 0xdd, 0xdb, 0x50, 0x2b, 0x01, 0x68, 0x1b, 0xbf, 0x20, 0xa0, - 0x5b, 0xb3, 0xd0, 0xc9, 0xa6, 0x6f, 0xc1, 0xcb, 0xe3, 0x1a, 0x19, 0x39, 0xc3, 0x59, 0xc8, 0xaa, - 0x15, 0x01, 0xbb, 0x5e, 0xc4, 0x3d, 0x19, 0x9e, 0x4a, 0xed, 0x0d, 0xe5, 0x0e, 0x57, 0xa6, 0x53, - 0x8f, 0x64, 0xd8, 0xfe, 0xc1, 0x80, 0x86, 0xde, 0x8a, 0x92, 0x9d, 0xc7, 0x0d, 0x3d, 0x02, 0x98, - 0xb8, 0x4a, 0xb4, 0x66, 0xa3, 0xf5, 0xa6, 0x23, 0x2d, 0xe8, 0xe4, 0x16, 0x9c, 0x76, 0xa7, 0xf3, - 0x00, 0x47, 0x44, 0x61, 0x3d, 0x0d, 0xa9, 0x1b, 0x63, 0x75, 0xda, 0x18, 0xbf, 0x19, 0xb0, 0xb3, - 0x9c, 0x8d, 0xb2, 0xc9, 0x27, 0x00, 0xe3, 0x03, 0xcc, 0x2d, 0xb6, 0xb6, 0xb3, 0xd1, 0x6a, 0x38, - 0xb3, 0x53, 0xe2, 0x94, 0x54, 0x69, 0xaf, 0x3f, 0xfd, 0xab, 0xbe, 0xe2, 0x69, 0x05, 0xd0, 0x47, - 0x53, 0xea, 0x56, 0x85, 0xba, 0xc6, 0x52, 0x75, 0x92, 0x8b, 0x2e, 0xcf, 0xfe, 0xde, 0x80, 0xcd, - 0xb2, 0x06, 0xde, 0x84, 0x0a, 0xee, 0xe7, 0xaa, 0x94, 0xab, 0xd5, 0x1f, 0x7a, 0x1d, 0xae, 0x05, - 0x19, 0x91, 0x8e, 0xe0, 0x71, 0x9f, 0x28, 0x27, 0x5f, 0x2d, 0x82, 0x9f, 0xc7, 0x7d, 0x82, 0xde, - 0x83, 0x0a, 0xe3, 0xf8, 0x84, 0x64, 0xc2, 0xa3, 0x1b, 0x2d, 0xab, 0x4c, 0xe8, 0xd1, 0x30, 0x49, - 0x3a, 0x22, 0xcb, 0x53, 0xd9, 0xf6, 0x1d, 0xa8, 0xe9, 0x07, 0x9a, 0xb7, 0x9d, 0x84, 0x1f, 0xc7, - 0x8c, 0x2f, 0x9f, 0xd2, 0x47, 0x60, 0xcd, 0x83, 0xaa, 0x0e, 0xdc, 0x86, 0x4a, 0x4f, 0x44, 0xd5, - 0xe9, 0x9b, 0xe5, 0xa4, 0xf2, 0x0c, 0x75, 0xe0, 0x2a, 0xdf, 0xee, 0x40, 0x45, 0xc6, 0xe7, 0x9e, - 0x4a, 0x13, 0xd6, 0x07, 0x94, 0x26, 0xaa, 0x11, 0xb5, 0xb2, 0xca, 0x6d, 0xcc, 0xe2, 0xe0, 0x01, - 0xa5, 0x89, 0x27, 0x52, 0xed, 0x7d, 0xa8, 0xeb, 0x84, 0x3d, 0x32, 0x19, 0xb5, 0xe5, 0x6a, 0x9f, - 0x18, 0xb0, 0x3d, 0x1f, 0xad, 0x04, 0x53, 0xa8, 0x65, 0x5a, 0xdc, 0x0f, 0x28, 0x4d, 0x42, 0x7a, - 0x96, 0xfa, 0x24, 0xe5, 0x59, 0x4c, 0x0a, 0x17, 0xbe, 0x51, 0xc6, 0x56, 0x2f, 0x78, 0x98, 0xf2, - 0x6c, 0xa4, 0x8e, 0x64, 0x4b, 0xaf, 0x78, 0x4f, 0x15, 0x3c, 0x94, 0xf5, 0x50, 0x03, 0xae, 0xe3, - 0x53, 0x1c, 0x27, 0xb8, 0x9b, 0x10, 0x9f, 0x25, 0x94, 0x33, 0xe5, 0x8e, 0x97, 0xc6, 0xe1, 0x4e, - 0x1e, 0xb5, 0x1f, 0xc2, 0x8d, 0x99, 0x0d, 0xa6, 0x9c, 0x15, 0x62, 0x5e, 0x5c, 0xa7, 0x63, 0x67, - 0x1d, 0x60, 0x4e, 0x50, 0x1d, 0x36, 0x7a, 0x71, 0x1a, 0xb3, 0x63, 0x99, 0x22, 0xcb, 0x83, 0x0c, - 0xe5, 0x09, 0xad, 0x1f, 0x2b, 0x70, 0x55, 0x3f, 0x19, 0xf4, 0x8b, 0x01, 0xd7, 0xa6, 0x6e, 0x6e, - 0xf4, 0x4e, 0x99, 0xe0, 0xb9, 0x2f, 0x83, 0xe9, 0xfc, 0xdf, 0x74, 0x79, 0xec, 0xf6, 0xde, 0xb7, - 0xbf, 0xff, 0xf3, 0xf3, 0xaa, 0x83, 0xde, 0x76, 0xe7, 0xbf, 0x92, 0x3e, 0x16, 0x18, 0xf7, 0x6b, - 0xd5, 0xd0, 0x6f, 0xd0, 0x9f, 0x06, 0x6c, 0x2d, 0xb8, 0x47, 0xd0, 0xfe, 0x32, 0x16, 0x0b, 0xee, - 0x42, 0xf3, 0x83, 0xe7, 0x03, 0x2b, 0x41, 0xf7, 0x84, 0xa0, 0x0f, 0xd1, 0xfe, 0x22, 0x41, 0x65, - 0x0f, 0x85, 0xae, 0xef, 0x57, 0x03, 0x6e, 0xcc, 0xcc, 0x26, 0x6a, 0x2e, 0x23, 0x36, 0x73, 0x05, - 0x98, 0xad, 0xcb, 0x40, 0x94, 0x82, 0x3b, 0x42, 0xc1, 0x2e, 0x6a, 0x2e, 0x52, 0x20, 0x87, 0xdd, - 0x4f, 0x62, 0xc6, 0x35, 0xde, 0x4f, 0x0c, 0xd8, 0x2c, 0x19, 0x32, 0xb4, 0xbb, 0x8c, 0x46, 0xc9, - 0x40, 0x9b, 0x7b, 0x97, 0x03, 0x29, 0xf6, 0xef, 0x0b, 0xf6, 0x7b, 0xa8, 0xb5, 0x88, 0xbd, 0x3e, - 0x97, 0x13, 0xfa, 0xed, 0x83, 0xa7, 0xe7, 0x96, 0xf1, 0xec, 0xdc, 0x32, 0xfe, 0x3e, 0xb7, 0x8c, - 0x9f, 0x2e, 0xac, 0x95, 0x67, 0x17, 0xd6, 0xca, 0x1f, 0x17, 0xd6, 0xca, 0xa3, 0x5b, 0x51, 0xcc, - 0x8f, 0x87, 0x5d, 0x27, 0xa0, 0x7d, 0xf7, 0xfe, 0xc3, 0x2f, 0x0f, 0x3f, 0x25, 0xfc, 0x8c, 0x66, - 0x27, 0x6e, 0x70, 0x8c, 0xe3, 0xd4, 0xfd, 0x4a, 0x6d, 0xc3, 0x47, 0x03, 0xc2, 0xba, 0x15, 0xf1, - 0x10, 0xef, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x5b, 0x16, 0x72, 0xf8, 0x09, 0x00, 0x00, + proto.RegisterType((*QueryAccountAssetsRequest)(nil), "kyve.query.types.QueryAccountAssetsRequest") + proto.RegisterType((*QueryAccountAssetsResponse)(nil), "kyve.query.types.QueryAccountAssetsResponse") + proto.RegisterType((*QueryAccountDelegationUnbondingsRequest)(nil), "kyve.query.types.QueryAccountDelegationUnbondingsRequest") + proto.RegisterType((*QueryAccountDelegationUnbondingsResponse)(nil), "kyve.query.types.QueryAccountDelegationUnbondingsResponse") + proto.RegisterType((*DelegationUnbonding)(nil), "kyve.query.types.DelegationUnbonding") + proto.RegisterType((*QueryAccountFundedListRequest)(nil), "kyve.query.types.QueryAccountFundedListRequest") + proto.RegisterType((*QueryAccountFundedListResponse)(nil), "kyve.query.types.QueryAccountFundedListResponse") + proto.RegisterType((*Funded)(nil), "kyve.query.types.Funded") + proto.RegisterType((*QueryAccountRedelegationRequest)(nil), "kyve.query.types.QueryAccountRedelegationRequest") + proto.RegisterType((*QueryAccountRedelegationResponse)(nil), "kyve.query.types.QueryAccountRedelegationResponse") + proto.RegisterType((*RedelegationEntry)(nil), "kyve.query.types.RedelegationEntry") +} + +func init() { proto.RegisterFile("kyve/query/types/account.proto", fileDescriptor_9dd2ef4666e645f1) } + +var fileDescriptor_9dd2ef4666e645f1 = []byte{ + // 906 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x41, 0x6f, 0xdc, 0x44, + 0x14, 0x8e, 0x93, 0x74, 0x2b, 0x5e, 0x5a, 0xda, 0x4e, 0x50, 0xb5, 0x6c, 0x1a, 0xa7, 0x72, 0x05, + 0x09, 0xa5, 0xf2, 0x90, 0x6d, 0x40, 0xa4, 0x15, 0x87, 0xa6, 0x49, 0x38, 0x04, 0xa1, 0xd6, 0x01, + 0x44, 0xb9, 0x58, 0xb3, 0xf6, 0xac, 0x63, 0xc5, 0xeb, 0xd9, 0x7a, 0x66, 0x13, 0x56, 0x88, 0x0b, + 0xa7, 0x4a, 0x5c, 0x90, 0xf8, 0x03, 0xfc, 0x05, 0x6e, 0x88, 0x13, 0xc7, 0x1e, 0x2b, 0x71, 0x81, + 0x0b, 0x42, 0x09, 0x3f, 0x83, 0x03, 0xf2, 0xcc, 0x78, 0x77, 0x16, 0x7b, 0xbd, 0x85, 0xdb, 0xfa, + 0xbd, 0xf7, 0xbd, 0xf7, 0xbd, 0x37, 0xdf, 0x9b, 0x59, 0xb0, 0x8f, 0x87, 0x27, 0x14, 0x3f, 0x1d, + 0xd0, 0x6c, 0x88, 0xc5, 0xb0, 0x4f, 0x39, 0x26, 0x41, 0xc0, 0x06, 0xa9, 0x70, 0xfb, 0x19, 0x13, + 0x0c, 0x5d, 0xcd, 0xfd, 0xae, 0xf4, 0xbb, 0xd2, 0xdf, 0xba, 0x1d, 0x30, 0xde, 0x63, 0x1c, 0x77, + 0x08, 0x2f, 0x80, 0x27, 0x9b, 0x1d, 0x2a, 0xc8, 0x26, 0xee, 0x93, 0x28, 0x4e, 0x89, 0x88, 0x59, + 0xaa, 0xd0, 0xad, 0xd7, 0x22, 0x16, 0x31, 0xf9, 0x13, 0xe7, 0xbf, 0xb4, 0xf5, 0x46, 0xc4, 0x58, + 0x94, 0x50, 0x4c, 0xfa, 0x31, 0x26, 0x69, 0xca, 0x84, 0x84, 0xf0, 0xc2, 0x5b, 0x62, 0xa4, 0xaa, + 0x4b, 0xaf, 0xf3, 0x2e, 0xbc, 0xfe, 0x38, 0xff, 0x7c, 0xa0, 0x58, 0x3e, 0xe0, 0x9c, 0x0a, 0xee, + 0xd1, 0xa7, 0x03, 0xca, 0x05, 0x6a, 0xc2, 0x45, 0x12, 0x86, 0x19, 0xe5, 0xbc, 0x69, 0xdd, 0xb4, + 0x36, 0x5e, 0xf1, 0x8a, 0x4f, 0xe7, 0xd9, 0x02, 0xb4, 0xaa, 0x70, 0xbc, 0xcf, 0x52, 0x4e, 0x73, + 0x60, 0x87, 0x24, 0x24, 0x0d, 0xa8, 0x04, 0x2e, 0x7a, 0xc5, 0x27, 0x7a, 0x1f, 0x9a, 0xb2, 0x70, + 0xc0, 0x12, 0x9f, 0xd3, 0xa4, 0xeb, 0x87, 0x34, 0xa1, 0x91, 0x24, 0xdc, 0x9c, 0x97, 0xa1, 0xd7, + 0x0b, 0xff, 0x21, 0x4d, 0xba, 0xbb, 0x23, 0x2f, 0x3a, 0x00, 0x67, 0x1a, 0xd2, 0x1f, 0xa4, 0x1d, + 0x96, 0x86, 0x71, 0x1a, 0x35, 0x17, 0x64, 0x8e, 0xb5, 0xea, 0x1c, 0x9f, 0x16, 0x61, 0x08, 0xc3, + 0xf2, 0x28, 0x99, 0xc1, 0x60, 0x51, 0xa2, 0x51, 0xe1, 0x32, 0xaa, 0xef, 0xc0, 0x6a, 0x05, 0xc0, + 0x28, 0x7c, 0x41, 0x42, 0x57, 0xca, 0xd0, 0x71, 0xd1, 0xb7, 0xe0, 0xea, 0x28, 0x47, 0x46, 0x4f, + 0x49, 0x16, 0xf2, 0x66, 0x43, 0xc2, 0xae, 0x14, 0x76, 0x4f, 0x99, 0x27, 0x42, 0xbb, 0x03, 0x55, + 0xe1, 0xe2, 0x64, 0xe8, 0xbe, 0x32, 0x3b, 0xdf, 0x5a, 0xb0, 0x6e, 0x1e, 0x45, 0x45, 0xe5, 0xd1, + 0x81, 0xee, 0x03, 0x8c, 0x35, 0x25, 0x8f, 0x66, 0xa9, 0xfd, 0xa6, 0xab, 0x04, 0xe8, 0xe6, 0x02, + 0xd4, 0xca, 0xd4, 0x02, 0x74, 0x1f, 0x91, 0x88, 0x6a, 0xac, 0x67, 0x20, 0x4d, 0x61, 0xcc, 0x4f, + 0x0a, 0xe3, 0x17, 0x0b, 0x36, 0x66, 0xb3, 0xd1, 0x32, 0x39, 0x00, 0x18, 0x0d, 0x30, 0x97, 0xd8, + 0xc2, 0xc6, 0x52, 0xfb, 0x0d, 0xf7, 0xdf, 0x1b, 0xe2, 0x56, 0xe4, 0xd8, 0x59, 0x7c, 0xfe, 0xc7, + 0xda, 0x9c, 0x67, 0xc0, 0xd1, 0x87, 0x13, 0xbd, 0xcd, 0xcb, 0xde, 0xd6, 0x67, 0xf6, 0xa6, 0x98, + 0x98, 0xcd, 0x39, 0xcf, 0x2c, 0x58, 0xae, 0x3a, 0xbe, 0xeb, 0xd0, 0x20, 0xbd, 0xbc, 0x27, 0xad, + 0x69, 0xfd, 0x85, 0x6e, 0xc1, 0xe5, 0x20, 0xa3, 0x4a, 0x0f, 0x22, 0xee, 0x51, 0xad, 0xe3, 0x4b, + 0x85, 0xf1, 0x93, 0xb8, 0x47, 0xd1, 0x16, 0x34, 0xb8, 0x20, 0xc7, 0x34, 0x93, 0x0a, 0x5d, 0x6a, + 0xdf, 0x28, 0xb7, 0xb9, 0x3f, 0x48, 0x92, 0x43, 0x19, 0xe3, 0xe9, 0x58, 0x67, 0x1b, 0x56, 0xcd, + 0x61, 0xe6, 0x47, 0x4e, 0xc3, 0x8f, 0x62, 0x2e, 0x66, 0x6f, 0xe8, 0xe7, 0x60, 0x4f, 0x83, 0xea, + 0xe9, 0xbf, 0x07, 0x8d, 0xae, 0xb4, 0xea, 0xc9, 0x37, 0xab, 0x28, 0xe5, 0x7e, 0x3d, 0x6c, 0x1d, + 0xed, 0x3c, 0x86, 0x86, 0xb2, 0x4f, 0x9d, 0x08, 0x86, 0xc5, 0x3e, 0x63, 0x89, 0x3e, 0x84, 0x95, + 0x72, 0xde, 0x1d, 0xc2, 0xe3, 0xe0, 0x11, 0x63, 0x89, 0x27, 0x03, 0x9d, 0xfb, 0xb0, 0x66, 0x92, + 0xf5, 0xe8, 0x78, 0xc5, 0x66, 0x77, 0xfa, 0xb3, 0x05, 0x37, 0xa7, 0xa3, 0x75, 0xb3, 0x3d, 0x58, + 0xcd, 0x0c, 0xbb, 0x1f, 0x30, 0x96, 0x84, 0xec, 0x34, 0xf5, 0x69, 0x2a, 0xb2, 0x98, 0x16, 0xea, + 0xbb, 0x55, 0xe6, 0x6a, 0xa6, 0xdb, 0x4b, 0x45, 0x36, 0xd4, 0xe3, 0x58, 0x31, 0xf3, 0x3d, 0xd4, + 0xe9, 0xf6, 0x54, 0x36, 0xb4, 0x0e, 0x57, 0xc8, 0x09, 0x89, 0x13, 0xd2, 0x49, 0xa8, 0xcf, 0x13, + 0x26, 0xb8, 0x56, 0xc5, 0xab, 0x23, 0xf3, 0x61, 0x6e, 0x75, 0x9e, 0xc0, 0xb5, 0x52, 0x81, 0x09, + 0x45, 0x85, 0x44, 0x14, 0x97, 0xe8, 0x48, 0x51, 0xbb, 0x44, 0x50, 0xb4, 0x06, 0x4b, 0xdd, 0x38, + 0x8d, 0xf9, 0x91, 0x0a, 0x51, 0xe9, 0x41, 0x99, 0xf2, 0x80, 0xf6, 0xdf, 0x17, 0xe0, 0x92, 0x39, + 0x17, 0xf4, 0x83, 0x05, 0x97, 0x27, 0xee, 0x6b, 0xf4, 0x76, 0xb9, 0xdd, 0xa9, 0xaf, 0x41, 0xeb, + 0xce, 0xcb, 0x05, 0xab, 0x81, 0x3b, 0x5b, 0xdf, 0xfc, 0xfa, 0xd7, 0xf7, 0xf3, 0x2e, 0xba, 0x83, + 0x8d, 0xf7, 0xa7, 0x78, 0xd8, 0xf4, 0x9b, 0xe8, 0x13, 0x89, 0xc1, 0x5f, 0xe9, 0xa3, 0xfc, 0x1a, + 0xfd, 0x6e, 0xc1, 0x4a, 0xcd, 0xcd, 0x81, 0xb6, 0xeb, 0x39, 0xd4, 0xdc, 0x7d, 0xad, 0x7b, 0xff, + 0x07, 0xaa, 0x9b, 0x79, 0x28, 0x9b, 0xf9, 0x00, 0xdd, 0xaf, 0x6b, 0xa6, 0xea, 0x59, 0x30, 0x7b, + 0xfb, 0xd1, 0x82, 0x6b, 0xa5, 0x6d, 0x44, 0xb8, 0x9e, 0x56, 0x69, 0xe5, 0x5b, 0xef, 0xbc, 0x3c, + 0x40, 0xb3, 0xdf, 0x96, 0xec, 0xef, 0xa2, 0xcd, 0x3a, 0xf6, 0x6a, 0xb9, 0xfd, 0x24, 0xe6, 0xc2, + 0xe0, 0xfc, 0x93, 0x05, 0xcb, 0x15, 0x6b, 0x85, 0x36, 0xeb, 0x49, 0x54, 0x2c, 0x70, 0xab, 0xfd, + 0x5f, 0x20, 0x9a, 0xf9, 0x3d, 0xc9, 0x7c, 0x0b, 0xb5, 0xeb, 0x98, 0x9b, 0x7b, 0x38, 0xa6, 0xbe, + 0xb3, 0xfb, 0xfc, 0xcc, 0xb6, 0x5e, 0x9c, 0xd9, 0xd6, 0x9f, 0x67, 0xb6, 0xf5, 0xdd, 0xb9, 0x3d, + 0xf7, 0xe2, 0xdc, 0x9e, 0xfb, 0xed, 0xdc, 0x9e, 0xfb, 0xe2, 0x76, 0x14, 0x8b, 0xa3, 0x41, 0xc7, + 0x0d, 0x58, 0x0f, 0x1f, 0x3c, 0xf9, 0x6c, 0xef, 0x63, 0x2a, 0x4e, 0x59, 0x76, 0x8c, 0x83, 0x23, + 0x12, 0xa7, 0xf8, 0x4b, 0xf3, 0xbf, 0x52, 0xa7, 0x21, 0x9f, 0xdb, 0xbb, 0xff, 0x04, 0x00, 0x00, + 0xff, 0xff, 0xdb, 0x1b, 0x56, 0x2b, 0xd8, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -765,7 +766,7 @@ func NewQueryAccountClient(cc grpc1.ClientConn) QueryAccountClient { func (c *queryAccountClient) AccountAssets(ctx context.Context, in *QueryAccountAssetsRequest, opts ...grpc.CallOption) (*QueryAccountAssetsResponse, error) { out := new(QueryAccountAssetsResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryAccount/AccountAssets", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryAccount/AccountAssets", in, out, opts...) if err != nil { return nil, err } @@ -774,7 +775,7 @@ func (c *queryAccountClient) AccountAssets(ctx context.Context, in *QueryAccount func (c *queryAccountClient) AccountDelegationUnbondings(ctx context.Context, in *QueryAccountDelegationUnbondingsRequest, opts ...grpc.CallOption) (*QueryAccountDelegationUnbondingsResponse, error) { out := new(QueryAccountDelegationUnbondingsResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryAccount/AccountDelegationUnbondings", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryAccount/AccountDelegationUnbondings", in, out, opts...) if err != nil { return nil, err } @@ -783,7 +784,7 @@ func (c *queryAccountClient) AccountDelegationUnbondings(ctx context.Context, in func (c *queryAccountClient) AccountFundedList(ctx context.Context, in *QueryAccountFundedListRequest, opts ...grpc.CallOption) (*QueryAccountFundedListResponse, error) { out := new(QueryAccountFundedListResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryAccount/AccountFundedList", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryAccount/AccountFundedList", in, out, opts...) if err != nil { return nil, err } @@ -792,7 +793,7 @@ func (c *queryAccountClient) AccountFundedList(ctx context.Context, in *QueryAcc func (c *queryAccountClient) AccountRedelegation(ctx context.Context, in *QueryAccountRedelegationRequest, opts ...grpc.CallOption) (*QueryAccountRedelegationResponse, error) { out := new(QueryAccountRedelegationResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryAccount/AccountRedelegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryAccount/AccountRedelegation", in, out, opts...) if err != nil { return nil, err } @@ -842,7 +843,7 @@ func _QueryAccount_AccountAssets_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryAccount/AccountAssets", + FullMethod: "/kyve.query.types.QueryAccount/AccountAssets", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryAccountServer).AccountAssets(ctx, req.(*QueryAccountAssetsRequest)) @@ -860,7 +861,7 @@ func _QueryAccount_AccountDelegationUnbondings_Handler(srv interface{}, ctx cont } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryAccount/AccountDelegationUnbondings", + FullMethod: "/kyve.query.types.QueryAccount/AccountDelegationUnbondings", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryAccountServer).AccountDelegationUnbondings(ctx, req.(*QueryAccountDelegationUnbondingsRequest)) @@ -878,7 +879,7 @@ func _QueryAccount_AccountFundedList_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryAccount/AccountFundedList", + FullMethod: "/kyve.query.types.QueryAccount/AccountFundedList", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryAccountServer).AccountFundedList(ctx, req.(*QueryAccountFundedListRequest)) @@ -896,7 +897,7 @@ func _QueryAccount_AccountRedelegation_Handler(srv interface{}, ctx context.Cont } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryAccount/AccountRedelegation", + FullMethod: "/kyve.query.types.QueryAccount/AccountRedelegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryAccountServer).AccountRedelegation(ctx, req.(*QueryAccountRedelegationRequest)) @@ -905,7 +906,7 @@ func _QueryAccount_AccountRedelegation_Handler(srv interface{}, ctx context.Cont } var _QueryAccount_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryAccount", + ServiceName: "kyve.query.types.QueryAccount", HandlerType: (*QueryAccountServer)(nil), Methods: []grpc.MethodDesc{ { @@ -926,7 +927,7 @@ var _QueryAccount_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/account.proto", + Metadata: "kyve/query/types/account.proto", } func (m *QueryAccountAssetsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/account.pb.gw.go b/x/query/types/account.pb.gw.go index cb4152fa..bf13434c 100644 --- a/x/query/types/account.pb.gw.go +++ b/x/query/types/account.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/account.proto +// source: kyve/query/types/account.proto /* Package types is a reverse proxy. diff --git a/x/query/types/bundles.pb.go b/x/query/types/bundles.pb.go index c3a54e30..abbe099f 100644 --- a/x/query/types/bundles.pb.go +++ b/x/query/types/bundles.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/bundles.proto +// source: kyve/query/types/bundles.proto package types @@ -68,7 +68,7 @@ func (m *FinalizedBundle) Reset() { *m = FinalizedBundle{} } func (m *FinalizedBundle) String() string { return proto.CompactTextString(m) } func (*FinalizedBundle) ProtoMessage() {} func (*FinalizedBundle) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{0} + return fileDescriptor_bd045a1ce265df0f, []int{0} } func (m *FinalizedBundle) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -207,7 +207,7 @@ func (m *FinalizedAt) Reset() { *m = FinalizedAt{} } func (m *FinalizedAt) String() string { return proto.CompactTextString(m) } func (*FinalizedAt) ProtoMessage() {} func (*FinalizedAt) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{1} + return fileDescriptor_bd045a1ce265df0f, []int{1} } func (m *FinalizedAt) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ func (m *StakeSecurity) Reset() { *m = StakeSecurity{} } func (m *StakeSecurity) String() string { return proto.CompactTextString(m) } func (*StakeSecurity) ProtoMessage() {} func (*StakeSecurity) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{2} + return fileDescriptor_bd045a1ce265df0f, []int{2} } func (m *StakeSecurity) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -300,7 +300,7 @@ func (m *QueryFinalizedBundlesRequest) Reset() { *m = QueryFinalizedBund func (m *QueryFinalizedBundlesRequest) String() string { return proto.CompactTextString(m) } func (*QueryFinalizedBundlesRequest) ProtoMessage() {} func (*QueryFinalizedBundlesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{3} + return fileDescriptor_bd045a1ce265df0f, []int{3} } func (m *QueryFinalizedBundlesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *QueryFinalizedBundlesResponse) Reset() { *m = QueryFinalizedBun func (m *QueryFinalizedBundlesResponse) String() string { return proto.CompactTextString(m) } func (*QueryFinalizedBundlesResponse) ProtoMessage() {} func (*QueryFinalizedBundlesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{4} + return fileDescriptor_bd045a1ce265df0f, []int{4} } func (m *QueryFinalizedBundlesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -417,7 +417,7 @@ func (m *QueryFinalizedBundleRequest) Reset() { *m = QueryFinalizedBundl func (m *QueryFinalizedBundleRequest) String() string { return proto.CompactTextString(m) } func (*QueryFinalizedBundleRequest) ProtoMessage() {} func (*QueryFinalizedBundleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{5} + return fileDescriptor_bd045a1ce265df0f, []int{5} } func (m *QueryFinalizedBundleRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -470,7 +470,7 @@ func (m *QueryFinalizedBundleResponse) Reset() { *m = QueryFinalizedBund func (m *QueryFinalizedBundleResponse) String() string { return proto.CompactTextString(m) } func (*QueryFinalizedBundleResponse) ProtoMessage() {} func (*QueryFinalizedBundleResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{6} + return fileDescriptor_bd045a1ce265df0f, []int{6} } func (m *QueryFinalizedBundleResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -516,7 +516,7 @@ func (m *QueryCurrentVoteStatusRequest) Reset() { *m = QueryCurrentVoteS func (m *QueryCurrentVoteStatusRequest) String() string { return proto.CompactTextString(m) } func (*QueryCurrentVoteStatusRequest) ProtoMessage() {} func (*QueryCurrentVoteStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{7} + return fileDescriptor_bd045a1ce265df0f, []int{7} } func (m *QueryCurrentVoteStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -568,7 +568,7 @@ func (m *QueryCurrentVoteStatusResponse) Reset() { *m = QueryCurrentVote func (m *QueryCurrentVoteStatusResponse) String() string { return proto.CompactTextString(m) } func (*QueryCurrentVoteStatusResponse) ProtoMessage() {} func (*QueryCurrentVoteStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{8} + return fileDescriptor_bd045a1ce265df0f, []int{8} } func (m *QueryCurrentVoteStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -637,7 +637,7 @@ func (m *QueryCanValidateRequest) Reset() { *m = QueryCanValidateRequest func (m *QueryCanValidateRequest) String() string { return proto.CompactTextString(m) } func (*QueryCanValidateRequest) ProtoMessage() {} func (*QueryCanValidateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{9} + return fileDescriptor_bd045a1ce265df0f, []int{9} } func (m *QueryCanValidateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -692,7 +692,7 @@ func (m *QueryCanValidateResponse) Reset() { *m = QueryCanValidateRespon func (m *QueryCanValidateResponse) String() string { return proto.CompactTextString(m) } func (*QueryCanValidateResponse) ProtoMessage() {} func (*QueryCanValidateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{10} + return fileDescriptor_bd045a1ce265df0f, []int{10} } func (m *QueryCanValidateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -751,7 +751,7 @@ func (m *QueryCanProposeRequest) Reset() { *m = QueryCanProposeRequest{} func (m *QueryCanProposeRequest) String() string { return proto.CompactTextString(m) } func (*QueryCanProposeRequest) ProtoMessage() {} func (*QueryCanProposeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{11} + return fileDescriptor_bd045a1ce265df0f, []int{11} } func (m *QueryCanProposeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -820,7 +820,7 @@ func (m *QueryCanProposeResponse) Reset() { *m = QueryCanProposeResponse func (m *QueryCanProposeResponse) String() string { return proto.CompactTextString(m) } func (*QueryCanProposeResponse) ProtoMessage() {} func (*QueryCanProposeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{12} + return fileDescriptor_bd045a1ce265df0f, []int{12} } func (m *QueryCanProposeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -879,7 +879,7 @@ func (m *QueryCanVoteRequest) Reset() { *m = QueryCanVoteRequest{} } func (m *QueryCanVoteRequest) String() string { return proto.CompactTextString(m) } func (*QueryCanVoteRequest) ProtoMessage() {} func (*QueryCanVoteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{13} + return fileDescriptor_bd045a1ce265df0f, []int{13} } func (m *QueryCanVoteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -948,7 +948,7 @@ func (m *QueryCanVoteResponse) Reset() { *m = QueryCanVoteResponse{} } func (m *QueryCanVoteResponse) String() string { return proto.CompactTextString(m) } func (*QueryCanVoteResponse) ProtoMessage() {} func (*QueryCanVoteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b49b126c38ac815c, []int{14} + return fileDescriptor_bd045a1ce265df0f, []int{14} } func (m *QueryCanVoteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -992,102 +992,102 @@ func (m *QueryCanVoteResponse) GetReason() string { } func init() { - proto.RegisterType((*FinalizedBundle)(nil), "kyve.query.v1beta1.FinalizedBundle") - proto.RegisterType((*FinalizedAt)(nil), "kyve.query.v1beta1.FinalizedAt") - proto.RegisterType((*StakeSecurity)(nil), "kyve.query.v1beta1.StakeSecurity") - proto.RegisterType((*QueryFinalizedBundlesRequest)(nil), "kyve.query.v1beta1.QueryFinalizedBundlesRequest") - proto.RegisterType((*QueryFinalizedBundlesResponse)(nil), "kyve.query.v1beta1.QueryFinalizedBundlesResponse") - proto.RegisterType((*QueryFinalizedBundleRequest)(nil), "kyve.query.v1beta1.QueryFinalizedBundleRequest") - proto.RegisterType((*QueryFinalizedBundleResponse)(nil), "kyve.query.v1beta1.QueryFinalizedBundleResponse") - proto.RegisterType((*QueryCurrentVoteStatusRequest)(nil), "kyve.query.v1beta1.QueryCurrentVoteStatusRequest") - proto.RegisterType((*QueryCurrentVoteStatusResponse)(nil), "kyve.query.v1beta1.QueryCurrentVoteStatusResponse") - proto.RegisterType((*QueryCanValidateRequest)(nil), "kyve.query.v1beta1.QueryCanValidateRequest") - proto.RegisterType((*QueryCanValidateResponse)(nil), "kyve.query.v1beta1.QueryCanValidateResponse") - proto.RegisterType((*QueryCanProposeRequest)(nil), "kyve.query.v1beta1.QueryCanProposeRequest") - proto.RegisterType((*QueryCanProposeResponse)(nil), "kyve.query.v1beta1.QueryCanProposeResponse") - proto.RegisterType((*QueryCanVoteRequest)(nil), "kyve.query.v1beta1.QueryCanVoteRequest") - proto.RegisterType((*QueryCanVoteResponse)(nil), "kyve.query.v1beta1.QueryCanVoteResponse") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/bundles.proto", fileDescriptor_b49b126c38ac815c) } - -var fileDescriptor_b49b126c38ac815c = []byte{ - // 1191 bytes of a gzipped FileDescriptorProto + proto.RegisterType((*FinalizedBundle)(nil), "kyve.query.types.FinalizedBundle") + proto.RegisterType((*FinalizedAt)(nil), "kyve.query.types.FinalizedAt") + proto.RegisterType((*StakeSecurity)(nil), "kyve.query.types.StakeSecurity") + proto.RegisterType((*QueryFinalizedBundlesRequest)(nil), "kyve.query.types.QueryFinalizedBundlesRequest") + proto.RegisterType((*QueryFinalizedBundlesResponse)(nil), "kyve.query.types.QueryFinalizedBundlesResponse") + proto.RegisterType((*QueryFinalizedBundleRequest)(nil), "kyve.query.types.QueryFinalizedBundleRequest") + proto.RegisterType((*QueryFinalizedBundleResponse)(nil), "kyve.query.types.QueryFinalizedBundleResponse") + proto.RegisterType((*QueryCurrentVoteStatusRequest)(nil), "kyve.query.types.QueryCurrentVoteStatusRequest") + proto.RegisterType((*QueryCurrentVoteStatusResponse)(nil), "kyve.query.types.QueryCurrentVoteStatusResponse") + proto.RegisterType((*QueryCanValidateRequest)(nil), "kyve.query.types.QueryCanValidateRequest") + proto.RegisterType((*QueryCanValidateResponse)(nil), "kyve.query.types.QueryCanValidateResponse") + proto.RegisterType((*QueryCanProposeRequest)(nil), "kyve.query.types.QueryCanProposeRequest") + proto.RegisterType((*QueryCanProposeResponse)(nil), "kyve.query.types.QueryCanProposeResponse") + proto.RegisterType((*QueryCanVoteRequest)(nil), "kyve.query.types.QueryCanVoteRequest") + proto.RegisterType((*QueryCanVoteResponse)(nil), "kyve.query.types.QueryCanVoteResponse") +} + +func init() { proto.RegisterFile("kyve/query/types/bundles.proto", fileDescriptor_bd045a1ce265df0f) } + +var fileDescriptor_bd045a1ce265df0f = []byte{ + // 1197 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xce, 0xba, 0x8e, 0x7f, 0x3c, 0x37, 0xa1, 0x99, 0x26, 0xe9, 0xd6, 0x4d, 0x9d, 0x74, 0x11, - 0x24, 0x4a, 0xd1, 0x2e, 0x49, 0x0f, 0xd0, 0x13, 0x22, 0x2d, 0xa1, 0x6e, 0x4b, 0x15, 0x36, 0x52, + 0x14, 0xce, 0xba, 0x8e, 0x1d, 0x3f, 0x27, 0x21, 0x99, 0x26, 0xe9, 0xd6, 0x4d, 0x9c, 0x74, 0xa5, + 0xb6, 0x69, 0x24, 0x76, 0x49, 0x7a, 0x80, 0x9e, 0x80, 0xb4, 0x04, 0xdc, 0x96, 0x2a, 0x6c, 0x50, 0x24, 0x38, 0x60, 0x8d, 0xbd, 0x13, 0x7b, 0x15, 0x7b, 0x67, 0xbb, 0x33, 0x76, 0x6b, 0x22, 0x4b, - 0x08, 0x71, 0xe2, 0x84, 0x84, 0x8a, 0xc4, 0x8d, 0x2b, 0xdc, 0x39, 0x70, 0xe3, 0xd8, 0x63, 0x25, - 0x2e, 0x88, 0x43, 0x85, 0x12, 0xfe, 0x10, 0x34, 0x3f, 0xd6, 0xde, 0x38, 0x76, 0x9c, 0xb6, 0x37, - 0xbf, 0x37, 0xef, 0xbd, 0xf9, 0xde, 0xb7, 0xef, 0x7d, 0xbb, 0x86, 0x95, 0x83, 0x6e, 0x87, 0x38, - 0x8f, 0xdb, 0x24, 0xea, 0x3a, 0x9d, 0x8d, 0x2a, 0xe1, 0x78, 0xc3, 0xa9, 0xb6, 0x03, 0xaf, 0x49, - 0x98, 0x1d, 0x46, 0x94, 0x53, 0x84, 0x44, 0x84, 0x2d, 0x23, 0x6c, 0x1d, 0x51, 0x5c, 0xaf, 0x51, - 0xd6, 0xa2, 0xcc, 0xa9, 0x62, 0x36, 0x9c, 0x1c, 0xe2, 0xba, 0x1f, 0x60, 0xee, 0xd3, 0x40, 0xe5, - 0x17, 0xe7, 0xeb, 0xb4, 0x4e, 0xe5, 0x4f, 0x47, 0xfc, 0xd2, 0xde, 0xa5, 0x3a, 0xa5, 0xf5, 0x26, - 0x71, 0x70, 0xe8, 0x3b, 0x38, 0x08, 0x28, 0x97, 0x29, 0xfa, 0x4e, 0xeb, 0xfb, 0x34, 0xbc, 0xb5, - 0xed, 0x07, 0xb8, 0xe9, 0x7f, 0x4d, 0xbc, 0x2d, 0x09, 0x07, 0x5d, 0x81, 0x6c, 0x48, 0x69, 0xb3, - 0xe2, 0x7b, 0xa6, 0xb1, 0x62, 0xac, 0xa5, 0xdd, 0x8c, 0x30, 0xcb, 0x1e, 0x9a, 0x85, 0x94, 0xef, - 0x99, 0x29, 0xe9, 0x4b, 0xf9, 0x1e, 0xba, 0x0e, 0xc0, 0x38, 0x8d, 0x70, 0x9d, 0x88, 0xd8, 0x0b, - 0x2b, 0xc6, 0x5a, 0xde, 0xcd, 0x6b, 0x4f, 0xd9, 0x43, 0x45, 0xc8, 0xb5, 0xc3, 0x26, 0xc5, 0x1e, - 0x89, 0xcc, 0xb4, 0x3c, 0xec, 0xdb, 0x22, 0x75, 0x3f, 0xa2, 0xad, 0x8a, 0x1f, 0x78, 0xe4, 0xa9, - 0x39, 0x2d, 0x4b, 0xe6, 0x85, 0xa7, 0x2c, 0x1c, 0xe8, 0x2a, 0xe4, 0x38, 0xd5, 0x87, 0x19, 0x79, - 0x98, 0xe5, 0xb4, 0x7f, 0x24, 0x33, 0x0f, 0x48, 0xd7, 0x2c, 0xc8, 0xaa, 0x59, 0x61, 0x3f, 0x20, - 0x5d, 0xb4, 0x00, 0x19, 0x4e, 0xe5, 0x41, 0x56, 0x1e, 0x4c, 0x73, 0x2a, 0xdc, 0xef, 0xc0, 0xac, - 0x22, 0xba, 0xc2, 0xda, 0xad, 0x16, 0x8e, 0xba, 0x66, 0x4e, 0x1e, 0xcf, 0x28, 0xef, 0xae, 0x72, - 0xa2, 0x6b, 0x90, 0xf7, 0x30, 0xc7, 0x95, 0x06, 0x66, 0x0d, 0x33, 0xaf, 0xf0, 0x0a, 0xc7, 0x3d, - 0xcc, 0x1a, 0x68, 0x0b, 0x2e, 0xee, 0xc7, 0x34, 0x55, 0x30, 0x37, 0x61, 0xc5, 0x58, 0x2b, 0x6c, - 0x2e, 0xdb, 0xa7, 0x1f, 0x99, 0xdd, 0xa7, 0xf3, 0x63, 0xee, 0x16, 0xf6, 0x07, 0x06, 0xb2, 0xe1, - 0x72, 0x4c, 0x57, 0x18, 0xd1, 0x8e, 0xef, 0x91, 0x48, 0xf0, 0x76, 0x51, 0xf6, 0x37, 0xa7, 0x8f, - 0x76, 0xf4, 0x49, 0xd9, 0x13, 0xb8, 0x6b, 0xb4, 0x15, 0x46, 0x84, 0x31, 0x9f, 0x06, 0x22, 0x74, - 0x46, 0x86, 0xce, 0x24, 0xbc, 0x65, 0x0f, 0xdd, 0x83, 0x59, 0xc6, 0xf1, 0x01, 0xa9, 0x30, 0x52, - 0x6b, 0x47, 0x3e, 0xef, 0x9a, 0xb3, 0x12, 0xdc, 0x8d, 0x51, 0xe0, 0x76, 0x45, 0xe4, 0xae, 0x0e, - 0x74, 0x67, 0x58, 0xd2, 0xb4, 0xbe, 0x82, 0x42, 0x02, 0x3c, 0xda, 0x80, 0x4c, 0x83, 0xf8, 0xf5, - 0x06, 0x97, 0x63, 0x90, 0xdf, 0xba, 0xfa, 0xcf, 0xcb, 0xe5, 0x05, 0x35, 0x8f, 0xcc, 0x3b, 0xb0, - 0x7d, 0xea, 0xb4, 0x30, 0x6f, 0xd8, 0xe5, 0x80, 0xbb, 0x3a, 0x10, 0x2d, 0x41, 0x9e, 0xfb, 0x2d, - 0xc2, 0x38, 0x6e, 0x85, 0x72, 0x50, 0xf2, 0xee, 0xc0, 0x61, 0xfd, 0x6c, 0xc0, 0xcc, 0x09, 0x00, - 0xe8, 0x0e, 0x5c, 0xea, 0xe0, 0xa6, 0xef, 0x55, 0x3a, 0x94, 0x93, 0x4a, 0x48, 0x9f, 0x90, 0x68, - 0xf2, 0x65, 0xb3, 0x32, 0x65, 0x8f, 0x72, 0xb2, 0x23, 0x12, 0x44, 0x11, 0x4e, 0x39, 0x6e, 0x26, - 0x8b, 0xa4, 0x26, 0x16, 0x91, 0x29, 0xfd, 0x22, 0xd6, 0x33, 0x03, 0x96, 0x3e, 0x17, 0x54, 0x0d, - 0x6d, 0x03, 0x73, 0xc9, 0xe3, 0x36, 0x61, 0x1c, 0x6d, 0x03, 0x0c, 0x36, 0x4e, 0x82, 0x2c, 0x6c, - 0xbe, 0x6b, 0xab, 0xe2, 0xb6, 0x58, 0xcf, 0x21, 0xa6, 0x77, 0x70, 0x9d, 0xe8, 0x5c, 0x37, 0x91, - 0x99, 0xdc, 0xae, 0xd4, 0x89, 0xed, 0x9a, 0x87, 0x69, 0x35, 0xf0, 0x6a, 0x91, 0x94, 0x61, 0xfd, - 0x69, 0xc0, 0xf5, 0x31, 0xb8, 0x58, 0x48, 0x03, 0x46, 0xd0, 0x1e, 0xcc, 0x0d, 0x46, 0x53, 0x2b, - 0x8a, 0x69, 0xac, 0x5c, 0x58, 0x2b, 0x6c, 0xbe, 0x7d, 0xe6, 0x7c, 0xaa, 0x42, 0x5b, 0xe9, 0xe7, - 0x2f, 0x97, 0xa7, 0xdc, 0x4b, 0xfb, 0x43, 0xf5, 0xd1, 0xa7, 0x27, 0x1a, 0x4e, 0xc9, 0x86, 0x57, - 0x27, 0x36, 0xac, 0x40, 0x25, 0x3b, 0xb6, 0xb6, 0xe1, 0xda, 0xa8, 0x0e, 0x62, 0x62, 0xcf, 0x2b, - 0x37, 0x56, 0x67, 0xf4, 0x13, 0x9a, 0x44, 0x84, 0xf1, 0x86, 0x44, 0x58, 0x1f, 0xea, 0x27, 0x70, - 0xa7, 0x1d, 0x45, 0x24, 0xe0, 0x62, 0x66, 0x76, 0x39, 0xe6, 0x6d, 0x36, 0xa9, 0x03, 0xeb, 0x1b, - 0x03, 0x4a, 0xe3, 0x52, 0x35, 0xe8, 0x79, 0x98, 0x96, 0xe3, 0xac, 0x33, 0x95, 0x81, 0x4c, 0xc8, - 0xfa, 0x81, 0xf2, 0xab, 0xfe, 0x63, 0x53, 0x9c, 0xe0, 0x2a, 0xe3, 0xd8, 0x0f, 0xe4, 0x9c, 0xa4, - 0xdd, 0xd8, 0x14, 0x95, 0xe4, 0x4c, 0x4b, 0xad, 0x4d, 0xbb, 0xca, 0xb0, 0x5c, 0xb8, 0xa2, 0x10, - 0xe0, 0x60, 0x4f, 0x14, 0xc0, 0x7c, 0x32, 0xf1, 0x25, 0x80, 0x0e, 0x6e, 0x62, 0xcf, 0x13, 0x22, - 0xa3, 0xd7, 0x38, 0xe1, 0xb1, 0x1e, 0x81, 0x79, 0xba, 0xa6, 0xee, 0xa7, 0x08, 0xb9, 0x90, 0x32, - 0xe6, 0x57, 0x9b, 0x44, 0x56, 0xcd, 0xb9, 0x7d, 0x1b, 0x2d, 0x42, 0x26, 0x22, 0x98, 0xe9, 0x69, - 0xca, 0xbb, 0xda, 0xb2, 0xbe, 0x33, 0x60, 0x31, 0x2e, 0xb8, 0x13, 0xd1, 0x90, 0xb2, 0xc9, 0x18, - 0x17, 0x21, 0x23, 0xc5, 0x2b, 0x8a, 0x6b, 0x29, 0x4b, 0xde, 0xaf, 0x4a, 0x44, 0x7a, 0x91, 0xfa, - 0xf6, 0xd0, 0x4b, 0x27, 0x3d, 0xf4, 0xd2, 0xb1, 0x3e, 0x1b, 0x50, 0xd5, 0x47, 0xf1, 0x06, 0x5d, - 0x1d, 0xc2, 0xe5, 0x3e, 0x4b, 0x94, 0xbf, 0x7e, 0x47, 0x62, 0x42, 0x28, 0xef, 0xb7, 0xa3, 0x8c, - 0xa1, 0x77, 0x6f, 0x7a, 0xe8, 0xdd, 0x6b, 0xdd, 0x87, 0xf9, 0x93, 0x97, 0xbf, 0x7e, 0x23, 0x9b, - 0x3f, 0xe5, 0xe0, 0xa2, 0x2c, 0x16, 0x2b, 0xc3, 0x2f, 0x06, 0x2c, 0x0c, 0xcb, 0x91, 0x0c, 0x40, - 0xef, 0x8f, 0xda, 0xb3, 0xb3, 0x64, 0xb5, 0xb8, 0xf1, 0x0a, 0x19, 0xaa, 0x07, 0xcb, 0xfa, 0xf6, - 0xaf, 0xff, 0x7e, 0x4c, 0x2d, 0xa1, 0xa2, 0x23, 0x3f, 0xa9, 0x3a, 0xfd, 0xef, 0x28, 0xe7, 0x50, - 0x33, 0xdb, 0x43, 0xcf, 0x0c, 0x98, 0x1f, 0x2a, 0xa0, 0x10, 0x3a, 0xe7, 0xbd, 0x2f, 0x06, 0x78, - 0x1e, 0xe9, 0xb0, 0x56, 0x25, 0xa4, 0x1b, 0x68, 0x79, 0x3c, 0x24, 0xe7, 0x50, 0xe0, 0xfa, 0xdd, - 0x80, 0xb9, 0x53, 0x62, 0x80, 0xc6, 0x93, 0x30, 0x4e, 0x73, 0x8a, 0x9b, 0xaf, 0x92, 0xa2, 0x89, - 0xbb, 0x2d, 0x51, 0xde, 0x42, 0x1b, 0xce, 0x88, 0x6f, 0xd1, 0x9a, 0x4a, 0x53, 0x2f, 0x51, 0x26, - 0x13, 0x13, 0x7c, 0xfe, 0x6a, 0x40, 0x21, 0xb1, 0xee, 0xe8, 0xe6, 0xf8, 0xeb, 0x4f, 0x09, 0x4d, - 0xf1, 0xbd, 0xf3, 0x05, 0x6b, 0x94, 0x1f, 0x49, 0x94, 0xb7, 0xd1, 0x07, 0x23, 0x51, 0xe2, 0xa0, - 0xd2, 0xd1, 0x19, 0x49, 0x6e, 0x07, 0xea, 0xd4, 0x43, 0x7f, 0x18, 0x00, 0x83, 0x1d, 0x46, 0xeb, - 0x67, 0xdd, 0x7e, 0x52, 0x6e, 0x8a, 0x37, 0xcf, 0x15, 0xab, 0x81, 0xba, 0x12, 0xe8, 0x43, 0x74, - 0x7f, 0x1c, 0x50, 0x2d, 0x3c, 0x49, 0x9c, 0x6a, 0xa7, 0x7b, 0xce, 0x61, 0x2c, 0x4a, 0x3d, 0xe7, - 0x70, 0xa0, 0x49, 0x3d, 0xf4, 0x9b, 0x01, 0x59, 0xbd, 0xb3, 0x68, 0xf5, 0x4c, 0xda, 0x06, 0x92, - 0x52, 0x5c, 0x9b, 0x1c, 0xa8, 0x21, 0x3f, 0x94, 0x90, 0xb7, 0xd1, 0xdd, 0xb1, 0xdc, 0x52, 0x3e, - 0x1a, 0xaf, 0x54, 0x1d, 0xe9, 0x88, 0x45, 0xa7, 0xb7, 0x75, 0xf7, 0xf9, 0x51, 0xc9, 0x78, 0x71, - 0x54, 0x32, 0xfe, 0x3d, 0x2a, 0x19, 0x3f, 0x1c, 0x97, 0xa6, 0x5e, 0x1c, 0x97, 0xa6, 0xfe, 0x3e, - 0x2e, 0x4d, 0x7d, 0xb9, 0x5e, 0xf7, 0x79, 0xa3, 0x5d, 0xb5, 0x6b, 0xb4, 0xe5, 0x3c, 0xf8, 0x62, - 0xef, 0x93, 0x47, 0x84, 0x3f, 0xa1, 0xd1, 0x81, 0x53, 0x6b, 0x60, 0x3f, 0x70, 0x9e, 0xea, 0x8b, - 0x79, 0x37, 0x24, 0xac, 0x9a, 0x91, 0xff, 0x44, 0x6e, 0xfd, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x9f, - 0x9d, 0x46, 0xd3, 0x21, 0x0d, 0x00, 0x00, + 0x08, 0x21, 0xce, 0x20, 0xc4, 0x01, 0x89, 0x2b, 0xdc, 0x39, 0x70, 0xe5, 0xdc, 0x63, 0x25, 0x2e, + 0x88, 0x43, 0x85, 0x12, 0xfe, 0x0e, 0x84, 0xe6, 0xc7, 0xda, 0x1b, 0x27, 0x8e, 0xad, 0xf6, 0xe6, + 0xf7, 0xde, 0xbc, 0x37, 0xdf, 0xfb, 0xfc, 0xde, 0xb7, 0xbb, 0x50, 0x3c, 0xec, 0xb4, 0x89, 0xf3, + 0xa4, 0x45, 0xa2, 0x8e, 0xc3, 0x3b, 0x21, 0x61, 0x4e, 0xa5, 0x15, 0x78, 0x0d, 0xc2, 0xec, 0x30, + 0xa2, 0x9c, 0xa2, 0x39, 0x11, 0xb7, 0x65, 0xdc, 0x96, 0xf1, 0xc2, 0x46, 0x95, 0xb2, 0x26, 0x65, + 0x4e, 0x05, 0xb3, 0x38, 0xb1, 0xbd, 0x59, 0x21, 0x1c, 0x6f, 0x3a, 0x21, 0xae, 0xf9, 0x01, 0xe6, + 0x3e, 0x0d, 0x54, 0x76, 0x61, 0xa1, 0x46, 0x6b, 0x54, 0xfe, 0x74, 0xc4, 0x2f, 0xed, 0x5d, 0xae, + 0x51, 0x5a, 0x6b, 0x10, 0x07, 0x87, 0xbe, 0x83, 0x83, 0x80, 0x72, 0x99, 0xa2, 0x6f, 0xb4, 0xbe, + 0x4d, 0xc3, 0x1b, 0x3b, 0x7e, 0x80, 0x1b, 0xfe, 0x97, 0xc4, 0xdb, 0x96, 0x60, 0xd0, 0x15, 0xc8, + 0x86, 0x94, 0x36, 0xca, 0xbe, 0x67, 0x1a, 0x6b, 0xc6, 0x7a, 0xda, 0xcd, 0x08, 0xb3, 0xe4, 0xa1, + 0x59, 0x48, 0xf9, 0x9e, 0x99, 0x92, 0xbe, 0x94, 0xef, 0xa1, 0x15, 0x00, 0xc6, 0x69, 0x84, 0x6b, + 0x44, 0x9c, 0xbd, 0xb4, 0x66, 0xac, 0xe7, 0xdc, 0x9c, 0xf6, 0x94, 0x3c, 0x54, 0x80, 0xa9, 0x56, + 0xd8, 0xa0, 0xd8, 0x23, 0x91, 0x99, 0x96, 0xc1, 0x9e, 0x2d, 0x52, 0x0f, 0x22, 0xda, 0x2c, 0xfb, + 0x81, 0x47, 0x9e, 0x99, 0x93, 0xb2, 0x64, 0x4e, 0x78, 0x4a, 0xc2, 0x81, 0xae, 0xc2, 0x14, 0xa7, + 0x3a, 0x98, 0x91, 0xc1, 0x2c, 0xa7, 0xbd, 0x90, 0xcc, 0x3c, 0x24, 0x1d, 0x33, 0x2f, 0xab, 0x66, + 0x85, 0xfd, 0x90, 0x74, 0xd0, 0x22, 0x64, 0x38, 0x95, 0x81, 0xac, 0x0c, 0x4c, 0x72, 0x2a, 0xdc, + 0x37, 0x60, 0x56, 0xd1, 0x5c, 0x66, 0xad, 0x66, 0x13, 0x47, 0x1d, 0x73, 0x4a, 0x86, 0x67, 0x94, + 0x77, 0x4f, 0x39, 0xd1, 0x35, 0xc8, 0x79, 0x98, 0xe3, 0x72, 0x1d, 0xb3, 0xba, 0x99, 0x53, 0x78, + 0x85, 0xe3, 0x23, 0xcc, 0xea, 0xe8, 0x3d, 0x98, 0x3e, 0x88, 0x69, 0x2a, 0x63, 0x6e, 0xc2, 0x9a, + 0xb1, 0x9e, 0xdf, 0x5a, 0xb1, 0x07, 0xff, 0x30, 0xbb, 0x47, 0xe6, 0xfb, 0xdc, 0xcd, 0x1f, 0xf4, + 0x0d, 0x64, 0xc3, 0xe5, 0x98, 0xac, 0x30, 0xa2, 0x6d, 0xdf, 0x23, 0x91, 0x60, 0x6d, 0x5a, 0x76, + 0x37, 0xaf, 0x43, 0xbb, 0x3a, 0x52, 0xf2, 0x04, 0xea, 0x2a, 0x6d, 0x86, 0x11, 0x61, 0xcc, 0xa7, + 0x81, 0x38, 0x3a, 0x23, 0x8f, 0xce, 0x24, 0xbc, 0x25, 0x0f, 0xed, 0xc0, 0x2c, 0xe3, 0xf8, 0x90, + 0x94, 0x19, 0xa9, 0xb6, 0x22, 0x9f, 0x77, 0xcc, 0x59, 0x09, 0x6d, 0xf5, 0x2c, 0xb4, 0x3d, 0x71, + 0x6e, 0x4f, 0x1f, 0x73, 0x67, 0x58, 0xd2, 0xb4, 0xbe, 0x80, 0x7c, 0x02, 0x3a, 0xda, 0x84, 0x4c, + 0x9d, 0xf8, 0xb5, 0x3a, 0x97, 0x23, 0x90, 0xdb, 0xbe, 0xfa, 0xf7, 0xcb, 0xd5, 0x45, 0x35, 0x8b, + 0xcc, 0x3b, 0xb4, 0x7d, 0xea, 0x34, 0x31, 0xaf, 0xdb, 0xa5, 0x80, 0xbb, 0xfa, 0x20, 0x5a, 0x86, + 0x1c, 0xf7, 0x9b, 0x84, 0x71, 0xdc, 0x0c, 0xe5, 0x90, 0xe4, 0xdc, 0xbe, 0xc3, 0xfa, 0xc9, 0x80, + 0x99, 0x53, 0x00, 0xd0, 0x3d, 0x98, 0x6b, 0xe3, 0x86, 0xef, 0x95, 0xdb, 0x94, 0x93, 0x72, 0x48, + 0x9f, 0x92, 0x68, 0xf4, 0x65, 0xb3, 0x32, 0x65, 0x9f, 0x72, 0xb2, 0x2b, 0x12, 0x44, 0x11, 0x4e, + 0x39, 0x6e, 0x24, 0x8b, 0xa4, 0x46, 0x16, 0x91, 0x29, 0xbd, 0x22, 0xd6, 0x8f, 0x06, 0x2c, 0x7f, + 0x22, 0x88, 0x1a, 0xd8, 0x04, 0xe6, 0x92, 0x27, 0x2d, 0xc2, 0x38, 0xda, 0x01, 0xe8, 0x6f, 0x9b, + 0x04, 0x99, 0xdf, 0xba, 0x69, 0xab, 0xe2, 0xb6, 0x58, 0x4d, 0xcd, 0xb3, 0x5e, 0x4d, 0x7b, 0x17, + 0xd7, 0x88, 0xce, 0x75, 0x13, 0x99, 0xc9, 0xcd, 0x4a, 0x9d, 0xda, 0xac, 0x05, 0x98, 0x54, 0xc3, + 0xae, 0x96, 0x48, 0x19, 0xd6, 0x1f, 0x06, 0xac, 0x0c, 0xc1, 0xc5, 0x42, 0x1a, 0x30, 0x82, 0x3e, + 0x85, 0xf9, 0xfe, 0x58, 0x6a, 0x2d, 0x31, 0x8d, 0xb5, 0x4b, 0xeb, 0xf9, 0xad, 0xeb, 0x17, 0xcc, + 0xa6, 0x2a, 0xb3, 0x9d, 0x7e, 0xfe, 0x72, 0x75, 0xc2, 0x9d, 0x3b, 0x18, 0xa8, 0x8e, 0x3e, 0x3c, + 0xd5, 0x6e, 0x4a, 0xb6, 0x7b, 0x6b, 0x64, 0xbb, 0x0a, 0x52, 0xb2, 0x5f, 0x6b, 0x07, 0xae, 0x9d, + 0x87, 0x3f, 0xa6, 0x75, 0x5c, 0xa1, 0xb1, 0xf8, 0xf9, 0xff, 0xcf, 0x28, 0x1a, 0x8c, 0xd7, 0xa2, + 0xc1, 0x7a, 0x47, 0xb3, 0x7f, 0xaf, 0x15, 0x45, 0x24, 0xe0, 0x62, 0x5e, 0xf6, 0x38, 0xe6, 0x2d, + 0x36, 0x0a, 0xbf, 0xf5, 0x95, 0x01, 0xc5, 0x61, 0xa9, 0x1a, 0xf2, 0x02, 0x4c, 0xca, 0x51, 0xd6, + 0x99, 0xca, 0x40, 0x26, 0x64, 0xfd, 0x40, 0xf9, 0x55, 0xf7, 0xb1, 0x29, 0x22, 0xb8, 0xc2, 0x38, + 0xf6, 0x03, 0x39, 0x23, 0x69, 0x37, 0x36, 0x45, 0x25, 0x39, 0xcf, 0x52, 0x63, 0xd3, 0xae, 0x32, + 0x2c, 0x17, 0xae, 0x28, 0x04, 0x38, 0xd8, 0x17, 0x05, 0x30, 0x1f, 0x4d, 0x7b, 0x11, 0xa0, 0x8d, + 0x1b, 0xd8, 0xf3, 0x84, 0xbc, 0xe8, 0x15, 0x4e, 0x78, 0xac, 0xc7, 0x60, 0x9e, 0xad, 0xa9, 0xfb, + 0x29, 0xc0, 0x54, 0x48, 0x19, 0xf3, 0x2b, 0x0d, 0x22, 0xab, 0x4e, 0xb9, 0x3d, 0x1b, 0x2d, 0x41, + 0x26, 0x22, 0x98, 0xe9, 0x59, 0xca, 0xb9, 0xda, 0xb2, 0xbe, 0x31, 0x60, 0x29, 0x2e, 0xb8, 0x1b, + 0xd1, 0x90, 0xb2, 0xd1, 0x18, 0x97, 0x20, 0x23, 0x85, 0x2b, 0x8a, 0x6b, 0x29, 0x4b, 0xde, 0xaf, + 0x4a, 0x44, 0x7a, 0x89, 0x7a, 0xf6, 0xc0, 0xc3, 0x26, 0x3d, 0xf0, 0xb0, 0xb1, 0x3e, 0xee, 0x53, + 0xd5, 0x43, 0xf1, 0x1a, 0x5d, 0x1d, 0xc1, 0xe5, 0x1e, 0x4b, 0x94, 0xbf, 0x7a, 0x47, 0x62, 0x42, + 0x28, 0xef, 0xb5, 0xa3, 0x8c, 0x81, 0x67, 0x6e, 0x7a, 0xe0, 0x99, 0x6b, 0x3d, 0x80, 0x85, 0xd3, + 0x97, 0xbf, 0x7a, 0x23, 0x5b, 0xff, 0x65, 0x61, 0x5a, 0x16, 0x8b, 0x75, 0xe1, 0x67, 0x03, 0x16, + 0x07, 0xa5, 0x48, 0x1e, 0x40, 0xf6, 0xd9, 0x2d, 0xbb, 0x48, 0x50, 0x0b, 0xce, 0xd8, 0xe7, 0x15, + 0x7e, 0xcb, 0xfa, 0xfa, 0xcf, 0x7f, 0x7f, 0x48, 0x2d, 0xa3, 0x82, 0x23, 0x5f, 0xa1, 0xda, 0x9b, + 0xf1, 0x9b, 0x93, 0x73, 0xa4, 0x59, 0xed, 0xa2, 0xef, 0x0d, 0x58, 0x18, 0x28, 0xa0, 0xd0, 0xbd, + 0x39, 0xde, 0x6d, 0x31, 0xb8, 0xd1, 0x92, 0x61, 0xdd, 0x92, 0x70, 0xae, 0xa3, 0xd5, 0xe1, 0x70, + 0x9c, 0x23, 0x81, 0xe9, 0x37, 0x03, 0xe6, 0xcf, 0x88, 0x00, 0x1a, 0xd6, 0xfe, 0x30, 0xa5, 0x29, + 0xbc, 0x35, 0x7e, 0x82, 0x26, 0xec, 0xae, 0x44, 0x78, 0x07, 0x6d, 0x3a, 0x89, 0x77, 0xce, 0xf8, + 0xd5, 0xb1, 0xaa, 0xd2, 0xd4, 0x43, 0x93, 0xc9, 0xc4, 0x04, 0x8f, 0xbf, 0x18, 0x90, 0x4f, 0xac, + 0x38, 0xba, 0x3d, 0xec, 0xf2, 0x33, 0xd2, 0x52, 0xd8, 0x18, 0xe7, 0xa8, 0x46, 0xf8, 0xae, 0x44, + 0x78, 0x17, 0xbd, 0x7d, 0x2e, 0x42, 0x1c, 0x94, 0xdb, 0x3a, 0x23, 0xc9, 0x69, 0x5f, 0x8d, 0xba, + 0xe8, 0x77, 0x03, 0xa0, 0xbf, 0xb3, 0x68, 0x7d, 0xf8, 0xdd, 0xa7, 0xc5, 0xa5, 0x70, 0x7b, 0x8c, + 0x93, 0x1a, 0xa4, 0x2b, 0x41, 0x3e, 0x42, 0x0f, 0x86, 0x81, 0xd4, 0x22, 0x93, 0xc4, 0xa8, 0xf6, + 0xb7, 0xeb, 0x1c, 0xc5, 0x02, 0xd4, 0x75, 0x8e, 0xfa, 0xfa, 0xd3, 0x45, 0xbf, 0x1a, 0x90, 0xd5, + 0xfb, 0x89, 0x6e, 0x5c, 0x40, 0x58, 0x5f, 0x3c, 0x0a, 0x37, 0x47, 0x1d, 0xd3, 0x70, 0x1f, 0x49, + 0xb8, 0x3b, 0xe8, 0xfe, 0x50, 0x4e, 0x29, 0x3f, 0x1f, 0xab, 0x54, 0x17, 0xe9, 0x88, 0xc5, 0xa5, + 0xbb, 0x7d, 0xff, 0xf9, 0x71, 0xd1, 0x78, 0x71, 0x5c, 0x34, 0xfe, 0x39, 0x2e, 0x1a, 0xdf, 0x9d, + 0x14, 0x27, 0x5e, 0x9c, 0x14, 0x27, 0xfe, 0x3a, 0x29, 0x4e, 0x7c, 0xbe, 0x51, 0xf3, 0x79, 0xbd, + 0x55, 0xb1, 0xab, 0xb4, 0xe9, 0x3c, 0xfc, 0x6c, 0xff, 0x83, 0xc7, 0x84, 0x3f, 0xa5, 0xd1, 0xa1, + 0x53, 0xad, 0x63, 0x3f, 0x70, 0x9e, 0x25, 0x3f, 0x71, 0x2a, 0x19, 0xf9, 0xa5, 0x71, 0xe7, 0xff, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x62, 0x48, 0xe2, 0xfd, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1126,7 +1126,7 @@ func NewQueryBundlesClient(cc grpc1.ClientConn) QueryBundlesClient { func (c *queryBundlesClient) FinalizedBundlesQuery(ctx context.Context, in *QueryFinalizedBundlesRequest, opts ...grpc.CallOption) (*QueryFinalizedBundlesResponse, error) { out := new(QueryFinalizedBundlesResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/FinalizedBundlesQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/FinalizedBundlesQuery", in, out, opts...) if err != nil { return nil, err } @@ -1135,7 +1135,7 @@ func (c *queryBundlesClient) FinalizedBundlesQuery(ctx context.Context, in *Quer func (c *queryBundlesClient) FinalizedBundleQuery(ctx context.Context, in *QueryFinalizedBundleRequest, opts ...grpc.CallOption) (*FinalizedBundle, error) { out := new(FinalizedBundle) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/FinalizedBundleQuery", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/FinalizedBundleQuery", in, out, opts...) if err != nil { return nil, err } @@ -1144,7 +1144,7 @@ func (c *queryBundlesClient) FinalizedBundleQuery(ctx context.Context, in *Query func (c *queryBundlesClient) CurrentVoteStatus(ctx context.Context, in *QueryCurrentVoteStatusRequest, opts ...grpc.CallOption) (*QueryCurrentVoteStatusResponse, error) { out := new(QueryCurrentVoteStatusResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/CurrentVoteStatus", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/CurrentVoteStatus", in, out, opts...) if err != nil { return nil, err } @@ -1153,7 +1153,7 @@ func (c *queryBundlesClient) CurrentVoteStatus(ctx context.Context, in *QueryCur func (c *queryBundlesClient) CanValidate(ctx context.Context, in *QueryCanValidateRequest, opts ...grpc.CallOption) (*QueryCanValidateResponse, error) { out := new(QueryCanValidateResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/CanValidate", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/CanValidate", in, out, opts...) if err != nil { return nil, err } @@ -1162,7 +1162,7 @@ func (c *queryBundlesClient) CanValidate(ctx context.Context, in *QueryCanValida func (c *queryBundlesClient) CanPropose(ctx context.Context, in *QueryCanProposeRequest, opts ...grpc.CallOption) (*QueryCanProposeResponse, error) { out := new(QueryCanProposeResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/CanPropose", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/CanPropose", in, out, opts...) if err != nil { return nil, err } @@ -1171,7 +1171,7 @@ func (c *queryBundlesClient) CanPropose(ctx context.Context, in *QueryCanPropose func (c *queryBundlesClient) CanVote(ctx context.Context, in *QueryCanVoteRequest, opts ...grpc.CallOption) (*QueryCanVoteResponse, error) { out := new(QueryCanVoteResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryBundles/CanVote", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryBundles/CanVote", in, out, opts...) if err != nil { return nil, err } @@ -1231,7 +1231,7 @@ func _QueryBundles_FinalizedBundlesQuery_Handler(srv interface{}, ctx context.Co } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/FinalizedBundlesQuery", + FullMethod: "/kyve.query.types.QueryBundles/FinalizedBundlesQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).FinalizedBundlesQuery(ctx, req.(*QueryFinalizedBundlesRequest)) @@ -1249,7 +1249,7 @@ func _QueryBundles_FinalizedBundleQuery_Handler(srv interface{}, ctx context.Con } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/FinalizedBundleQuery", + FullMethod: "/kyve.query.types.QueryBundles/FinalizedBundleQuery", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).FinalizedBundleQuery(ctx, req.(*QueryFinalizedBundleRequest)) @@ -1267,7 +1267,7 @@ func _QueryBundles_CurrentVoteStatus_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/CurrentVoteStatus", + FullMethod: "/kyve.query.types.QueryBundles/CurrentVoteStatus", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).CurrentVoteStatus(ctx, req.(*QueryCurrentVoteStatusRequest)) @@ -1285,7 +1285,7 @@ func _QueryBundles_CanValidate_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/CanValidate", + FullMethod: "/kyve.query.types.QueryBundles/CanValidate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).CanValidate(ctx, req.(*QueryCanValidateRequest)) @@ -1303,7 +1303,7 @@ func _QueryBundles_CanPropose_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/CanPropose", + FullMethod: "/kyve.query.types.QueryBundles/CanPropose", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).CanPropose(ctx, req.(*QueryCanProposeRequest)) @@ -1321,7 +1321,7 @@ func _QueryBundles_CanVote_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryBundles/CanVote", + FullMethod: "/kyve.query.types.QueryBundles/CanVote", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryBundlesServer).CanVote(ctx, req.(*QueryCanVoteRequest)) @@ -1330,7 +1330,7 @@ func _QueryBundles_CanVote_Handler(srv interface{}, ctx context.Context, dec fun } var _QueryBundles_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryBundles", + ServiceName: "kyve.query.types.QueryBundles", HandlerType: (*QueryBundlesServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1359,7 +1359,7 @@ var _QueryBundles_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/bundles.proto", + Metadata: "kyve/query/types/bundles.proto", } func (m *FinalizedBundle) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/bundles.pb.gw.go b/x/query/types/bundles.pb.gw.go index a9b34985..bebd17d8 100644 --- a/x/query/types/bundles.pb.gw.go +++ b/x/query/types/bundles.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/bundles.proto +// source: kyve/query/types/bundles.proto /* Package types is a reverse proxy. diff --git a/x/query/types/delegation.pb.go b/x/query/types/delegation.pb.go index 0a35418a..20af91ba 100644 --- a/x/query/types/delegation.pb.go +++ b/x/query/types/delegation.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/delegation.proto +// source: kyve/query/types/delegation.proto package types @@ -42,7 +42,7 @@ func (m *QueryDelegatorRequest) Reset() { *m = QueryDelegatorRequest{} } func (m *QueryDelegatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorRequest) ProtoMessage() {} func (*QueryDelegatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{0} + return fileDescriptor_5ed7b9d4692aa8e6, []int{0} } func (m *QueryDelegatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -95,7 +95,7 @@ func (m *QueryDelegatorResponse) Reset() { *m = QueryDelegatorResponse{} func (m *QueryDelegatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorResponse) ProtoMessage() {} func (*QueryDelegatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{1} + return fileDescriptor_5ed7b9d4692aa8e6, []int{1} } func (m *QueryDelegatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -147,7 +147,7 @@ func (m *StakerDelegatorResponse) Reset() { *m = StakerDelegatorResponse func (m *StakerDelegatorResponse) String() string { return proto.CompactTextString(m) } func (*StakerDelegatorResponse) ProtoMessage() {} func (*StakerDelegatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{2} + return fileDescriptor_5ed7b9d4692aa8e6, []int{2} } func (m *StakerDelegatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -216,7 +216,7 @@ func (m *QueryDelegatorsByStakerRequest) Reset() { *m = QueryDelegatorsB func (m *QueryDelegatorsByStakerRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorsByStakerRequest) ProtoMessage() {} func (*QueryDelegatorsByStakerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{3} + return fileDescriptor_5ed7b9d4692aa8e6, []int{3} } func (m *QueryDelegatorsByStakerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -275,7 +275,7 @@ func (m *QueryDelegatorsByStakerResponse) Reset() { *m = QueryDelegators func (m *QueryDelegatorsByStakerResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorsByStakerResponse) ProtoMessage() {} func (*QueryDelegatorsByStakerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{4} + return fileDescriptor_5ed7b9d4692aa8e6, []int{4} } func (m *QueryDelegatorsByStakerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -344,7 +344,7 @@ func (m *QueryStakersByDelegatorRequest) Reset() { *m = QueryStakersByDe func (m *QueryStakersByDelegatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryStakersByDelegatorRequest) ProtoMessage() {} func (*QueryStakersByDelegatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{5} + return fileDescriptor_5ed7b9d4692aa8e6, []int{5} } func (m *QueryStakersByDelegatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -401,7 +401,7 @@ func (m *QueryStakersByDelegatorResponse) Reset() { *m = QueryStakersByD func (m *QueryStakersByDelegatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryStakersByDelegatorResponse) ProtoMessage() {} func (*QueryStakersByDelegatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{6} + return fileDescriptor_5ed7b9d4692aa8e6, []int{6} } func (m *QueryStakersByDelegatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ func (m *DelegationForStakerResponse) Reset() { *m = DelegationForStaker func (m *DelegationForStakerResponse) String() string { return proto.CompactTextString(m) } func (*DelegationForStakerResponse) ProtoMessage() {} func (*DelegationForStakerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_5e1c28c162a0498a, []int{7} + return fileDescriptor_5ed7b9d4692aa8e6, []int{7} } func (m *DelegationForStakerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -516,66 +516,64 @@ func (m *DelegationForStakerResponse) GetDelegationAmount() uint64 { } func init() { - proto.RegisterType((*QueryDelegatorRequest)(nil), "kyve.query.v1beta1.QueryDelegatorRequest") - proto.RegisterType((*QueryDelegatorResponse)(nil), "kyve.query.v1beta1.QueryDelegatorResponse") - proto.RegisterType((*StakerDelegatorResponse)(nil), "kyve.query.v1beta1.StakerDelegatorResponse") - proto.RegisterType((*QueryDelegatorsByStakerRequest)(nil), "kyve.query.v1beta1.QueryDelegatorsByStakerRequest") - proto.RegisterType((*QueryDelegatorsByStakerResponse)(nil), "kyve.query.v1beta1.QueryDelegatorsByStakerResponse") - proto.RegisterType((*QueryStakersByDelegatorRequest)(nil), "kyve.query.v1beta1.QueryStakersByDelegatorRequest") - proto.RegisterType((*QueryStakersByDelegatorResponse)(nil), "kyve.query.v1beta1.QueryStakersByDelegatorResponse") - proto.RegisterType((*DelegationForStakerResponse)(nil), "kyve.query.v1beta1.DelegationForStakerResponse") -} - -func init() { - proto.RegisterFile("kyve/query/v1beta1/delegation.proto", fileDescriptor_5e1c28c162a0498a) -} - -var fileDescriptor_5e1c28c162a0498a = []byte{ - // 699 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x95, 0x4f, 0x6b, 0x13, 0x4f, - 0x18, 0xc7, 0x33, 0x69, 0xe8, 0x8f, 0x4e, 0xf9, 0xd9, 0x3a, 0xda, 0x1a, 0x62, 0xd9, 0x96, 0x88, - 0x7f, 0xda, 0xc2, 0x0e, 0x4d, 0x4b, 0x41, 0xf1, 0x62, 0xac, 0x15, 0x11, 0xff, 0x34, 0x82, 0xa0, - 0x97, 0x30, 0xd9, 0x0e, 0xdb, 0xd0, 0x74, 0x27, 0x9d, 0x99, 0x6d, 0x0d, 0xa5, 0x20, 0x1e, 0x3c, - 0x0b, 0x5e, 0xc5, 0x8b, 0x27, 0xf1, 0x0d, 0x08, 0xbe, 0x81, 0x1e, 0x0b, 0x5e, 0xf4, 0x22, 0xd2, - 0xf8, 0x42, 0x64, 0x67, 0x27, 0xd9, 0xd9, 0xcd, 0x26, 0x6d, 0x45, 0x6f, 0xc9, 0x33, 0xcf, 0x33, - 0xf3, 0x9d, 0xcf, 0xf7, 0x79, 0x66, 0xe1, 0xa5, 0xcd, 0xd6, 0x0e, 0xc5, 0xdb, 0x3e, 0xe5, 0x2d, - 0xbc, 0xb3, 0x50, 0xa3, 0x92, 0x2c, 0xe0, 0x75, 0xda, 0xa0, 0x2e, 0x91, 0x75, 0xe6, 0xd9, 0x4d, - 0xce, 0x24, 0x43, 0x28, 0x48, 0xb2, 0x55, 0x92, 0xad, 0x93, 0x0a, 0x73, 0x0e, 0x13, 0x5b, 0x4c, - 0xe0, 0x1a, 0x11, 0xc9, 0xfa, 0x26, 0x71, 0xeb, 0x9e, 0x51, 0x5f, 0x38, 0xef, 0x32, 0x97, 0xa9, - 0x9f, 0x38, 0xf8, 0xa5, 0xa3, 0x53, 0x2e, 0x63, 0x6e, 0x83, 0x62, 0xd2, 0xac, 0x63, 0xe2, 0x79, - 0x4c, 0xaa, 0x12, 0xa1, 0x57, 0xad, 0x14, 0x61, 0xa1, 0x02, 0xb5, 0x5e, 0x7c, 0x00, 0x27, 0xd6, - 0x82, 0xbf, 0x2b, 0xa1, 0x58, 0xc6, 0x2b, 0x74, 0xdb, 0xa7, 0x42, 0xa2, 0x49, 0x38, 0x2c, 0x24, - 0xd9, 0xa4, 0x3c, 0x0f, 0x66, 0xc0, 0xb5, 0x91, 0x8a, 0xfe, 0x87, 0xa6, 0xe0, 0xc8, 0x7a, 0x27, - 0x37, 0x9f, 0x55, 0x4b, 0x51, 0xa0, 0xe8, 0xc0, 0xc9, 0xe4, 0x76, 0xa2, 0xc9, 0x3c, 0x41, 0xd1, - 0x3d, 0xb3, 0x2e, 0xd8, 0x72, 0xb4, 0x34, 0x6f, 0xf7, 0x02, 0xb1, 0x9f, 0xa8, 0x63, 0x7a, 0xea, - 0xcd, 0x43, 0x3e, 0x00, 0x78, 0xa1, 0x4f, 0x5a, 0x5c, 0x1e, 0x48, 0xc8, 0x43, 0x97, 0xe1, 0x19, - 0xc7, 0xe7, 0x9c, 0x7a, 0xb2, 0xca, 0xe9, 0x2e, 0xe1, 0xeb, 0xea, 0x06, 0xb9, 0xca, 0xff, 0x3a, - 0x5a, 0x51, 0x41, 0x34, 0x0f, 0xcf, 0x46, 0xe6, 0x55, 0xc9, 0x16, 0xf3, 0x3d, 0x99, 0x1f, 0x52, - 0x99, 0xe3, 0xd1, 0xc2, 0x2d, 0x15, 0x37, 0x40, 0xe5, 0x4c, 0x50, 0xc5, 0x97, 0x00, 0x5a, 0x71, - 0x16, 0xa2, 0xdc, 0x0a, 0x65, 0x77, 0x18, 0xaf, 0x42, 0x18, 0x99, 0xac, 0xa1, 0x5c, 0xb1, 0xc3, - 0x8e, 0xb0, 0x83, 0x8e, 0x48, 0xb0, 0x79, 0x4c, 0x5c, 0xaa, 0x6b, 0x2b, 0x46, 0xa5, 0x21, 0x21, - 0x1b, 0x93, 0xf0, 0x2e, 0x0b, 0xa7, 0xfb, 0x4a, 0xd0, 0xc0, 0xd6, 0x20, 0xec, 0xf2, 0x11, 0x79, - 0x30, 0x33, 0x74, 0x4a, 0x63, 0xca, 0xb9, 0x83, 0x1f, 0xd3, 0x99, 0x8a, 0xb1, 0x09, 0x9a, 0x85, - 0xe3, 0x92, 0x49, 0xd2, 0xa8, 0x46, 0xac, 0x34, 0xe7, 0x31, 0x15, 0x5f, 0xe9, 0x86, 0x51, 0x09, - 0x4e, 0xc4, 0x52, 0x19, 0xaf, 0x3a, 0x06, 0xed, 0x73, 0x66, 0x3e, 0xe3, 0xb7, 0x15, 0xf0, 0xbb, - 0x31, 0x6a, 0x39, 0x45, 0xed, 0xea, 0xb1, 0xd4, 0x74, 0x1b, 0x19, 0xa5, 0xc5, 0xd7, 0x1d, 0x87, - 0xc2, 0xab, 0x89, 0x72, 0xef, 0x14, 0xfc, 0x2d, 0x87, 0x06, 0x4f, 0xcd, 0x77, 0xa0, 0x7d, 0x4a, - 0x13, 0x72, 0xa2, 0xc6, 0x7e, 0x04, 0xff, 0x0b, 0x3d, 0x17, 0xf9, 0xac, 0xb2, 0x10, 0xa7, 0x59, - 0x18, 0x81, 0x5f, 0x65, 0x3c, 0xde, 0x07, 0xda, 0xc6, 0xce, 0x2e, 0x09, 0xc8, 0x43, 0x7f, 0x0e, - 0xf9, 0x23, 0x80, 0x17, 0x07, 0x9c, 0x8b, 0x96, 0x63, 0xef, 0xcc, 0x68, 0xc9, 0x4a, 0x13, 0xbe, - 0xea, 0x37, 0x1a, 0xba, 0xae, 0xf3, 0x0e, 0xfd, 0x83, 0x51, 0x2e, 0x7d, 0xca, 0xc1, 0x31, 0x73, - 0x5e, 0x02, 0xe7, 0xde, 0x03, 0x38, 0xd2, 0x75, 0x03, 0xcd, 0xa6, 0xa9, 0x4b, 0x7d, 0x40, 0x0b, - 0x73, 0x27, 0x49, 0x0d, 0x21, 0x14, 0x6f, 0xbc, 0xfa, 0xfa, 0xeb, 0x6d, 0x76, 0x09, 0x95, 0x70, - 0xff, 0xef, 0x08, 0xe3, 0x78, 0x2f, 0xbc, 0xfb, 0x3e, 0xde, 0xeb, 0xc6, 0xf6, 0xd1, 0x67, 0x00, - 0x51, 0xef, 0x7c, 0xa3, 0xd2, 0xf1, 0xc7, 0x27, 0xdf, 0xa3, 0xc2, 0xe2, 0xa9, 0x6a, 0xb4, 0xf6, - 0xeb, 0x4a, 0xfb, 0x22, 0x5a, 0x18, 0xa8, 0x5d, 0x54, 0x6b, 0xad, 0x6a, 0x28, 0xbf, 0x7b, 0x0d, - 0xf4, 0x05, 0x40, 0xd4, 0xdb, 0xf2, 0x03, 0xa4, 0xf7, 0x1d, 0xd4, 0x01, 0xd2, 0xfb, 0xcf, 0x54, - 0xf1, 0xa6, 0x92, 0xbe, 0x8c, 0x96, 0xd2, 0xa4, 0xeb, 0x49, 0x08, 0x74, 0x1b, 0x0e, 0x44, 0xe0, - 0xcb, 0x2b, 0x07, 0x47, 0x16, 0x38, 0x3c, 0xb2, 0xc0, 0xcf, 0x23, 0x0b, 0xbc, 0x69, 0x5b, 0x99, - 0xc3, 0xb6, 0x95, 0xf9, 0xd6, 0xb6, 0x32, 0xcf, 0xe7, 0xdc, 0xba, 0xdc, 0xf0, 0x6b, 0xb6, 0xc3, - 0xb6, 0xf0, 0xfd, 0x67, 0x4f, 0xef, 0x3c, 0xa4, 0x72, 0x97, 0xf1, 0x4d, 0xec, 0x6c, 0x90, 0xba, - 0x87, 0x5f, 0xe8, 0x83, 0x64, 0xab, 0x49, 0x45, 0x6d, 0x58, 0x7d, 0x87, 0x17, 0x7f, 0x07, 0x00, - 0x00, 0xff, 0xff, 0x39, 0x97, 0xee, 0x37, 0x42, 0x08, 0x00, 0x00, + proto.RegisterType((*QueryDelegatorRequest)(nil), "kyve.query.types.QueryDelegatorRequest") + proto.RegisterType((*QueryDelegatorResponse)(nil), "kyve.query.types.QueryDelegatorResponse") + proto.RegisterType((*StakerDelegatorResponse)(nil), "kyve.query.types.StakerDelegatorResponse") + proto.RegisterType((*QueryDelegatorsByStakerRequest)(nil), "kyve.query.types.QueryDelegatorsByStakerRequest") + proto.RegisterType((*QueryDelegatorsByStakerResponse)(nil), "kyve.query.types.QueryDelegatorsByStakerResponse") + proto.RegisterType((*QueryStakersByDelegatorRequest)(nil), "kyve.query.types.QueryStakersByDelegatorRequest") + proto.RegisterType((*QueryStakersByDelegatorResponse)(nil), "kyve.query.types.QueryStakersByDelegatorResponse") + proto.RegisterType((*DelegationForStakerResponse)(nil), "kyve.query.types.DelegationForStakerResponse") +} + +func init() { proto.RegisterFile("kyve/query/types/delegation.proto", fileDescriptor_5ed7b9d4692aa8e6) } + +var fileDescriptor_5ed7b9d4692aa8e6 = []byte{ + // 703 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcf, 0x4f, 0x13, 0x41, + 0x14, 0xee, 0x94, 0x06, 0xc3, 0x10, 0x05, 0x47, 0xc1, 0xa6, 0x92, 0x05, 0x9b, 0x28, 0x3f, 0x8c, + 0x3b, 0xb6, 0x10, 0x13, 0x8d, 0x17, 0x2b, 0xc2, 0xc1, 0xe0, 0x8f, 0x9a, 0x98, 0xe8, 0xa5, 0x99, + 0x96, 0xc9, 0xd2, 0x50, 0x76, 0xca, 0xcc, 0x14, 0x6c, 0x08, 0x89, 0xf1, 0xe0, 0xd9, 0xc4, 0x1b, + 0x17, 0x0f, 0x1e, 0xfc, 0x07, 0x4c, 0xfc, 0x17, 0x38, 0x92, 0x78, 0xd0, 0x93, 0x31, 0xe0, 0x1f, + 0x62, 0x76, 0x76, 0x76, 0x77, 0xb6, 0xcb, 0x52, 0x31, 0x7a, 0xdb, 0x7d, 0xf3, 0xbe, 0x99, 0x6f, + 0xbe, 0xef, 0xbd, 0x37, 0xf0, 0xca, 0x7a, 0x77, 0x8b, 0xe2, 0xcd, 0x0e, 0xe5, 0x5d, 0x2c, 0xbb, + 0x6d, 0x2a, 0xf0, 0x2a, 0x6d, 0x51, 0x87, 0xc8, 0x26, 0x73, 0xed, 0x36, 0x67, 0x92, 0xa1, 0x51, + 0x2f, 0xc5, 0x56, 0x29, 0xb6, 0x4a, 0x29, 0xcc, 0x35, 0x98, 0xd8, 0x60, 0x02, 0xd7, 0x89, 0x08, + 0xb0, 0x5b, 0xa5, 0x3a, 0x95, 0xa4, 0x84, 0xdb, 0xc4, 0x69, 0xba, 0x06, 0xba, 0x70, 0xd1, 0x61, + 0x0e, 0x53, 0x9f, 0xd8, 0xfb, 0xd2, 0xd1, 0x09, 0x87, 0x31, 0xa7, 0x45, 0x31, 0x69, 0x37, 0x31, + 0x71, 0x5d, 0x26, 0x15, 0x44, 0x04, 0xab, 0x09, 0x52, 0xfe, 0xe9, 0x6a, 0xb5, 0xb8, 0x02, 0xc7, + 0x9e, 0x7a, 0xbf, 0x8b, 0x3e, 0x51, 0xc6, 0xab, 0x74, 0xb3, 0x43, 0x85, 0x44, 0xe3, 0x70, 0x50, + 0x48, 0xb2, 0x4e, 0x79, 0x1e, 0x4c, 0x81, 0x99, 0xa1, 0xaa, 0xfe, 0x43, 0x13, 0x70, 0x68, 0x35, + 0xc8, 0xcd, 0x67, 0xd5, 0x52, 0x14, 0x28, 0x12, 0x38, 0xde, 0xbb, 0x9d, 0x68, 0x33, 0x57, 0x50, + 0xb4, 0x6c, 0xe2, 0xbc, 0x2d, 0x87, 0xcb, 0xb3, 0x76, 0xaf, 0x18, 0xf6, 0x33, 0x75, 0x48, 0x02, + 0x6d, 0x1e, 0xf1, 0x11, 0xc0, 0x4b, 0x29, 0x69, 0x71, 0x72, 0xa0, 0x87, 0x1c, 0xba, 0x0a, 0xcf, + 0x35, 0x3a, 0x9c, 0x53, 0x57, 0xd6, 0x38, 0xdd, 0x26, 0x7c, 0x55, 0xf1, 0xcf, 0x55, 0xcf, 0xea, + 0x68, 0x55, 0x05, 0xd1, 0x75, 0x78, 0x3e, 0xb2, 0xad, 0x46, 0x36, 0x58, 0xc7, 0x95, 0xf9, 0x01, + 0x95, 0x39, 0x1a, 0x2d, 0xdc, 0x53, 0x71, 0x43, 0xa6, 0x9c, 0x29, 0x53, 0xf1, 0x35, 0x80, 0x56, + 0x5c, 0x09, 0x51, 0xe9, 0xfa, 0xb4, 0x03, 0x85, 0x97, 0x20, 0x8c, 0x0c, 0xd6, 0x92, 0x5c, 0xb3, + 0xfd, 0x6a, 0xb0, 0xbd, 0x6a, 0xd0, 0xca, 0xe8, 0x6a, 0xb0, 0x9f, 0x10, 0x87, 0x6a, 0x6c, 0xd5, + 0x40, 0x1a, 0x14, 0xb2, 0x31, 0x0a, 0x7b, 0x59, 0x38, 0x99, 0x4a, 0x41, 0x0b, 0xf6, 0x18, 0xc2, + 0x50, 0x1f, 0x91, 0x07, 0x53, 0x03, 0xa7, 0xb2, 0xa5, 0x92, 0xdb, 0xff, 0x31, 0x99, 0xa9, 0x1a, + 0x5b, 0xa0, 0x59, 0x38, 0x2a, 0x99, 0x24, 0xad, 0x5a, 0xa4, 0x94, 0x56, 0x79, 0x44, 0xc5, 0x17, + 0xc3, 0x30, 0x2a, 0xc3, 0xb1, 0x58, 0x2a, 0xe3, 0xb5, 0x86, 0xa1, 0xf5, 0x05, 0x33, 0x9f, 0xf1, + 0xfb, 0x4a, 0xee, 0xe5, 0x98, 0x66, 0x39, 0xa5, 0xd9, 0x74, 0x5f, 0xcd, 0x74, 0x11, 0x19, 0xd0, + 0xe2, 0xdb, 0xc0, 0x1f, 0xff, 0x6a, 0xa2, 0x92, 0xec, 0x80, 0x7f, 0xe5, 0xcf, 0xc9, 0x1d, 0xf3, + 0x0d, 0x68, 0x97, 0x8e, 0x23, 0xf2, 0x47, 0x65, 0xbd, 0x02, 0xcf, 0xf8, 0x8e, 0x8b, 0x7c, 0x56, + 0x19, 0x78, 0x23, 0x69, 0x60, 0x24, 0xfb, 0x12, 0xe3, 0xf1, 0x1a, 0xd0, 0x26, 0x06, 0x7b, 0xf4, + 0x48, 0x3c, 0xf0, 0xf7, 0x12, 0x7f, 0x02, 0xf0, 0xf2, 0x09, 0xe7, 0xa2, 0x85, 0xd8, 0x84, 0x19, + 0x2e, 0x4f, 0x24, 0x69, 0x2f, 0x75, 0x5a, 0x2d, 0x8d, 0x0a, 0xe6, 0xcf, 0x7f, 0x68, 0xe2, 0xf2, + 0x87, 0x1c, 0x1c, 0x31, 0x3b, 0xc5, 0x73, 0x6d, 0x0f, 0xc0, 0xa1, 0xd0, 0x09, 0x34, 0x9d, 0xe4, + 0x76, 0xec, 0xd8, 0x2c, 0xcc, 0xf4, 0x4f, 0xf4, 0xaf, 0x5f, 0xbc, 0xf3, 0xe6, 0xeb, 0xaf, 0xf7, + 0xd9, 0x05, 0x54, 0xc6, 0xc6, 0x80, 0x0e, 0x26, 0x7f, 0xe8, 0x2e, 0xde, 0xf1, 0xef, 0xbd, 0x8b, + 0x77, 0xc2, 0xd8, 0x2e, 0xfa, 0x0c, 0x20, 0x4a, 0x76, 0x35, 0xba, 0xd9, 0xef, 0xf0, 0xde, 0x19, + 0x54, 0x28, 0x9d, 0x02, 0xa1, 0x79, 0xdf, 0x56, 0xbc, 0xe7, 0x51, 0xe9, 0x44, 0xde, 0xa2, 0x56, + 0xef, 0xd6, 0x7c, 0xea, 0xe1, 0x15, 0xd0, 0x17, 0x00, 0x51, 0xb2, 0xcc, 0x53, 0x69, 0xa7, 0xb6, + 0x66, 0x2a, 0xed, 0xf4, 0x1e, 0x2a, 0xde, 0x55, 0xb4, 0x6f, 0xa1, 0x85, 0xe3, 0x68, 0xeb, 0xda, + 0xf7, 0x38, 0x1b, 0xca, 0x47, 0x82, 0x57, 0x16, 0xf7, 0x0f, 0x2d, 0x70, 0x70, 0x68, 0x81, 0x9f, + 0x87, 0x16, 0x78, 0x77, 0x64, 0x65, 0x0e, 0x8e, 0xac, 0xcc, 0xf7, 0x23, 0x2b, 0xf3, 0x72, 0xce, + 0x69, 0xca, 0xb5, 0x4e, 0xdd, 0x6e, 0xb0, 0x0d, 0xfc, 0xf0, 0xc5, 0xf3, 0x07, 0x8f, 0xa8, 0xdc, + 0x66, 0x7c, 0x1d, 0x37, 0xd6, 0x48, 0xd3, 0xc5, 0xaf, 0xcc, 0x87, 0xb7, 0x3e, 0xa8, 0xde, 0xdc, + 0xf9, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xda, 0xea, 0xec, 0xc8, 0x28, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -610,7 +608,7 @@ func NewQueryDelegationClient(cc grpc1.ClientConn) QueryDelegationClient { func (c *queryDelegationClient) Delegator(ctx context.Context, in *QueryDelegatorRequest, opts ...grpc.CallOption) (*QueryDelegatorResponse, error) { out := new(QueryDelegatorResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryDelegation/Delegator", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryDelegation/Delegator", in, out, opts...) if err != nil { return nil, err } @@ -619,7 +617,7 @@ func (c *queryDelegationClient) Delegator(ctx context.Context, in *QueryDelegato func (c *queryDelegationClient) DelegatorsByStaker(ctx context.Context, in *QueryDelegatorsByStakerRequest, opts ...grpc.CallOption) (*QueryDelegatorsByStakerResponse, error) { out := new(QueryDelegatorsByStakerResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryDelegation/DelegatorsByStaker", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryDelegation/DelegatorsByStaker", in, out, opts...) if err != nil { return nil, err } @@ -628,7 +626,7 @@ func (c *queryDelegationClient) DelegatorsByStaker(ctx context.Context, in *Quer func (c *queryDelegationClient) StakersByDelegator(ctx context.Context, in *QueryStakersByDelegatorRequest, opts ...grpc.CallOption) (*QueryStakersByDelegatorResponse, error) { out := new(QueryStakersByDelegatorResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryDelegation/StakersByDelegator", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryDelegation/StakersByDelegator", in, out, opts...) if err != nil { return nil, err } @@ -675,7 +673,7 @@ func _QueryDelegation_Delegator_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryDelegation/Delegator", + FullMethod: "/kyve.query.types.QueryDelegation/Delegator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryDelegationServer).Delegator(ctx, req.(*QueryDelegatorRequest)) @@ -693,7 +691,7 @@ func _QueryDelegation_DelegatorsByStaker_Handler(srv interface{}, ctx context.Co } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryDelegation/DelegatorsByStaker", + FullMethod: "/kyve.query.types.QueryDelegation/DelegatorsByStaker", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryDelegationServer).DelegatorsByStaker(ctx, req.(*QueryDelegatorsByStakerRequest)) @@ -711,7 +709,7 @@ func _QueryDelegation_StakersByDelegator_Handler(srv interface{}, ctx context.Co } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryDelegation/StakersByDelegator", + FullMethod: "/kyve.query.types.QueryDelegation/StakersByDelegator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryDelegationServer).StakersByDelegator(ctx, req.(*QueryStakersByDelegatorRequest)) @@ -720,7 +718,7 @@ func _QueryDelegation_StakersByDelegator_Handler(srv interface{}, ctx context.Co } var _QueryDelegation_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryDelegation", + ServiceName: "kyve.query.types.QueryDelegation", HandlerType: (*QueryDelegationServer)(nil), Methods: []grpc.MethodDesc{ { @@ -737,7 +735,7 @@ var _QueryDelegation_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/delegation.proto", + Metadata: "kyve/query/types/delegation.proto", } func (m *QueryDelegatorRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/delegation.pb.gw.go b/x/query/types/delegation.pb.gw.go index 11579c52..f78eaa21 100644 --- a/x/query/types/delegation.pb.gw.go +++ b/x/query/types/delegation.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/delegation.proto +// source: kyve/query/types/delegation.proto /* Package types is a reverse proxy. diff --git a/x/query/types/funders.pb.go b/x/query/types/funders.pb.go index 8b8da549..70ffaf99 100644 --- a/x/query/types/funders.pb.go +++ b/x/query/types/funders.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/funders.proto +// source: kyve/query/types/funders.proto package types @@ -59,7 +59,7 @@ func (x FundingStatus) String() string { } func (FundingStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{0} + return fileDescriptor_1d1a459e90e9a56b, []int{0} } // Funder ... @@ -84,7 +84,7 @@ func (m *Funder) Reset() { *m = Funder{} } func (m *Funder) String() string { return proto.CompactTextString(m) } func (*Funder) ProtoMessage() {} func (*Funder) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{0} + return fileDescriptor_1d1a459e90e9a56b, []int{0} } func (m *Funder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -178,7 +178,7 @@ func (m *FundingStats) Reset() { *m = FundingStats{} } func (m *FundingStats) String() string { return proto.CompactTextString(m) } func (*FundingStats) ProtoMessage() {} func (*FundingStats) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{1} + return fileDescriptor_1d1a459e90e9a56b, []int{1} } func (m *FundingStats) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -253,7 +253,7 @@ func (m *Funding) Reset() { *m = Funding{} } func (m *Funding) String() string { return proto.CompactTextString(m) } func (*Funding) ProtoMessage() {} func (*Funding) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{2} + return fileDescriptor_1d1a459e90e9a56b, []int{2} } func (m *Funding) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -329,7 +329,7 @@ func (m *QueryFundersRequest) Reset() { *m = QueryFundersRequest{} } func (m *QueryFundersRequest) String() string { return proto.CompactTextString(m) } func (*QueryFundersRequest) ProtoMessage() {} func (*QueryFundersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{3} + return fileDescriptor_1d1a459e90e9a56b, []int{3} } func (m *QueryFundersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -384,7 +384,7 @@ func (m *QueryFundersResponse) Reset() { *m = QueryFundersResponse{} } func (m *QueryFundersResponse) String() string { return proto.CompactTextString(m) } func (*QueryFundersResponse) ProtoMessage() {} func (*QueryFundersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{4} + return fileDescriptor_1d1a459e90e9a56b, []int{4} } func (m *QueryFundersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,14 +432,14 @@ type QueryFunderRequest struct { // address ... Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // status ... - Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.v1beta1.FundingStatus" json:"status,omitempty"` + Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.types.FundingStatus" json:"status,omitempty"` } func (m *QueryFunderRequest) Reset() { *m = QueryFunderRequest{} } func (m *QueryFunderRequest) String() string { return proto.CompactTextString(m) } func (*QueryFunderRequest) ProtoMessage() {} func (*QueryFunderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{5} + return fileDescriptor_1d1a459e90e9a56b, []int{5} } func (m *QueryFunderRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,7 +494,7 @@ func (m *QueryFunderResponse) Reset() { *m = QueryFunderResponse{} } func (m *QueryFunderResponse) String() string { return proto.CompactTextString(m) } func (*QueryFunderResponse) ProtoMessage() {} func (*QueryFunderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{6} + return fileDescriptor_1d1a459e90e9a56b, []int{6} } func (m *QueryFunderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -544,14 +544,14 @@ type QueryFundingsByFunderRequest struct { // address ... Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"` // status ... - Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.v1beta1.FundingStatus" json:"status,omitempty"` + Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.types.FundingStatus" json:"status,omitempty"` } func (m *QueryFundingsByFunderRequest) Reset() { *m = QueryFundingsByFunderRequest{} } func (m *QueryFundingsByFunderRequest) String() string { return proto.CompactTextString(m) } func (*QueryFundingsByFunderRequest) ProtoMessage() {} func (*QueryFundingsByFunderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{7} + return fileDescriptor_1d1a459e90e9a56b, []int{7} } func (m *QueryFundingsByFunderRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -613,7 +613,7 @@ func (m *QueryFundingsByFunderResponse) Reset() { *m = QueryFundingsByFu func (m *QueryFundingsByFunderResponse) String() string { return proto.CompactTextString(m) } func (*QueryFundingsByFunderResponse) ProtoMessage() {} func (*QueryFundingsByFunderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{8} + return fileDescriptor_1d1a459e90e9a56b, []int{8} } func (m *QueryFundingsByFunderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -663,14 +663,14 @@ type QueryFundingsByPoolRequest struct { // pool_id ... PoolId uint64 `protobuf:"varint,2,opt,name=pool_id,json=poolId,proto3" json:"pool_id,omitempty"` // status ... - Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.v1beta1.FundingStatus" json:"status,omitempty"` + Status FundingStatus `protobuf:"varint,3,opt,name=status,proto3,enum=kyve.query.types.FundingStatus" json:"status,omitempty"` } func (m *QueryFundingsByPoolRequest) Reset() { *m = QueryFundingsByPoolRequest{} } func (m *QueryFundingsByPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryFundingsByPoolRequest) ProtoMessage() {} func (*QueryFundingsByPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{9} + return fileDescriptor_1d1a459e90e9a56b, []int{9} } func (m *QueryFundingsByPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -732,7 +732,7 @@ func (m *QueryFundingsByPoolResponse) Reset() { *m = QueryFundingsByPool func (m *QueryFundingsByPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryFundingsByPoolResponse) ProtoMessage() {} func (*QueryFundingsByPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a182f068d9f0dba9, []int{10} + return fileDescriptor_1d1a459e90e9a56b, []int{10} } func (m *QueryFundingsByPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -776,84 +776,84 @@ func (m *QueryFundingsByPoolResponse) GetFundings() []Funding { } func init() { - proto.RegisterEnum("kyve.query.v1beta1.FundingStatus", FundingStatus_name, FundingStatus_value) - proto.RegisterType((*Funder)(nil), "kyve.query.v1beta1.Funder") - proto.RegisterType((*FundingStats)(nil), "kyve.query.v1beta1.FundingStats") - proto.RegisterType((*Funding)(nil), "kyve.query.v1beta1.Funding") - proto.RegisterType((*QueryFundersRequest)(nil), "kyve.query.v1beta1.QueryFundersRequest") - proto.RegisterType((*QueryFundersResponse)(nil), "kyve.query.v1beta1.QueryFundersResponse") - proto.RegisterType((*QueryFunderRequest)(nil), "kyve.query.v1beta1.QueryFunderRequest") - proto.RegisterType((*QueryFunderResponse)(nil), "kyve.query.v1beta1.QueryFunderResponse") - proto.RegisterType((*QueryFundingsByFunderRequest)(nil), "kyve.query.v1beta1.QueryFundingsByFunderRequest") - proto.RegisterType((*QueryFundingsByFunderResponse)(nil), "kyve.query.v1beta1.QueryFundingsByFunderResponse") - proto.RegisterType((*QueryFundingsByPoolRequest)(nil), "kyve.query.v1beta1.QueryFundingsByPoolRequest") - proto.RegisterType((*QueryFundingsByPoolResponse)(nil), "kyve.query.v1beta1.QueryFundingsByPoolResponse") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/funders.proto", fileDescriptor_a182f068d9f0dba9) } - -var fileDescriptor_a182f068d9f0dba9 = []byte{ - // 952 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x96, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xc7, 0x3d, 0xce, 0xc6, 0x2e, 0xcf, 0x69, 0x08, 0xd3, 0x94, 0x2c, 0x9b, 0xd6, 0xb8, 0x06, - 0x12, 0x2b, 0x42, 0xbb, 0x89, 0x11, 0x15, 0x20, 0x71, 0x48, 0x9a, 0xa4, 0xb2, 0x90, 0xac, 0xb0, - 0x49, 0x2a, 0xc1, 0x65, 0xb5, 0xf6, 0x4e, 0x9d, 0x55, 0xec, 0x9d, 0xed, 0xce, 0x6c, 0x8b, 0x55, - 0xf5, 0x00, 0x17, 0x7a, 0x44, 0xe2, 0xc8, 0x11, 0x21, 0xc4, 0x0d, 0x6e, 0x48, 0xdc, 0x51, 0x8f, - 0x95, 0xb8, 0x70, 0x42, 0x28, 0x41, 0xfc, 0x15, 0x1c, 0xd0, 0xfc, 0xb0, 0x6b, 0x3b, 0x76, 0x5c, - 0xd4, 0x1c, 0xb8, 0xed, 0xbc, 0xf7, 0xbe, 0x7e, 0x9f, 0xf7, 0x63, 0xd6, 0x0b, 0xa5, 0xe3, 0xee, - 0x7d, 0xe2, 0xdc, 0x4b, 0x49, 0xd2, 0x75, 0xee, 0x6f, 0x34, 0x08, 0xf7, 0x37, 0x9c, 0xbb, 0x69, - 0x14, 0x90, 0x84, 0xd9, 0x71, 0x42, 0x39, 0xc5, 0x58, 0x44, 0xd8, 0x32, 0xc2, 0xd6, 0x11, 0xd6, - 0x5a, 0x93, 0xb2, 0x0e, 0x65, 0x4e, 0xc3, 0x67, 0xa3, 0xe2, 0xd8, 0x6f, 0x85, 0x91, 0xcf, 0x43, - 0x1a, 0x29, 0xbd, 0xb5, 0xd8, 0xa2, 0x2d, 0x2a, 0x1f, 0x1d, 0xf1, 0xa4, 0xad, 0xd7, 0x5a, 0x94, - 0xb6, 0xda, 0xc4, 0xf1, 0xe3, 0xd0, 0xf1, 0xa3, 0x88, 0x72, 0x29, 0xd1, 0x39, 0xcb, 0x7f, 0x23, - 0xc8, 0xed, 0x4a, 0x0a, 0x6c, 0x42, 0xde, 0x0f, 0x82, 0x84, 0x30, 0x66, 0xa2, 0x12, 0xaa, 0xbc, - 0xe4, 0xf6, 0x8e, 0xc2, 0xd3, 0xa1, 0x51, 0x78, 0x4c, 0x12, 0x33, 0xab, 0x3c, 0xfa, 0x88, 0x2d, - 0xb8, 0x14, 0x06, 0x24, 0xe2, 0x21, 0xef, 0x9a, 0x33, 0xd2, 0xd5, 0x3f, 0x0b, 0xd5, 0x03, 0xd2, - 0x60, 0x21, 0x27, 0xa6, 0xa1, 0x54, 0xfa, 0x28, 0x3c, 0x4d, 0x1a, 0x71, 0xbf, 0xc9, 0xcd, 0x59, - 0xe5, 0xd1, 0x47, 0x5c, 0x82, 0x42, 0x40, 0x58, 0x33, 0x09, 0x63, 0x01, 0x69, 0xe6, 0xa4, 0x77, - 0xd0, 0x84, 0x6f, 0xc2, 0x2c, 0xe3, 0x3e, 0x67, 0x66, 0xbe, 0x84, 0x2a, 0x85, 0x6a, 0xc9, 0x3e, - 0xdb, 0x34, 0x5b, 0x14, 0x14, 0x46, 0xad, 0x7d, 0x11, 0xe7, 0xaa, 0xf0, 0xf2, 0xaf, 0x08, 0xe6, - 0x06, 0xed, 0xb8, 0x02, 0x0b, 0x9c, 0x72, 0xbf, 0xed, 0xa5, 0x8c, 0x04, 0x9e, 0x98, 0x84, 0xaa, - 0xdb, 0x70, 0xe7, 0xa5, 0xfd, 0x90, 0x91, 0x40, 0x08, 0x18, 0xae, 0xc2, 0x55, 0x15, 0xe9, 0xb7, - 0xdb, 0xb4, 0xe9, 0xf3, 0x7e, 0x78, 0x56, 0x86, 0x5f, 0x91, 0xce, 0xcd, 0x9e, 0x4f, 0x69, 0xde, - 0x85, 0x25, 0xad, 0xe9, 0xd0, 0x34, 0xe2, 0x5e, 0x4c, 0x12, 0xaf, 0x91, 0x46, 0x41, 0x9b, 0xc8, - 0x3e, 0x19, 0xee, 0xa2, 0x52, 0x49, 0xef, 0x1e, 0x49, 0xb6, 0xa4, 0x0f, 0xdf, 0x80, 0xb9, 0x98, - 0xd2, 0x36, 0x93, 0x09, 0x48, 0x60, 0x1a, 0xa5, 0x99, 0x8a, 0xe1, 0x16, 0xa4, 0x4d, 0x8e, 0x29, - 0x28, 0xff, 0x88, 0x20, 0xaf, 0x0b, 0xc1, 0x6f, 0xc1, 0xbc, 0x5a, 0x21, 0x6f, 0x78, 0x72, 0x97, - 0x95, 0x75, 0x53, 0xcf, 0x6f, 0x09, 0xf2, 0xe2, 0x17, 0xbc, 0x30, 0xd0, 0xc8, 0x39, 0x71, 0xac, - 0x05, 0xf8, 0x55, 0xc8, 0x29, 0x3e, 0x0d, 0xa5, 0x4f, 0x78, 0x0d, 0x5e, 0x39, 0xcb, 0x6d, 0xc8, - 0x90, 0x97, 0xfd, 0xb3, 0xc8, 0xaa, 0x52, 0x8d, 0x3c, 0x2b, 0xc3, 0x0a, 0xd2, 0xa6, 0x91, 0x53, - 0xb8, 0xf2, 0xb1, 0x18, 0x90, 0x5a, 0x34, 0xe6, 0x92, 0x7b, 0x29, 0x61, 0x1c, 0xef, 0x02, 0x3c, - 0xdb, 0x61, 0x49, 0x5e, 0xa8, 0xae, 0xd8, 0x6a, 0xe1, 0x6d, 0xb1, 0xf0, 0x23, 0x63, 0xdd, 0xf3, - 0x5b, 0x44, 0x6b, 0xdd, 0x01, 0xa5, 0xa8, 0x82, 0x11, 0x3f, 0x69, 0x1e, 0xe9, 0xed, 0xd4, 0xa7, - 0xf2, 0x37, 0x08, 0x16, 0x87, 0xf3, 0xb2, 0x98, 0x46, 0x8c, 0xe0, 0xdb, 0x63, 0x12, 0xaf, 0x4e, - 0x4d, 0xac, 0xc4, 0x43, 0x99, 0x3f, 0x80, 0xbc, 0xbe, 0xc2, 0x66, 0xb6, 0x34, 0x53, 0x29, 0x54, - 0xad, 0x49, 0xeb, 0x48, 0x92, 0x2d, 0xe3, 0xc9, 0x1f, 0xaf, 0x67, 0xdc, 0x9e, 0xa0, 0x1c, 0x02, - 0x1e, 0x80, 0xeb, 0xf5, 0x64, 0xf2, 0x25, 0x7c, 0x1f, 0x72, 0x62, 0x93, 0x53, 0x26, 0x67, 0x35, - 0x5f, 0xbd, 0x31, 0x65, 0xf3, 0x53, 0xe6, 0x6a, 0x41, 0xf9, 0x31, 0x1a, 0x1a, 0x40, 0xbf, 0x0f, - 0x55, 0xc8, 0x29, 0x1a, 0xdd, 0x83, 0x73, 0xe8, 0x5d, 0x1d, 0x89, 0x3f, 0x84, 0x4b, 0x77, 0x55, - 0x92, 0x5e, 0xcd, 0xcb, 0xe7, 0x80, 0xe8, 0xa2, 0xfb, 0x92, 0xf2, 0x2f, 0x08, 0xae, 0xf5, 0x51, - 0x84, 0x65, 0x6b, 0xa4, 0x01, 0x17, 0xb5, 0x14, 0x03, 0x8d, 0xcc, 0x5e, 0x58, 0x23, 0xbf, 0x47, - 0x70, 0x7d, 0x02, 0xfd, 0x45, 0xaf, 0xd6, 0x0b, 0xf6, 0xf9, 0x67, 0x04, 0xd6, 0x08, 0xe9, 0x1e, - 0xa5, 0xed, 0x8b, 0xee, 0xf2, 0xc4, 0x37, 0xcb, 0x0b, 0x34, 0xf9, 0x3b, 0x04, 0xcb, 0x63, 0xd1, - 0xff, 0x5f, 0x2d, 0x5e, 0xeb, 0xc0, 0xe5, 0xa1, 0x02, 0x70, 0x11, 0xac, 0xdd, 0xc3, 0xfa, 0x76, - 0xad, 0x7e, 0xdb, 0xdb, 0x3f, 0xd8, 0x3c, 0x38, 0xdc, 0xf7, 0x0e, 0xeb, 0xfb, 0x7b, 0x3b, 0xb7, - 0x6a, 0xbb, 0xb5, 0x9d, 0xed, 0x85, 0x0c, 0x7e, 0x0d, 0xae, 0x8e, 0xf8, 0x37, 0x6f, 0x1d, 0xd4, - 0xee, 0xec, 0x2c, 0x20, 0xbc, 0x0c, 0x4b, 0x23, 0xae, 0x5a, 0x5d, 0x3b, 0xb3, 0x96, 0xf1, 0xf8, - 0xdb, 0x62, 0xa6, 0xfa, 0x8f, 0x01, 0x73, 0x83, 0x6f, 0x33, 0xfc, 0xb9, 0xfe, 0x23, 0x10, 0xcf, - 0xab, 0xe3, 0xc0, 0xc7, 0xbc, 0x73, 0xad, 0xca, 0xf4, 0x40, 0xd5, 0xa9, 0xf2, 0x1b, 0x5f, 0xfc, - 0xf6, 0xd7, 0xd7, 0xd9, 0xeb, 0x78, 0xd9, 0x99, 0xfc, 0xe1, 0x82, 0xbf, 0x7c, 0xf6, 0xf9, 0xb0, - 0x32, 0xe5, 0x97, 0x7b, 0x04, 0xab, 0x53, 0xe3, 0x34, 0xc0, 0xdb, 0x12, 0x60, 0x05, 0xbf, 0x39, - 0x19, 0xc0, 0x79, 0xa8, 0x2f, 0xf5, 0x23, 0xfc, 0x13, 0x82, 0x85, 0xd1, 0x5b, 0x89, 0xd7, 0xcf, - 0xcd, 0x35, 0xe6, 0xf5, 0x63, 0x6d, 0xfc, 0x07, 0x85, 0xe6, 0x7c, 0x4f, 0x72, 0x56, 0xf1, 0xfa, - 0x24, 0x4e, 0xa1, 0xf2, 0x1a, 0x5d, 0xef, 0x0c, 0xf3, 0x0f, 0x08, 0xe6, 0x87, 0x97, 0x1c, 0xdb, - 0xcf, 0x91, 0x7f, 0xe0, 0x22, 0x5b, 0xce, 0x73, 0xc7, 0x6b, 0xda, 0x9b, 0x92, 0x76, 0x1d, 0xdb, - 0xd3, 0x68, 0xc5, 0x45, 0x76, 0x1e, 0xea, 0xdb, 0xfd, 0x68, 0x6b, 0xfb, 0xc9, 0x49, 0x11, 0x3d, - 0x3d, 0x29, 0xa2, 0x3f, 0x4f, 0x8a, 0xe8, 0xab, 0xd3, 0x62, 0xe6, 0xe9, 0x69, 0x31, 0xf3, 0xfb, - 0x69, 0x31, 0xf3, 0xe9, 0x5a, 0x2b, 0xe4, 0x47, 0x69, 0xc3, 0x6e, 0xd2, 0x8e, 0xf3, 0xd1, 0x27, - 0x77, 0x76, 0xea, 0x84, 0x3f, 0xa0, 0xc9, 0xb1, 0xd3, 0x3c, 0xf2, 0xc3, 0xc8, 0xf9, 0x4c, 0xa7, - 0xe0, 0xdd, 0x98, 0xb0, 0x46, 0x4e, 0x7e, 0x75, 0xbe, 0xf3, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x7e, 0x45, 0x8a, 0xda, 0x0d, 0x0b, 0x00, 0x00, + proto.RegisterEnum("kyve.query.types.FundingStatus", FundingStatus_name, FundingStatus_value) + proto.RegisterType((*Funder)(nil), "kyve.query.types.Funder") + proto.RegisterType((*FundingStats)(nil), "kyve.query.types.FundingStats") + proto.RegisterType((*Funding)(nil), "kyve.query.types.Funding") + proto.RegisterType((*QueryFundersRequest)(nil), "kyve.query.types.QueryFundersRequest") + proto.RegisterType((*QueryFundersResponse)(nil), "kyve.query.types.QueryFundersResponse") + proto.RegisterType((*QueryFunderRequest)(nil), "kyve.query.types.QueryFunderRequest") + proto.RegisterType((*QueryFunderResponse)(nil), "kyve.query.types.QueryFunderResponse") + proto.RegisterType((*QueryFundingsByFunderRequest)(nil), "kyve.query.types.QueryFundingsByFunderRequest") + proto.RegisterType((*QueryFundingsByFunderResponse)(nil), "kyve.query.types.QueryFundingsByFunderResponse") + proto.RegisterType((*QueryFundingsByPoolRequest)(nil), "kyve.query.types.QueryFundingsByPoolRequest") + proto.RegisterType((*QueryFundingsByPoolResponse)(nil), "kyve.query.types.QueryFundingsByPoolResponse") +} + +func init() { proto.RegisterFile("kyve/query/types/funders.proto", fileDescriptor_1d1a459e90e9a56b) } + +var fileDescriptor_1d1a459e90e9a56b = []byte{ + // 959 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x38, 0x8e, 0x5d, 0x9e, 0xd3, 0x60, 0xa6, 0x29, 0xd9, 0x3a, 0xed, 0xd6, 0x98, 0x26, + 0x58, 0x51, 0xd9, 0x4d, 0xcd, 0xaf, 0x4a, 0x9c, 0x92, 0x26, 0xa9, 0x2c, 0x24, 0x2b, 0x6c, 0x92, + 0x4a, 0x70, 0x59, 0xad, 0xbd, 0x53, 0x67, 0x15, 0x7b, 0xc7, 0xdd, 0x99, 0x6d, 0xb1, 0xaa, 0x5c, + 0x80, 0x03, 0x47, 0x24, 0x4e, 0x9c, 0xab, 0x1e, 0x91, 0x38, 0x21, 0xf1, 0x0f, 0xa0, 0x1e, 0x2b, + 0x71, 0xe1, 0x84, 0x50, 0xd2, 0x1b, 0xff, 0x04, 0x9a, 0x1f, 0x76, 0xd7, 0x8e, 0x1d, 0x47, 0x90, + 0x03, 0xb7, 0x7d, 0xef, 0x7b, 0xdf, 0xbe, 0xef, 0xbd, 0x79, 0x6f, 0x34, 0x60, 0x1e, 0xf6, 0x1e, + 0x13, 0xfb, 0x51, 0x4c, 0xa2, 0x9e, 0xcd, 0x7b, 0x5d, 0xc2, 0xec, 0x87, 0x71, 0xe8, 0x93, 0x88, + 0x59, 0xdd, 0x88, 0x72, 0x8a, 0x0b, 0x02, 0xb7, 0x24, 0x6e, 0x49, 0xbc, 0xb8, 0xda, 0xa4, 0xac, + 0x43, 0x99, 0xdd, 0xf0, 0x58, 0x9f, 0xf8, 0xf8, 0x4e, 0x83, 0x70, 0xef, 0x8e, 0xdd, 0xf5, 0x5a, + 0x41, 0xe8, 0xf1, 0x80, 0x86, 0x8a, 0x5d, 0x5c, 0x68, 0xd1, 0x16, 0x95, 0x9f, 0xb6, 0xf8, 0xd2, + 0xde, 0xeb, 0x2d, 0x4a, 0x5b, 0x6d, 0x62, 0x7b, 0xdd, 0xc0, 0xf6, 0xc2, 0x90, 0x72, 0x49, 0xd1, + 0x19, 0xcb, 0xaf, 0x10, 0x64, 0xb7, 0xa5, 0x06, 0x6c, 0x40, 0xce, 0xf3, 0xfd, 0x88, 0x30, 0x66, + 0xa0, 0x12, 0xaa, 0xbc, 0xe1, 0xf4, 0x4d, 0x81, 0x74, 0x68, 0x18, 0x1c, 0x92, 0xc8, 0x48, 0x2b, + 0x44, 0x9b, 0xb8, 0x08, 0x97, 0x02, 0x9f, 0x84, 0x3c, 0xe0, 0x3d, 0x63, 0x46, 0x42, 0x03, 0x5b, + 0xb0, 0x9e, 0x90, 0x06, 0x0b, 0x38, 0x31, 0x32, 0x8a, 0xa5, 0x4d, 0x81, 0x34, 0x69, 0xc8, 0xbd, + 0x26, 0x37, 0x66, 0x15, 0xa2, 0x4d, 0x5c, 0x82, 0xbc, 0x4f, 0x58, 0x33, 0x0a, 0xba, 0x42, 0xa4, + 0x91, 0x95, 0x68, 0xd2, 0x85, 0x3f, 0x84, 0x59, 0xc6, 0x3d, 0xce, 0x8c, 0x5c, 0x09, 0x55, 0xf2, + 0x55, 0xd3, 0x1a, 0x6d, 0x99, 0x25, 0xca, 0x09, 0xc2, 0xd6, 0xae, 0x88, 0x72, 0x54, 0x70, 0xf9, + 0x37, 0x04, 0x73, 0x49, 0x3f, 0xae, 0x40, 0x81, 0x53, 0xee, 0xb5, 0xdd, 0x98, 0x11, 0xdf, 0x15, + 0xa7, 0xa0, 0xaa, 0xce, 0x38, 0xf3, 0xd2, 0xbf, 0xcf, 0x88, 0x2f, 0x08, 0x0c, 0x57, 0xe1, 0xaa, + 0x8a, 0xf4, 0xda, 0x6d, 0xda, 0xf4, 0xf8, 0x20, 0x3c, 0x2d, 0xc3, 0xaf, 0x48, 0x70, 0xbd, 0x8f, + 0x29, 0xce, 0x47, 0xb0, 0xa8, 0x39, 0x1d, 0x1a, 0x87, 0xdc, 0xed, 0x92, 0xc8, 0x6d, 0xc4, 0xa1, + 0xdf, 0x26, 0xb2, 0x4b, 0x19, 0x67, 0x41, 0xb1, 0x24, 0xba, 0x43, 0xa2, 0x0d, 0x89, 0xe1, 0x77, + 0x60, 0xae, 0x4b, 0x69, 0x9b, 0xc9, 0x04, 0xc4, 0x37, 0x32, 0xa5, 0x99, 0x4a, 0xc6, 0xc9, 0x4b, + 0x9f, 0x3c, 0x24, 0xbf, 0xfc, 0x33, 0x82, 0x9c, 0x2e, 0x04, 0x2f, 0xc3, 0xbc, 0x1a, 0x1f, 0x77, + 0xf8, 0xdc, 0x2e, 0x2b, 0xef, 0xba, 0x3e, 0xbd, 0x45, 0xc8, 0x89, 0x3f, 0xb8, 0x81, 0xaf, 0x25, + 0x67, 0x85, 0x59, 0xf3, 0xf1, 0xdb, 0x90, 0x55, 0xfa, 0xb4, 0x28, 0x6d, 0xe1, 0x55, 0x78, 0xeb, + 0xb4, 0xee, 0x8c, 0x0c, 0x79, 0xd3, 0x3b, 0x2d, 0x59, 0x55, 0xaa, 0x25, 0xcf, 0xca, 0xb0, 0xbc, + 0xf4, 0x69, 0xc9, 0x31, 0x5c, 0xf9, 0x5c, 0x1c, 0x8f, 0x1a, 0x33, 0xe6, 0x90, 0x47, 0x31, 0x61, + 0x1c, 0x6f, 0x03, 0xbc, 0x9e, 0x60, 0xa9, 0x3c, 0x5f, 0x5d, 0xb1, 0xd4, 0xb8, 0x5b, 0x62, 0xdc, + 0xf5, 0xa1, 0xea, 0x71, 0xb7, 0x76, 0xbc, 0x16, 0xd1, 0x5c, 0x27, 0xc1, 0x14, 0x55, 0x30, 0xe2, + 0x45, 0xcd, 0x03, 0x3d, 0x9b, 0xda, 0x2a, 0xff, 0x88, 0x60, 0x61, 0x38, 0x2f, 0xeb, 0xd2, 0x90, + 0x11, 0x7c, 0x7f, 0x4c, 0xe2, 0xf7, 0xa6, 0x26, 0x56, 0xe4, 0xa1, 0xcc, 0x77, 0x21, 0xa7, 0xd7, + 0xd7, 0x48, 0x97, 0x66, 0x2a, 0xf9, 0xaa, 0x31, 0x7e, 0x18, 0x49, 0xb4, 0x91, 0x79, 0xf1, 0xe7, + 0xcd, 0x94, 0xd3, 0x0f, 0x2f, 0xb7, 0x00, 0x27, 0xa4, 0xf5, 0x3b, 0x32, 0x79, 0x01, 0x3f, 0x81, + 0xac, 0x98, 0xe3, 0x98, 0xc9, 0x93, 0x9a, 0xaf, 0xde, 0x3c, 0x73, 0xea, 0x63, 0xe6, 0xe8, 0xf0, + 0xf2, 0xb7, 0x68, 0xa8, 0xf9, 0x83, 0x1e, 0xac, 0x41, 0x56, 0x69, 0xd1, 0xf5, 0x4f, 0x54, 0xee, + 0xe8, 0x38, 0xfc, 0x29, 0x5c, 0x7a, 0xa8, 0x52, 0xf4, 0xab, 0xbd, 0x36, 0x51, 0x84, 0x2e, 0x77, + 0x40, 0x28, 0xff, 0x8a, 0xe0, 0xfa, 0x40, 0x86, 0xf0, 0x6c, 0x8c, 0x94, 0x7e, 0x51, 0xc3, 0x90, + 0x68, 0x61, 0xfa, 0x82, 0x5a, 0xf8, 0x1c, 0xc1, 0x8d, 0x09, 0xda, 0x2f, 0x7a, 0xa0, 0xfe, 0x53, + 0x8f, 0x7f, 0x41, 0x50, 0x1c, 0xd1, 0xb9, 0x43, 0x69, 0xfb, 0xa2, 0x3b, 0x3c, 0xf1, 0x36, 0xf9, + 0xd7, 0x0d, 0x7e, 0x86, 0x60, 0x69, 0xac, 0xf0, 0xff, 0x53, 0x7b, 0x57, 0x3b, 0x70, 0x79, 0x48, + 0x3e, 0x36, 0xa1, 0xb8, 0xbd, 0x5f, 0xdf, 0xac, 0xd5, 0xef, 0xbb, 0xbb, 0x7b, 0xeb, 0x7b, 0xfb, + 0xbb, 0xee, 0x7e, 0x7d, 0x77, 0x67, 0xeb, 0x5e, 0x6d, 0xbb, 0xb6, 0xb5, 0x59, 0x48, 0xe1, 0x6b, + 0x70, 0x75, 0x04, 0x5f, 0xbf, 0xb7, 0x57, 0x7b, 0xb0, 0x55, 0x40, 0x78, 0x09, 0x16, 0x47, 0xa0, + 0x5a, 0x5d, 0x83, 0xe9, 0x62, 0xe6, 0xbb, 0x67, 0x66, 0xaa, 0xfa, 0x77, 0x06, 0xe6, 0x92, 0xb7, + 0x17, 0x3e, 0x52, 0xf7, 0xbe, 0xf8, 0x5c, 0x3e, 0xad, 0x7a, 0xcc, 0x05, 0x5b, 0x5c, 0x99, 0x16, + 0xa6, 0x5a, 0x54, 0x7e, 0xf7, 0xeb, 0xdf, 0x5f, 0xfd, 0x90, 0xbe, 0x81, 0x97, 0xec, 0xc4, 0xeb, + 0xa4, 0xff, 0xc8, 0xd0, 0x37, 0x16, 0xfe, 0xe6, 0xf5, 0x3b, 0xe1, 0xd6, 0x99, 0xff, 0xed, 0x67, + 0x5f, 0x9e, 0x12, 0xa5, 0x93, 0xdf, 0x96, 0xc9, 0x57, 0xf0, 0xad, 0xc9, 0xc9, 0xed, 0xa7, 0x7a, + 0x87, 0x8f, 0xf0, 0x4f, 0x08, 0x0a, 0xa3, 0x6b, 0x88, 0xad, 0x33, 0x32, 0x8d, 0xb9, 0x6b, 0x8a, + 0xf6, 0xb9, 0xe3, 0xb5, 0xc6, 0xbb, 0x52, 0x63, 0x15, 0xaf, 0x4d, 0xd2, 0x28, 0x58, 0x6e, 0xa3, + 0xe7, 0x9e, 0xd2, 0xfb, 0x1c, 0xc1, 0xfc, 0xf0, 0x54, 0xe3, 0xdb, 0x53, 0xb3, 0x27, 0xb6, 0xb6, + 0xf8, 0xfe, 0x39, 0xa3, 0xb5, 0xd2, 0x8f, 0xa5, 0xd2, 0x35, 0x6c, 0x4d, 0x53, 0x2a, 0x76, 0xd6, + 0x7e, 0xaa, 0x17, 0xf9, 0x68, 0x63, 0xf3, 0xc5, 0xb1, 0x89, 0x5e, 0x1e, 0x9b, 0xe8, 0xaf, 0x63, + 0x13, 0x7d, 0x7f, 0x62, 0xa6, 0x5e, 0x9e, 0x98, 0xa9, 0x3f, 0x4e, 0xcc, 0xd4, 0x97, 0xab, 0xad, + 0x80, 0x1f, 0xc4, 0x0d, 0xab, 0x49, 0x3b, 0xf6, 0x67, 0x5f, 0x3c, 0xd8, 0xaa, 0x13, 0xfe, 0x84, + 0x46, 0x87, 0x76, 0xf3, 0xc0, 0x0b, 0x42, 0xfb, 0xab, 0xe4, 0x5b, 0xb6, 0x91, 0x95, 0x4f, 0xca, + 0x0f, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0x12, 0xc4, 0x06, 0x37, 0xe6, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -888,7 +888,7 @@ func NewQueryFundersClient(cc grpc1.ClientConn) QueryFundersClient { func (c *queryFundersClient) Funders(ctx context.Context, in *QueryFundersRequest, opts ...grpc.CallOption) (*QueryFundersResponse, error) { out := new(QueryFundersResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryFunders/Funders", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryFunders/Funders", in, out, opts...) if err != nil { return nil, err } @@ -897,7 +897,7 @@ func (c *queryFundersClient) Funders(ctx context.Context, in *QueryFundersReques func (c *queryFundersClient) Funder(ctx context.Context, in *QueryFunderRequest, opts ...grpc.CallOption) (*QueryFunderResponse, error) { out := new(QueryFunderResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryFunders/Funder", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryFunders/Funder", in, out, opts...) if err != nil { return nil, err } @@ -906,7 +906,7 @@ func (c *queryFundersClient) Funder(ctx context.Context, in *QueryFunderRequest, func (c *queryFundersClient) FundingsByFunder(ctx context.Context, in *QueryFundingsByFunderRequest, opts ...grpc.CallOption) (*QueryFundingsByFunderResponse, error) { out := new(QueryFundingsByFunderResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryFunders/FundingsByFunder", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryFunders/FundingsByFunder", in, out, opts...) if err != nil { return nil, err } @@ -915,7 +915,7 @@ func (c *queryFundersClient) FundingsByFunder(ctx context.Context, in *QueryFund func (c *queryFundersClient) FundingsByPool(ctx context.Context, in *QueryFundingsByPoolRequest, opts ...grpc.CallOption) (*QueryFundingsByPoolResponse, error) { out := new(QueryFundingsByPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryFunders/FundingsByPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryFunders/FundingsByPool", in, out, opts...) if err != nil { return nil, err } @@ -965,7 +965,7 @@ func _QueryFunders_Funders_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryFunders/Funders", + FullMethod: "/kyve.query.types.QueryFunders/Funders", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryFundersServer).Funders(ctx, req.(*QueryFundersRequest)) @@ -983,7 +983,7 @@ func _QueryFunders_Funder_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryFunders/Funder", + FullMethod: "/kyve.query.types.QueryFunders/Funder", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryFundersServer).Funder(ctx, req.(*QueryFunderRequest)) @@ -1001,7 +1001,7 @@ func _QueryFunders_FundingsByFunder_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryFunders/FundingsByFunder", + FullMethod: "/kyve.query.types.QueryFunders/FundingsByFunder", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryFundersServer).FundingsByFunder(ctx, req.(*QueryFundingsByFunderRequest)) @@ -1019,7 +1019,7 @@ func _QueryFunders_FundingsByPool_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryFunders/FundingsByPool", + FullMethod: "/kyve.query.types.QueryFunders/FundingsByPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryFundersServer).FundingsByPool(ctx, req.(*QueryFundingsByPoolRequest)) @@ -1028,7 +1028,7 @@ func _QueryFunders_FundingsByPool_Handler(srv interface{}, ctx context.Context, } var _QueryFunders_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryFunders", + ServiceName: "kyve.query.types.QueryFunders", HandlerType: (*QueryFundersServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1049,7 +1049,7 @@ var _QueryFunders_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/funders.proto", + Metadata: "kyve/query/types/funders.proto", } func (m *Funder) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/funders.pb.gw.go b/x/query/types/funders.pb.gw.go index b9d4697e..8197dd75 100644 --- a/x/query/types/funders.pb.gw.go +++ b/x/query/types/funders.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/funders.proto +// source: kyve/query/types/funders.proto /* Package types is a reverse proxy. diff --git a/x/query/types/params.pb.go b/x/query/types/params.pb.go index 2760847e..8e69efbd 100644 --- a/x/query/types/params.pb.go +++ b/x/query/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/params.proto +// source: kyve/query/types/params.proto package types @@ -43,7 +43,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b5269c0a69f1d3d4, []int{0} + return fileDescriptor_ba8922e31a015887, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +94,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b5269c0a69f1d3d4, []int{1} + return fileDescriptor_ba8922e31a015887, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,44 +173,44 @@ func (m *QueryParamsResponse) GetFundersParams() *types5.Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.query.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.query.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.query.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.query.types.QueryParamsResponse") } -func init() { proto.RegisterFile("kyve/query/v1beta1/params.proto", fileDescriptor_b5269c0a69f1d3d4) } +func init() { proto.RegisterFile("kyve/query/types/params.proto", fileDescriptor_ba8922e31a015887) } -var fileDescriptor_b5269c0a69f1d3d4 = []byte{ +var fileDescriptor_ba8922e31a015887 = []byte{ // 473 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xb1, 0x8f, 0xd3, 0x30, - 0x14, 0xc6, 0x9b, 0x3b, 0x28, 0xc2, 0xe5, 0x4e, 0x10, 0x40, 0x40, 0xa8, 0x72, 0x47, 0x84, 0x00, - 0x31, 0xd8, 0xea, 0xc1, 0xc4, 0x84, 0x38, 0x98, 0x40, 0x08, 0x18, 0x90, 0x60, 0x41, 0x4e, 0x6b, - 0xdc, 0xa8, 0x69, 0x5e, 0x1a, 0x3b, 0x81, 0x0e, 0x2c, 0xcc, 0x0c, 0x48, 0xfc, 0x53, 0x8c, 0x95, - 0x58, 0x18, 0x51, 0x8b, 0xf8, 0x3b, 0x50, 0xec, 0x97, 0xa6, 0x34, 0x2d, 0x37, 0xb5, 0x7e, 0xef, - 0xfb, 0x7e, 0xcf, 0xf9, 0xf2, 0x42, 0x0e, 0x46, 0xd3, 0x42, 0xb0, 0x49, 0x2e, 0xb2, 0x29, 0x2b, - 0x7a, 0xa1, 0xd0, 0xbc, 0xc7, 0x52, 0x9e, 0xf1, 0xb1, 0xa2, 0x69, 0x06, 0x1a, 0x5c, 0xb7, 0x14, - 0x50, 0x23, 0xa0, 0x28, 0xf0, 0xae, 0xf4, 0x41, 0x8d, 0x41, 0x31, 0x09, 0x05, 0x2b, 0x7a, 0xe5, - 0x8f, 0x15, 0x7b, 0x5d, 0x09, 0x20, 0x63, 0xc1, 0x78, 0x1a, 0x31, 0x9e, 0x24, 0xa0, 0xb9, 0x8e, - 0x20, 0x41, 0x94, 0x77, 0xc3, 0xcc, 0x0a, 0xf3, 0x64, 0x10, 0x0b, 0xb5, 0x71, 0x9a, 0x77, 0xd3, - 0x48, 0x06, 0x22, 0x16, 0xd2, 0x58, 0x37, 0xab, 0x2c, 0xe8, 0x7d, 0x9e, 0x0c, 0x44, 0xb6, 0x05, - 0x74, 0x68, 0x24, 0x32, 0x86, 0x90, 0xc7, 0x4b, 0x85, 0x3d, 0xa2, 0xc2, 0x37, 0x8a, 0x14, 0x20, - 0xfe, 0xdf, 0x10, 0xa5, 0xf9, 0x68, 0xdb, 0x90, 0xe0, 0x12, 0x71, 0x5f, 0x96, 0xc1, 0xbc, 0x30, - 0xc5, 0x57, 0x62, 0x92, 0x0b, 0xa5, 0x83, 0x3f, 0xbb, 0xe4, 0xe2, 0x3f, 0x65, 0x95, 0x42, 0xa2, - 0x84, 0x7b, 0x4c, 0xf6, 0xf1, 0xd9, 0xdf, 0x59, 0xca, 0x55, 0xe7, 0xd0, 0xb9, 0xd3, 0x39, 0xea, - 0x52, 0x13, 0x31, 0xf6, 0xaa, 0x90, 0x29, 0xba, 0xf7, 0xb0, 0x6e, 0x8f, 0xee, 0x33, 0x72, 0xa1, - 0x4e, 0xa7, 0xe2, 0xec, 0x18, 0xce, 0x81, 0xe5, 0xd4, 0xed, 0x75, 0xd4, 0xf9, 0xba, 0x85, 0xb4, - 0x87, 0x64, 0xcf, 0x66, 0x52, 0x91, 0x76, 0x0d, 0xe9, 0xba, 0x25, 0x61, 0x5c, 0x6b, 0x94, 0x73, - 0xb6, 0x8c, 0x84, 0xfb, 0x84, 0x48, 0x28, 0x2a, 0xfb, 0x29, 0x63, 0xbf, 0x4c, 0xed, 0x7e, 0xd0, - 0x72, 0x31, 0x8a, 0xa5, 0xf1, 0xac, 0x84, 0x02, 0x5d, 0xc7, 0x64, 0x1f, 0x83, 0xad, 0x9c, 0xa7, - 0x57, 0xa3, 0xc0, 0x5e, 0x23, 0x0a, 0xac, 0x23, 0xe4, 0x01, 0xe9, 0x94, 0x6f, 0xaf, 0x22, 0xb4, - 0x0d, 0xe1, 0x9a, 0x25, 0x94, 0x8d, 0x75, 0x3b, 0x29, 0x8b, 0xf5, 0x05, 0x70, 0x7d, 0x2a, 0xfb, - 0x99, 0xd5, 0x0b, 0x60, 0xaf, 0x71, 0x01, 0xac, 0xdb, 0xe3, 0xd1, 0x17, 0x87, 0x74, 0x56, 0x5e, - 0xb4, 0xfb, 0x89, 0xb4, 0xf1, 0xdf, 0x2d, 0xda, 0xfc, 0x6a, 0x68, 0x73, 0x55, 0xbc, 0xdb, 0x27, - 0xea, 0xec, 0xee, 0x04, 0xc1, 0xe7, 0x1f, 0xbf, 0xbf, 0xed, 0x74, 0x5d, 0x8f, 0x6d, 0xfd, 0x5e, - 0x1f, 0x3d, 0xfe, 0x3e, 0xf7, 0x9d, 0xd9, 0xdc, 0x77, 0x7e, 0xcd, 0x7d, 0xe7, 0xeb, 0xc2, 0x6f, - 0xcd, 0x16, 0x7e, 0xeb, 0xe7, 0xc2, 0x6f, 0xbd, 0xbd, 0x2b, 0x23, 0x3d, 0xcc, 0x43, 0xda, 0x87, - 0x31, 0x7b, 0xfa, 0xe6, 0xf5, 0x93, 0xe7, 0x42, 0x7f, 0x80, 0x6c, 0xc4, 0xfa, 0x43, 0x1e, 0x25, - 0xec, 0x23, 0xe2, 0xf4, 0x34, 0x15, 0x2a, 0x6c, 0x9b, 0xd5, 0xbe, 0xf7, 0x37, 0x00, 0x00, 0xff, - 0xff, 0xcf, 0xec, 0x60, 0xa4, 0x19, 0x04, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xc1, 0x8b, 0xd3, 0x40, + 0x14, 0xc6, 0x9b, 0x5d, 0xad, 0x38, 0x75, 0x97, 0x35, 0x2a, 0xab, 0x61, 0x37, 0x4a, 0x50, 0x10, + 0x0f, 0x33, 0x74, 0xf5, 0xe0, 0x49, 0x58, 0xd1, 0x8b, 0x82, 0xa8, 0x07, 0x41, 0x2f, 0x32, 0x69, + 0xc7, 0xd9, 0xd2, 0x34, 0x2f, 0x9b, 0x99, 0x44, 0x73, 0xf5, 0xe4, 0x51, 0xf0, 0x9f, 0xf2, 0x58, + 0xf0, 0x22, 0x9e, 0xa4, 0xf5, 0x0f, 0x91, 0xcc, 0xbc, 0x21, 0x49, 0x8d, 0xec, 0xa9, 0x9d, 0xf7, + 0xbd, 0xef, 0xf7, 0xda, 0x6f, 0xde, 0x90, 0xc3, 0x79, 0x55, 0x0a, 0x76, 0x5a, 0x88, 0xbc, 0x62, + 0xba, 0xca, 0x84, 0x62, 0x19, 0xcf, 0xf9, 0x42, 0xd1, 0x2c, 0x07, 0x0d, 0xfe, 0x5e, 0x2d, 0x53, + 0x23, 0x53, 0x23, 0x07, 0xfb, 0x13, 0x50, 0x0b, 0x50, 0x4c, 0x42, 0xc9, 0xca, 0x71, 0xfd, 0x61, + 0x5b, 0x83, 0x03, 0x09, 0x20, 0x13, 0xc1, 0x78, 0x36, 0x63, 0x3c, 0x4d, 0x41, 0x73, 0x3d, 0x83, + 0x14, 0x41, 0xc1, 0x4d, 0x33, 0x27, 0x2e, 0xd2, 0x69, 0x22, 0x54, 0xcf, 0xa4, 0x20, 0x32, 0x0d, + 0x53, 0x91, 0x08, 0x69, 0x8c, 0x7d, 0x3d, 0x16, 0xf2, 0xa1, 0x48, 0xa7, 0x22, 0xef, 0x85, 0x84, + 0xa6, 0x41, 0x26, 0x10, 0xf3, 0x04, 0x75, 0x7b, 0x70, 0xbf, 0xd1, 0xe8, 0x19, 0x40, 0xf2, 0x7f, + 0xbc, 0xd2, 0x7c, 0xde, 0x8f, 0x8f, 0xae, 0x12, 0xff, 0x55, 0x1d, 0xc5, 0x4b, 0x53, 0x7c, 0x2d, + 0x4e, 0x0b, 0xa1, 0x74, 0xf4, 0x6b, 0x9b, 0x5c, 0xe9, 0x94, 0x55, 0x06, 0xa9, 0x12, 0xfe, 0x31, + 0xd9, 0xc5, 0xff, 0xfb, 0xde, 0x52, 0xae, 0x7b, 0xb7, 0xbc, 0xbb, 0xa3, 0xa3, 0x80, 0x9a, 0x50, + 0x51, 0xb3, 0xb1, 0x52, 0xf4, 0xee, 0x60, 0xd5, 0x1e, 0xfd, 0x67, 0xe4, 0x72, 0x93, 0x88, 0xa3, + 0x6c, 0x19, 0xca, 0xa1, 0xa5, 0x34, 0x72, 0x17, 0xb4, 0xd7, 0x08, 0xc8, 0x7a, 0x44, 0x76, 0x6c, + 0x16, 0x8e, 0xb3, 0x6d, 0x38, 0x37, 0x2c, 0x07, 0x63, 0xea, 0x30, 0x2e, 0xd9, 0x22, 0xfa, 0x1f, + 0x10, 0x22, 0xa1, 0x74, 0xe6, 0x73, 0xc6, 0x7c, 0x8d, 0xda, 0x6d, 0xa0, 0xf5, 0x1a, 0x94, 0x63, + 0x67, 0xbc, 0x28, 0xa1, 0x44, 0xd7, 0x31, 0xd9, 0xc5, 0x40, 0x9d, 0xf3, 0x7c, 0x3b, 0x04, 0xd4, + 0x36, 0x42, 0xc0, 0x2a, 0x22, 0x1e, 0x92, 0x51, 0x7d, 0x63, 0xce, 0x3f, 0x34, 0xfe, 0x7d, 0xeb, + 0xaf, 0x85, 0xae, 0x99, 0xd4, 0xa5, 0x66, 0x38, 0x2e, 0x8b, 0x33, 0x5f, 0x68, 0x0f, 0x47, 0x6d, + 0x63, 0x38, 0x56, 0xed, 0xf1, 0xe8, 0x8b, 0x47, 0x46, 0xad, 0xcb, 0xf5, 0x2b, 0x32, 0xc4, 0x6f, + 0xb7, 0xe9, 0xe6, 0xdb, 0xa0, 0xff, 0x2e, 0x47, 0x70, 0xe7, 0x8c, 0x2e, 0xbb, 0x2b, 0x51, 0xf4, + 0xf9, 0xc7, 0x9f, 0x6f, 0x5b, 0x07, 0x7e, 0xc0, 0x5a, 0xef, 0xb1, 0x1c, 0xc7, 0x42, 0xf3, 0x31, + 0xee, 0xe0, 0xe3, 0x27, 0xdf, 0x57, 0xa1, 0xb7, 0x5c, 0x85, 0xde, 0xef, 0x55, 0xe8, 0x7d, 0x5d, + 0x87, 0x83, 0xe5, 0x3a, 0x1c, 0xfc, 0x5c, 0x87, 0x83, 0x77, 0xf7, 0xe4, 0x4c, 0x9f, 0x14, 0x31, + 0x9d, 0xc0, 0x82, 0x3d, 0x7f, 0xfb, 0xe6, 0xe9, 0x0b, 0xa1, 0x3f, 0x42, 0x3e, 0x67, 0x93, 0x13, + 0x3e, 0x4b, 0xd9, 0xa7, 0xf6, 0xf3, 0x8e, 0x87, 0x66, 0x95, 0xef, 0xff, 0x0d, 0x00, 0x00, 0xff, + 0xff, 0x9c, 0xa6, 0xe2, 0x8f, 0xf9, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -239,7 +239,7 @@ func NewQueryParamsClient(cc grpc1.ClientConn) QueryParamsClient { func (c *queryParamsClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryParams/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryParams/Params", in, out, opts...) if err != nil { return nil, err } @@ -274,7 +274,7 @@ func _QueryParams_Params_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryParams/Params", + FullMethod: "/kyve.query.types.QueryParams/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryParamsServer).Params(ctx, req.(*QueryParamsRequest)) @@ -283,7 +283,7 @@ func _QueryParams_Params_Handler(srv interface{}, ctx context.Context, dec func( } var _QueryParams_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryParams", + ServiceName: "kyve.query.types.QueryParams", HandlerType: (*QueryParamsServer)(nil), Methods: []grpc.MethodDesc{ { @@ -292,7 +292,7 @@ var _QueryParams_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/params.proto", + Metadata: "kyve/query/types/params.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/params.pb.gw.go b/x/query/types/params.pb.gw.go index 978da8ab..e7220bf7 100644 --- a/x/query/types/params.pb.gw.go +++ b/x/query/types/params.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/params.proto +// source: kyve/query/types/params.proto /* Package types is a reverse proxy. diff --git a/x/query/types/pools.pb.go b/x/query/types/pools.pb.go index 1a70dd1b..f3d66950 100644 --- a/x/query/types/pools.pb.go +++ b/x/query/types/pools.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/pools.proto +// source: kyve/query/types/pools.proto package types @@ -51,7 +51,7 @@ func (m *QueryPoolsRequest) Reset() { *m = QueryPoolsRequest{} } func (m *QueryPoolsRequest) String() string { return proto.CompactTextString(m) } func (*QueryPoolsRequest) ProtoMessage() {} func (*QueryPoolsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b627739c2d7723dc, []int{0} + return fileDescriptor_64f98b76294a9067, []int{0} } func (m *QueryPoolsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ func (m *QueryPoolsResponse) Reset() { *m = QueryPoolsResponse{} } func (m *QueryPoolsResponse) String() string { return proto.CompactTextString(m) } func (*QueryPoolsResponse) ProtoMessage() {} func (*QueryPoolsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b627739c2d7723dc, []int{1} + return fileDescriptor_64f98b76294a9067, []int{1} } func (m *QueryPoolsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -185,7 +185,7 @@ type PoolResponse struct { // total_delegation ... TotalDelegation uint64 `protobuf:"varint,6,opt,name=total_delegation,json=totalDelegation,proto3" json:"total_delegation,omitempty"` // status ... - Status types.PoolStatus `protobuf:"varint,7,opt,name=status,proto3,enum=kyve.pool.v1beta1.PoolStatus" json:"status,omitempty"` + Status types.PoolStatus `protobuf:"varint,7,opt,name=status,proto3,enum=kyve.pool.types.PoolStatus" json:"status,omitempty"` // account ... Account string `protobuf:"bytes,8,opt,name=account,proto3" json:"account,omitempty"` // account_balance ... @@ -198,7 +198,7 @@ func (m *PoolResponse) Reset() { *m = PoolResponse{} } func (m *PoolResponse) String() string { return proto.CompactTextString(m) } func (*PoolResponse) ProtoMessage() {} func (*PoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b627739c2d7723dc, []int{2} + return fileDescriptor_64f98b76294a9067, []int{2} } func (m *PoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -307,7 +307,7 @@ func (m *QueryPoolRequest) Reset() { *m = QueryPoolRequest{} } func (m *QueryPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryPoolRequest) ProtoMessage() {} func (*QueryPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b627739c2d7723dc, []int{3} + return fileDescriptor_64f98b76294a9067, []int{3} } func (m *QueryPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -353,7 +353,7 @@ func (m *QueryPoolResponse) Reset() { *m = QueryPoolResponse{} } func (m *QueryPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryPoolResponse) ProtoMessage() {} func (*QueryPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b627739c2d7723dc, []int{4} + return fileDescriptor_64f98b76294a9067, []int{4} } func (m *QueryPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -390,63 +390,63 @@ func (m *QueryPoolResponse) GetPool() PoolResponse { } func init() { - proto.RegisterType((*QueryPoolsRequest)(nil), "kyve.query.v1beta1.QueryPoolsRequest") - proto.RegisterType((*QueryPoolsResponse)(nil), "kyve.query.v1beta1.QueryPoolsResponse") - proto.RegisterType((*PoolResponse)(nil), "kyve.query.v1beta1.PoolResponse") - proto.RegisterType((*QueryPoolRequest)(nil), "kyve.query.v1beta1.QueryPoolRequest") - proto.RegisterType((*QueryPoolResponse)(nil), "kyve.query.v1beta1.QueryPoolResponse") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/pools.proto", fileDescriptor_b627739c2d7723dc) } - -var fileDescriptor_b627739c2d7723dc = []byte{ - // 723 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x4d, 0x4f, 0xd4, 0x4e, - 0x18, 0xdf, 0xee, 0x1b, 0xcb, 0xf0, 0xff, 0x2f, 0x30, 0xf8, 0x52, 0x57, 0x29, 0xb5, 0xe1, 0x65, - 0xc5, 0xa4, 0x0d, 0x6b, 0x3c, 0x68, 0x3c, 0x6d, 0x10, 0x63, 0x8c, 0xba, 0x96, 0xc4, 0x44, 0x2f, - 0x9b, 0x69, 0x3b, 0x94, 0x86, 0xd2, 0x29, 0x9d, 0x29, 0xba, 0x1a, 0x2f, 0x7c, 0x02, 0x13, 0x8f, - 0x7e, 0x21, 0x8e, 0x24, 0x5e, 0xf4, 0x62, 0x0c, 0xf8, 0x41, 0x4c, 0x67, 0xa6, 0xa5, 0x2b, 0x22, - 0xde, 0xfa, 0xcc, 0xf3, 0xfb, 0x3d, 0xbf, 0xe7, 0xb5, 0x40, 0xdb, 0x19, 0xed, 0x63, 0x6b, 0x2f, - 0xc5, 0xc9, 0xc8, 0xda, 0x5f, 0x73, 0x30, 0x43, 0x6b, 0x56, 0x4c, 0x48, 0x48, 0xcd, 0x38, 0x21, - 0x8c, 0x40, 0x98, 0xf9, 0x4d, 0xee, 0x37, 0xa5, 0xbf, 0xb3, 0xea, 0x12, 0xba, 0x4b, 0xa8, 0xe5, - 0x20, 0x7a, 0x86, 0x8a, 0xfc, 0x20, 0x42, 0x2c, 0x20, 0x91, 0xe0, 0x77, 0x2e, 0xf9, 0xc4, 0x27, - 0xfc, 0xd3, 0xca, 0xbe, 0xe4, 0xeb, 0x0d, 0x9f, 0x10, 0x3f, 0xc4, 0x16, 0x8a, 0x03, 0x0b, 0x45, - 0x11, 0x61, 0x9c, 0x22, 0x35, 0x3b, 0x06, 0xcf, 0xc9, 0x49, 0x23, 0x2f, 0xc4, 0xb4, 0x08, 0x2d, - 0xed, 0x31, 0xcc, 0x56, 0x1a, 0x79, 0x38, 0x39, 0xc5, 0x48, 0x3b, 0x57, 0xe1, 0x98, 0xac, 0x9a, - 0xb1, 0xd2, 0x84, 0xd7, 0xf8, 0xa6, 0x80, 0xd9, 0x17, 0x59, 0xf2, 0x83, 0xac, 0x5c, 0x1b, 0xef, - 0xa5, 0x98, 0x32, 0xb8, 0x01, 0xc0, 0x69, 0x0d, 0xaa, 0xa2, 0x2b, 0xdd, 0xa9, 0xde, 0xb2, 0x29, - 0x0a, 0x36, 0xb3, 0x82, 0xc7, 0x7b, 0x61, 0x0e, 0x90, 0x8f, 0x25, 0xd7, 0x2e, 0x31, 0xe1, 0x15, - 0xd0, 0xa4, 0x18, 0x25, 0xee, 0xb6, 0x5a, 0xd5, 0x95, 0xee, 0xa4, 0x2d, 0x2d, 0xa8, 0x82, 0x89, - 0x24, 0x8d, 0x58, 0xb0, 0x8b, 0xd5, 0x1a, 0x77, 0xe4, 0x26, 0xec, 0x80, 0x96, 0x17, 0x50, 0xe4, - 0x84, 0xd8, 0x53, 0xeb, 0xba, 0xd2, 0x6d, 0xd9, 0x85, 0x0d, 0x4d, 0x30, 0x47, 0x19, 0x49, 0x90, - 0x8f, 0x87, 0x71, 0x42, 0xf6, 0x03, 0x0f, 0x27, 0xc3, 0xc0, 0x53, 0x1b, 0xba, 0xd2, 0xfd, 0xdf, - 0x9e, 0x95, 0xae, 0x81, 0xf4, 0x3c, 0xf6, 0x8c, 0xcf, 0x0a, 0x80, 0xe5, 0xda, 0x68, 0x4c, 0x22, - 0x8a, 0xe1, 0x03, 0xd0, 0xe0, 0xb3, 0x55, 0x15, 0xbd, 0xd6, 0x9d, 0xea, 0xe9, 0xe6, 0xd9, 0xe1, - 0x9a, 0x19, 0x23, 0x27, 0xf4, 0xeb, 0x87, 0xdf, 0x17, 0x2a, 0xb6, 0x20, 0xc1, 0x47, 0x63, 0xad, - 0xa9, 0xf2, 0xd6, 0xac, 0x5c, 0xd8, 0x1a, 0x11, 0xa9, 0xdc, 0x1b, 0xe3, 0xb0, 0x06, 0xfe, 0x2b, - 0xcb, 0xc0, 0x36, 0xa8, 0x06, 0x1e, 0x6f, 0x76, 0xdd, 0xae, 0x06, 0x1e, 0xbc, 0x0d, 0xea, 0x1e, - 0x62, 0x48, 0x6a, 0x5c, 0x15, 0x69, 0xf2, 0xd1, 0x8d, 0x65, 0xc9, 0x41, 0xf0, 0x29, 0x98, 0x16, - 0xab, 0x91, 0xb5, 0x26, 0x26, 0x14, 0x85, 0xbc, 0xb3, 0x53, 0xbd, 0x45, 0xc1, 0xcb, 0xf7, 0x26, - 0xa7, 0xf6, 0xb9, 0x3d, 0x90, 0x58, 0xbb, 0xed, 0x8c, 0xd9, 0xd9, 0x80, 0x28, 0x43, 0x3b, 0x38, - 0xa1, 0x6a, 0x5d, 0xaf, 0x65, 0x03, 0x92, 0x26, 0xec, 0x81, 0xcb, 0x8c, 0x30, 0x14, 0x0e, 0x29, - 0x0e, 0xb7, 0x86, 0x1e, 0x0e, 0xb1, 0x2f, 0x5a, 0xd1, 0xe0, 0x89, 0xcf, 0x71, 0xe7, 0x26, 0x0e, - 0xb7, 0xd6, 0x0b, 0x17, 0xbc, 0x05, 0x66, 0x04, 0xa7, 0x04, 0x6f, 0x72, 0xf8, 0x34, 0x7f, 0x2f, - 0x41, 0xef, 0x82, 0x26, 0x65, 0x88, 0xa5, 0x54, 0x9d, 0xd0, 0x95, 0x6e, 0xbb, 0x37, 0x7f, 0x4e, - 0xd9, 0x9b, 0x1c, 0x64, 0x4b, 0x70, 0x96, 0x2f, 0x72, 0x5d, 0x92, 0x46, 0x4c, 0x6d, 0x89, 0x85, - 0x92, 0x26, 0x5c, 0x01, 0xd3, 0xf2, 0x73, 0xe8, 0xa0, 0x10, 0x45, 0x2e, 0x56, 0x27, 0xb9, 0x74, - 0x5b, 0x3e, 0xf7, 0xc5, 0x2b, 0xbc, 0x07, 0x5a, 0xd9, 0xe1, 0x04, 0x91, 0x4f, 0x55, 0xc0, 0x37, - 0x43, 0x6a, 0xe7, 0xe7, 0x94, 0xcb, 0x6f, 0x08, 0x94, 0x5d, 0xc0, 0x0d, 0x03, 0xcc, 0x14, 0x7b, - 0x96, 0x9f, 0xd0, 0x6f, 0xd3, 0x34, 0x9e, 0x97, 0xee, 0xac, 0x18, 0xf9, 0x7d, 0x50, 0xcf, 0x2a, - 0x93, 0x17, 0xf6, 0xaf, 0x9b, 0xc8, 0x39, 0xbd, 0x83, 0x2a, 0x98, 0x2c, 0x22, 0xc2, 0x11, 0x68, - 0xf0, 0x2d, 0x87, 0x4b, 0x7f, 0x0a, 0x72, 0xe6, 0xc2, 0x3b, 0xcb, 0x17, 0xc1, 0x84, 0xa2, 0x71, - 0xf3, 0xe0, 0xcb, 0xcf, 0x4f, 0xd5, 0xeb, 0xf0, 0x9a, 0x75, 0xde, 0x2f, 0x12, 0xbe, 0x03, 0x75, - 0x9e, 0xc2, 0xe2, 0x5f, 0x43, 0xe6, 0xc2, 0x4b, 0x17, 0xa0, 0xa4, 0xee, 0x12, 0xd7, 0x5d, 0x80, - 0xf3, 0xe7, 0xe9, 0x5a, 0xef, 0x03, 0xef, 0x43, 0x7f, 0xfd, 0xf0, 0x58, 0x53, 0x8e, 0x8e, 0x35, - 0xe5, 0xc7, 0xb1, 0xa6, 0x7c, 0x3c, 0xd1, 0x2a, 0x47, 0x27, 0x5a, 0xe5, 0xeb, 0x89, 0x56, 0x79, - 0xbd, 0xea, 0x07, 0x6c, 0x3b, 0x75, 0x4c, 0x97, 0xec, 0x5a, 0x4f, 0x5e, 0xbd, 0x7c, 0xf8, 0x0c, - 0xb3, 0x37, 0x24, 0xd9, 0xb1, 0xdc, 0x6d, 0x14, 0x44, 0xd6, 0x5b, 0x19, 0x91, 0x8d, 0x62, 0x4c, - 0x9d, 0x26, 0xff, 0x17, 0xde, 0xf9, 0x15, 0x00, 0x00, 0xff, 0xff, 0xef, 0xab, 0xd1, 0xcb, 0x07, - 0x06, 0x00, 0x00, + proto.RegisterType((*QueryPoolsRequest)(nil), "kyve.query.types.QueryPoolsRequest") + proto.RegisterType((*QueryPoolsResponse)(nil), "kyve.query.types.QueryPoolsResponse") + proto.RegisterType((*PoolResponse)(nil), "kyve.query.types.PoolResponse") + proto.RegisterType((*QueryPoolRequest)(nil), "kyve.query.types.QueryPoolRequest") + proto.RegisterType((*QueryPoolResponse)(nil), "kyve.query.types.QueryPoolResponse") +} + +func init() { proto.RegisterFile("kyve/query/types/pools.proto", fileDescriptor_64f98b76294a9067) } + +var fileDescriptor_64f98b76294a9067 = []byte{ + // 731 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x4f, 0x4f, 0xd4, 0x4c, + 0x18, 0xdf, 0xee, 0x76, 0x97, 0x65, 0x78, 0xdf, 0x05, 0x86, 0x97, 0x37, 0x75, 0xc1, 0x52, 0x8b, + 0xca, 0xc2, 0xa1, 0x0d, 0xcb, 0x41, 0xe3, 0x71, 0x83, 0x18, 0x43, 0x34, 0x6b, 0x49, 0x4c, 0xf4, + 0xb2, 0x99, 0xb6, 0x43, 0x69, 0x28, 0x9d, 0xd2, 0x99, 0xae, 0x12, 0xe3, 0xc5, 0x4f, 0x60, 0xe2, + 0xc9, 0x6f, 0xe3, 0x91, 0x23, 0x89, 0x17, 0xbd, 0x18, 0x03, 0x7e, 0x0a, 0x4f, 0xa6, 0x33, 0xd3, + 0x5a, 0x40, 0xd1, 0xdb, 0x3c, 0xf3, 0xfc, 0x7e, 0xf3, 0x7b, 0xfe, 0x0e, 0x58, 0xdc, 0x3f, 0x1a, + 0x63, 0xfb, 0x30, 0xc3, 0xe9, 0x91, 0xcd, 0x8e, 0x12, 0x4c, 0xed, 0x84, 0x90, 0x88, 0x5a, 0x49, + 0x4a, 0x18, 0x81, 0x33, 0xb9, 0xd7, 0xe2, 0x5e, 0x8b, 0x7b, 0xbb, 0x6b, 0x1e, 0xa1, 0x07, 0x84, + 0xda, 0x2e, 0xa2, 0x05, 0x6d, 0xbc, 0xee, 0x62, 0x86, 0xd6, 0xed, 0x04, 0x05, 0x61, 0x8c, 0x58, + 0x48, 0x62, 0xc1, 0xee, 0xfe, 0x17, 0x90, 0x80, 0xf0, 0xa3, 0x9d, 0x9f, 0xe4, 0xed, 0x62, 0x40, + 0x48, 0x10, 0x61, 0x1b, 0x25, 0xa1, 0x8d, 0xe2, 0x98, 0x30, 0x4e, 0x91, 0x8a, 0x5d, 0x83, 0xc7, + 0xe3, 0x66, 0xb1, 0x1f, 0x61, 0x2a, 0x23, 0x92, 0xd6, 0x39, 0xc4, 0x6e, 0x16, 0xfb, 0x38, 0x2d, + 0x10, 0xd2, 0x92, 0x88, 0x2e, 0x47, 0xe4, 0x79, 0x54, 0x52, 0x12, 0x3e, 0xf3, 0xb3, 0x02, 0x66, + 0x9f, 0xe4, 0x61, 0x0f, 0xf3, 0x34, 0x1d, 0x7c, 0x98, 0x61, 0xca, 0xe0, 0x16, 0x00, 0x3f, 0xa3, + 0xd7, 0x14, 0x43, 0xe9, 0x4d, 0xf5, 0x6f, 0x5b, 0x22, 0x55, 0x2b, 0x4f, 0x55, 0xd6, 0x40, 0xa6, + 0x6a, 0x0d, 0x51, 0x80, 0x25, 0xd7, 0xa9, 0x30, 0xe1, 0xff, 0xa0, 0x45, 0x31, 0x4a, 0xbd, 0x3d, + 0xad, 0x6e, 0x28, 0xbd, 0x49, 0x47, 0x5a, 0x50, 0x03, 0x13, 0x69, 0x16, 0xb3, 0xf0, 0x00, 0x6b, + 0x0d, 0xee, 0x28, 0x4c, 0xd8, 0x05, 0x6d, 0x3f, 0xa4, 0xc8, 0x8d, 0xb0, 0xaf, 0xa9, 0x86, 0xd2, + 0x6b, 0x3b, 0xa5, 0x0d, 0x2d, 0x30, 0x47, 0x19, 0x49, 0x51, 0x80, 0x47, 0x49, 0x4a, 0xc6, 0xa1, + 0x8f, 0xd3, 0x51, 0xe8, 0x6b, 0x4d, 0x43, 0xe9, 0xfd, 0xeb, 0xcc, 0x4a, 0xd7, 0x50, 0x7a, 0x1e, + 0xfa, 0xe6, 0x7b, 0x05, 0xc0, 0x6a, 0x6e, 0x34, 0x21, 0x31, 0xc5, 0xf0, 0x1e, 0x68, 0xf2, 0x9e, + 0x6a, 0x8a, 0xd1, 0xe8, 0x4d, 0xf5, 0x75, 0xeb, 0x62, 0x53, 0xad, 0x1c, 0x5f, 0xc0, 0x07, 0xea, + 0xf1, 0x97, 0xa5, 0x9a, 0x23, 0x28, 0xf0, 0xc1, 0xb9, 0xc2, 0xd4, 0x79, 0x61, 0x56, 0xfe, 0x58, + 0x18, 0xf1, 0x52, 0xb5, 0x32, 0xe6, 0x87, 0x06, 0xf8, 0xa7, 0x2a, 0x03, 0x3b, 0xa0, 0x1e, 0xfa, + 0xbc, 0xd4, 0xaa, 0x53, 0x0f, 0x7d, 0xb8, 0x0a, 0x54, 0x1f, 0x31, 0x24, 0x35, 0xe6, 0x45, 0x90, + 0xbc, 0x71, 0x95, 0x18, 0x39, 0x04, 0x6e, 0x83, 0x69, 0x31, 0x12, 0x79, 0x59, 0x12, 0x42, 0x51, + 0xc4, 0xab, 0x3a, 0xd5, 0x37, 0x05, 0xab, 0x98, 0x17, 0x41, 0x1c, 0x70, 0x6b, 0x28, 0x91, 0x4e, + 0xc7, 0x3d, 0x67, 0xe7, 0xad, 0xa1, 0x0c, 0xed, 0xe3, 0x94, 0x6a, 0xaa, 0xd1, 0xc8, 0x5b, 0x23, + 0x4d, 0xd8, 0x07, 0xf3, 0x8c, 0x30, 0x14, 0x8d, 0x28, 0x8e, 0x76, 0x47, 0x3e, 0x8e, 0x70, 0x20, + 0xca, 0xd0, 0xe4, 0x41, 0xcf, 0x71, 0xe7, 0x0e, 0x8e, 0x76, 0x37, 0x4b, 0x17, 0x5c, 0x05, 0x33, + 0x82, 0x53, 0x81, 0xb7, 0x38, 0x7c, 0x9a, 0xdf, 0x57, 0xa0, 0x1b, 0xa0, 0x45, 0x19, 0x62, 0x19, + 0xd5, 0x26, 0x0c, 0xa5, 0xd7, 0xe9, 0x2f, 0xfc, 0x32, 0xe5, 0x1d, 0x0e, 0x71, 0x24, 0x34, 0x8f, + 0x16, 0x79, 0x1e, 0xc9, 0x62, 0xa6, 0xb5, 0xc5, 0x20, 0x49, 0x13, 0xae, 0x80, 0x69, 0x79, 0x1c, + 0xb9, 0x28, 0x42, 0xb1, 0x87, 0xb5, 0x49, 0x2e, 0xdc, 0x91, 0xd7, 0x03, 0x71, 0x0b, 0xef, 0x80, + 0x76, 0xbe, 0x2e, 0x61, 0x1c, 0x50, 0x0d, 0xf0, 0x89, 0x90, 0xca, 0xc5, 0x12, 0x09, 0xf1, 0x2d, + 0x81, 0x71, 0x4a, 0xb0, 0x69, 0x82, 0x99, 0x72, 0xba, 0x8a, 0xc5, 0xb9, 0xd0, 0x45, 0xf3, 0x51, + 0x65, 0xbb, 0xca, 0x56, 0xdf, 0x05, 0x6a, 0x9e, 0x95, 0xdc, 0xab, 0xbf, 0x9b, 0x3f, 0xce, 0xe8, + 0x7f, 0x57, 0xc0, 0x64, 0xf9, 0x1e, 0xcc, 0x40, 0x93, 0x4f, 0x36, 0x5c, 0xbe, 0xfc, 0xc4, 0xa5, + 0x9d, 0xee, 0xde, 0xbc, 0x1a, 0x24, 0xd4, 0xcc, 0x1b, 0x6f, 0x3e, 0x7e, 0x7b, 0x57, 0x5f, 0x80, + 0xd7, 0xec, 0xca, 0x47, 0x58, 0xfe, 0x68, 0x5c, 0x6d, 0x0c, 0x54, 0x2e, 0x6f, 0x5e, 0xf1, 0x60, + 0x21, 0xba, 0x7c, 0x25, 0x46, 0x6a, 0xde, 0xe2, 0x9a, 0x4b, 0xf0, 0xfa, 0xef, 0x34, 0xed, 0x57, + 0xa1, 0xff, 0x7a, 0xb0, 0x79, 0x7c, 0xaa, 0x2b, 0x27, 0xa7, 0xba, 0xf2, 0xf5, 0x54, 0x57, 0xde, + 0x9e, 0xe9, 0xb5, 0x93, 0x33, 0xbd, 0xf6, 0xe9, 0x4c, 0xaf, 0x3d, 0x5f, 0x0b, 0x42, 0xb6, 0x97, + 0xb9, 0x96, 0x47, 0x0e, 0xec, 0xed, 0x67, 0x4f, 0xef, 0x3f, 0xc6, 0xec, 0x05, 0x49, 0xf7, 0x6d, + 0x6f, 0x0f, 0x85, 0xb1, 0xfd, 0xb2, 0xfa, 0x9d, 0xbb, 0x2d, 0xfe, 0xef, 0x6d, 0xfc, 0x08, 0x00, + 0x00, 0xff, 0xff, 0xd3, 0xaa, 0x8b, 0xfc, 0xe9, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -477,7 +477,7 @@ func NewQueryPoolClient(cc grpc1.ClientConn) QueryPoolClient { func (c *queryPoolClient) Pools(ctx context.Context, in *QueryPoolsRequest, opts ...grpc.CallOption) (*QueryPoolsResponse, error) { out := new(QueryPoolsResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryPool/Pools", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryPool/Pools", in, out, opts...) if err != nil { return nil, err } @@ -486,7 +486,7 @@ func (c *queryPoolClient) Pools(ctx context.Context, in *QueryPoolsRequest, opts func (c *queryPoolClient) Pool(ctx context.Context, in *QueryPoolRequest, opts ...grpc.CallOption) (*QueryPoolResponse, error) { out := new(QueryPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryPool/Pool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryPool/Pool", in, out, opts...) if err != nil { return nil, err } @@ -526,7 +526,7 @@ func _QueryPool_Pools_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryPool/Pools", + FullMethod: "/kyve.query.types.QueryPool/Pools", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryPoolServer).Pools(ctx, req.(*QueryPoolsRequest)) @@ -544,7 +544,7 @@ func _QueryPool_Pool_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryPool/Pool", + FullMethod: "/kyve.query.types.QueryPool/Pool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryPoolServer).Pool(ctx, req.(*QueryPoolRequest)) @@ -553,7 +553,7 @@ func _QueryPool_Pool_Handler(srv interface{}, ctx context.Context, dec func(inte } var _QueryPool_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryPool", + ServiceName: "kyve.query.types.QueryPool", HandlerType: (*QueryPoolServer)(nil), Methods: []grpc.MethodDesc{ { @@ -566,7 +566,7 @@ var _QueryPool_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/pools.proto", + Metadata: "kyve/query/types/pools.proto", } func (m *QueryPoolsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/pools.pb.gw.go b/x/query/types/pools.pb.gw.go index 58981c7d..3e250a1b 100644 --- a/x/query/types/pools.pb.gw.go +++ b/x/query/types/pools.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/pools.proto +// source: kyve/query/types/pools.proto /* Package types is a reverse proxy. diff --git a/x/query/types/query.pb.go b/x/query/types/query.pb.go index f586b685..a9b105ff 100644 --- a/x/query/types/query.pb.go +++ b/x/query/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/query.proto +// source: kyve/query/types/query.proto package types @@ -48,14 +48,14 @@ type BasicPool struct { TotalDelegation uint64 `protobuf:"varint,8,opt,name=total_delegation,json=totalDelegation,proto3" json:"total_delegation,omitempty"` // status of the pool if pool is able // to produce bundles, etc. - Status types.PoolStatus `protobuf:"varint,9,opt,name=status,proto3,enum=kyve.pool.v1beta1.PoolStatus" json:"status,omitempty"` + Status types.PoolStatus `protobuf:"varint,9,opt,name=status,proto3,enum=kyve.pool.types.PoolStatus" json:"status,omitempty"` } func (m *BasicPool) Reset() { *m = BasicPool{} } func (m *BasicPool) String() string { return proto.CompactTextString(m) } func (*BasicPool) ProtoMessage() {} func (*BasicPool) Descriptor() ([]byte, []int) { - return fileDescriptor_6b41255feae93a15, []int{0} + return fileDescriptor_504c7116a9cd35dd, []int{0} } func (m *BasicPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -179,7 +179,7 @@ func (m *FullStaker) Reset() { *m = FullStaker{} } func (m *FullStaker) String() string { return proto.CompactTextString(m) } func (*FullStaker) ProtoMessage() {} func (*FullStaker) Descriptor() ([]byte, []int) { - return fileDescriptor_6b41255feae93a15, []int{1} + return fileDescriptor_504c7116a9cd35dd, []int{1} } func (m *FullStaker) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -288,7 +288,7 @@ func (m *StakerMetadata) Reset() { *m = StakerMetadata{} } func (m *StakerMetadata) String() string { return proto.CompactTextString(m) } func (*StakerMetadata) ProtoMessage() {} func (*StakerMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_6b41255feae93a15, []int{2} + return fileDescriptor_504c7116a9cd35dd, []int{2} } func (m *StakerMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -381,7 +381,7 @@ func (m *CommissionChangeEntry) Reset() { *m = CommissionChangeEntry{} } func (m *CommissionChangeEntry) String() string { return proto.CompactTextString(m) } func (*CommissionChangeEntry) ProtoMessage() {} func (*CommissionChangeEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_6b41255feae93a15, []int{3} + return fileDescriptor_504c7116a9cd35dd, []int{3} } func (m *CommissionChangeEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -445,7 +445,7 @@ func (m *PoolMembership) Reset() { *m = PoolMembership{} } func (m *PoolMembership) String() string { return proto.CompactTextString(m) } func (*PoolMembership) ProtoMessage() {} func (*PoolMembership) Descriptor() ([]byte, []int) { - return fileDescriptor_6b41255feae93a15, []int{4} + return fileDescriptor_504c7116a9cd35dd, []int{4} } func (m *PoolMembership) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -510,67 +510,66 @@ func (m *PoolMembership) GetBalance() uint64 { } func init() { - proto.RegisterType((*BasicPool)(nil), "kyve.query.v1beta1.BasicPool") - proto.RegisterType((*FullStaker)(nil), "kyve.query.v1beta1.FullStaker") - proto.RegisterType((*StakerMetadata)(nil), "kyve.query.v1beta1.StakerMetadata") - proto.RegisterType((*CommissionChangeEntry)(nil), "kyve.query.v1beta1.CommissionChangeEntry") - proto.RegisterType((*PoolMembership)(nil), "kyve.query.v1beta1.PoolMembership") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/query.proto", fileDescriptor_6b41255feae93a15) } - -var fileDescriptor_6b41255feae93a15 = []byte{ - // 791 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x41, 0x6f, 0x1b, 0x45, - 0x14, 0xce, 0xda, 0x4e, 0x1a, 0xbf, 0x80, 0x03, 0xa3, 0xd2, 0x6e, 0x03, 0xdd, 0x44, 0xee, 0xa1, - 0x29, 0x12, 0x6b, 0x25, 0x80, 0x84, 0x38, 0x70, 0x88, 0xd3, 0x4a, 0x88, 0x16, 0xa1, 0xa9, 0x00, - 0xc1, 0x65, 0x35, 0xde, 0x7d, 0x59, 0x8f, 0xbc, 0x3b, 0x63, 0x66, 0x66, 0x1d, 0x7c, 0x83, 0x7f, - 0xc0, 0x8f, 0xe1, 0xce, 0xb5, 0xc7, 0x1e, 0x81, 0x43, 0x85, 0x92, 0x3f, 0x82, 0x66, 0x66, 0x77, - 0x6b, 0x07, 0x73, 0xeb, 0x6d, 0xdf, 0xf7, 0x7d, 0x33, 0x6f, 0xe7, 0xfb, 0xde, 0x0c, 0x44, 0xb3, - 0xe5, 0x02, 0x47, 0x3f, 0x55, 0xa8, 0x96, 0xa3, 0xc5, 0xc9, 0x04, 0x0d, 0x3b, 0xf1, 0x55, 0x3c, - 0x57, 0xd2, 0x48, 0x42, 0x2c, 0x1f, 0x7b, 0xa4, 0xe6, 0x0f, 0x6e, 0xe7, 0x32, 0x97, 0x8e, 0x1e, - 0xd9, 0x2f, 0xaf, 0x3c, 0xf8, 0xc0, 0xed, 0x34, 0x97, 0xb2, 0x68, 0x37, 0xb2, 0x85, 0x67, 0x87, - 0x7f, 0x74, 0xa0, 0x7f, 0xc6, 0x34, 0x4f, 0xbf, 0x91, 0xb2, 0x20, 0x03, 0xe8, 0xf0, 0x2c, 0x0c, - 0x8e, 0x82, 0xe3, 0x1e, 0xed, 0xf0, 0x8c, 0x10, 0xe8, 0x09, 0x56, 0x62, 0xd8, 0x39, 0x0a, 0x8e, - 0xfb, 0xd4, 0x7d, 0x93, 0x10, 0x6e, 0xa9, 0x4a, 0x18, 0x5e, 0x62, 0xd8, 0x75, 0x70, 0x53, 0x5a, - 0x75, 0x21, 0x73, 0x19, 0xf6, 0xbc, 0xda, 0x7e, 0x93, 0x4f, 0xe0, 0x0e, 0x17, 0x17, 0x05, 0x33, - 0x5c, 0x8a, 0x44, 0x4f, 0x99, 0xc2, 0xe4, 0x12, 0x79, 0x3e, 0x35, 0xe1, 0xb6, 0xeb, 0x72, 0xbb, - 0x65, 0x9f, 0x5b, 0xf2, 0x7b, 0xc7, 0x91, 0x87, 0xb0, 0x5f, 0xcd, 0x0b, 0xc9, 0xb2, 0x84, 0x0b, - 0x83, 0x6a, 0xc1, 0x8a, 0x70, 0xc7, 0xc9, 0x07, 0x1e, 0xfe, 0xb2, 0x46, 0xc9, 0x21, 0xec, 0x19, - 0x69, 0x58, 0x91, 0x5c, 0x54, 0x22, 0xd3, 0xe1, 0x2d, 0x27, 0x02, 0x07, 0x3d, 0xb1, 0x08, 0x79, - 0x04, 0xef, 0x78, 0x41, 0x86, 0x05, 0xe6, 0xae, 0x51, 0xb8, 0xeb, 0x54, 0xfb, 0x0e, 0x3f, 0x6f, - 0x61, 0xf2, 0x29, 0xec, 0x68, 0xc3, 0x4c, 0xa5, 0xc3, 0xfe, 0x51, 0x70, 0x3c, 0x38, 0xbd, 0x1f, - 0x3b, 0x8f, 0x9d, 0x59, 0xb5, 0x73, 0xb1, 0x75, 0xe9, 0xb9, 0x13, 0xd1, 0x5a, 0x3c, 0xfc, 0xab, - 0x03, 0xf0, 0xa4, 0x2a, 0x2c, 0x3c, 0x43, 0x65, 0xed, 0x61, 0x59, 0xa6, 0x50, 0x6b, 0xe7, 0x63, - 0x9f, 0x36, 0x25, 0xf9, 0x02, 0x76, 0x4b, 0x34, 0x2c, 0x63, 0x86, 0x39, 0x43, 0xf7, 0x4e, 0x87, - 0xf1, 0x7f, 0x53, 0x8c, 0xfd, 0x3e, 0xcf, 0x6a, 0x25, 0x6d, 0xd7, 0x58, 0x53, 0x34, 0x16, 0x17, - 0xab, 0x27, 0xe9, 0x7a, 0x53, 0x2c, 0xbc, 0x72, 0x90, 0xcf, 0xe1, 0xde, 0x0d, 0x61, 0x52, 0x89, - 0x89, 0x14, 0x19, 0x17, 0xb9, 0x0b, 0xa7, 0x47, 0xef, 0xae, 0x2f, 0xf9, 0xb6, 0xa1, 0x37, 0xfa, - 0xb5, 0xbd, 0xd9, 0xaf, 0x87, 0xb0, 0x5f, 0x8b, 0xa4, 0x4a, 0x52, 0x59, 0x09, 0xd3, 0x84, 0xd4, - 0xc2, 0x63, 0x8b, 0x92, 0xcf, 0x60, 0xdb, 0x9a, 0x68, 0xe3, 0xe9, 0xfe, 0xdf, 0xa9, 0xad, 0xb1, - 0xcf, 0xb0, 0x9c, 0xa0, 0xd2, 0x53, 0x3e, 0xa7, 0x7e, 0xc1, 0xf0, 0x97, 0x2e, 0x0c, 0xd6, 0xfd, - 0x20, 0x63, 0x80, 0x54, 0x96, 0x25, 0xd7, 0xda, 0xfe, 0x9a, 0xb3, 0xf8, 0xec, 0xc1, 0x8b, 0x57, - 0x87, 0x5b, 0x7f, 0xbf, 0x3a, 0x7c, 0x3f, 0x95, 0xba, 0x94, 0x5a, 0x67, 0xb3, 0x98, 0xcb, 0x51, - 0xc9, 0xcc, 0x34, 0x7e, 0x8a, 0x39, 0x4b, 0x97, 0xe7, 0x98, 0xd2, 0x95, 0x65, 0x36, 0xa4, 0x52, - 0x0a, 0x3e, 0x43, 0x55, 0x8f, 0x76, 0x53, 0x5a, 0xe6, 0x12, 0x27, 0x9a, 0x9b, 0x76, 0xba, 0xeb, - 0x92, 0x1c, 0xc0, 0x2e, 0xcf, 0x50, 0x18, 0x6e, 0x96, 0xf5, 0x84, 0xb7, 0xb5, 0x75, 0x4d, 0x63, - 0x5a, 0x29, 0x6e, 0x96, 0x49, 0x2a, 0x85, 0x61, 0xa9, 0x9f, 0xef, 0x3e, 0xdd, 0x6f, 0xf0, 0xb1, - 0x87, 0x6d, 0x83, 0x0c, 0x0d, 0xe3, 0x85, 0x76, 0x6e, 0xf5, 0x69, 0x53, 0x12, 0x84, 0x7b, 0x73, - 0x74, 0x29, 0x24, 0xaf, 0x7f, 0x35, 0x49, 0xa7, 0x4c, 0xe4, 0xe8, 0x26, 0x7b, 0xef, 0xf4, 0xd1, - 0x26, 0xeb, 0xc6, 0xad, 0x78, 0xec, 0xb4, 0x8f, 0x85, 0x51, 0x4b, 0x7a, 0xb7, 0xde, 0xeb, 0x26, - 0x4b, 0x3e, 0x02, 0xb2, 0xb2, 0xbd, 0xc2, 0x4b, 0xa6, 0x32, 0x5d, 0xdf, 0x89, 0x77, 0x5f, 0x33, - 0xd4, 0x13, 0xc3, 0x5f, 0x03, 0x78, 0x6f, 0x63, 0x87, 0x37, 0x93, 0xc4, 0x03, 0x78, 0x3b, 0x55, - 0xe8, 0x87, 0x34, 0x63, 0xc6, 0x3f, 0x35, 0x5d, 0xfa, 0x56, 0x03, 0x9e, 0x33, 0x83, 0xc3, 0xdf, - 0x03, 0x18, 0xac, 0x0f, 0x08, 0x39, 0x81, 0x9e, 0x1d, 0x11, 0xd7, 0x76, 0xaf, 0xb9, 0xaa, 0xeb, - 0xbe, 0xb4, 0xcf, 0x1a, 0x75, 0x52, 0x72, 0x07, 0x76, 0xe6, 0x92, 0x0b, 0xa3, 0x5d, 0x8f, 0x1e, - 0xad, 0x2b, 0x72, 0x1f, 0x80, 0xeb, 0xa4, 0x40, 0xb6, 0xb0, 0xf7, 0xc3, 0xa6, 0xbe, 0x4b, 0xfb, - 0x5c, 0x3f, 0xf5, 0x00, 0x89, 0x00, 0x16, 0xac, 0x68, 0xee, 0xb4, 0x4f, 0x7e, 0x05, 0xb1, 0x81, - 0x4e, 0x58, 0xc1, 0x44, 0x8a, 0xf5, 0x45, 0x69, 0xca, 0xb3, 0xf3, 0x17, 0x57, 0x51, 0xf0, 0xf2, - 0x2a, 0x0a, 0xfe, 0xb9, 0x8a, 0x82, 0xdf, 0xae, 0xa3, 0xad, 0x97, 0xd7, 0xd1, 0xd6, 0x9f, 0xd7, - 0xd1, 0xd6, 0x8f, 0x1f, 0xe6, 0xdc, 0x4c, 0xab, 0x49, 0x9c, 0xca, 0x72, 0xf4, 0xd5, 0x0f, 0xdf, - 0x3d, 0xfe, 0x1a, 0xcd, 0xa5, 0x54, 0xb3, 0x51, 0x3a, 0x65, 0x5c, 0x8c, 0x7e, 0xae, 0xdf, 0x7d, - 0xb3, 0x9c, 0xa3, 0x9e, 0xec, 0xb8, 0x87, 0xfa, 0xe3, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x4a, - 0x04, 0xdd, 0x00, 0x12, 0x06, 0x00, 0x00, + proto.RegisterType((*BasicPool)(nil), "kyve.query.types.BasicPool") + proto.RegisterType((*FullStaker)(nil), "kyve.query.types.FullStaker") + proto.RegisterType((*StakerMetadata)(nil), "kyve.query.types.StakerMetadata") + proto.RegisterType((*CommissionChangeEntry)(nil), "kyve.query.types.CommissionChangeEntry") + proto.RegisterType((*PoolMembership)(nil), "kyve.query.types.PoolMembership") +} + +func init() { proto.RegisterFile("kyve/query/types/query.proto", fileDescriptor_504c7116a9cd35dd) } + +var fileDescriptor_504c7116a9cd35dd = []byte{ + // 784 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x41, 0x8f, 0x1b, 0x35, + 0x18, 0xcd, 0x24, 0xd9, 0x34, 0xf9, 0x02, 0x49, 0xb1, 0x4a, 0x3b, 0x4d, 0x21, 0x1b, 0xa5, 0x87, + 0x5d, 0x90, 0x98, 0x91, 0xb6, 0x88, 0x03, 0xe2, 0xb4, 0x49, 0x2b, 0x21, 0x5a, 0x84, 0x5c, 0x01, + 0x82, 0xcb, 0xc8, 0x99, 0xf1, 0x4e, 0xac, 0xcc, 0xd8, 0xc1, 0xf6, 0x24, 0xe4, 0xc8, 0x3f, 0xe0, + 0xb7, 0x70, 0xe7, 0xde, 0x63, 0x2f, 0x48, 0x88, 0xc3, 0x0a, 0xed, 0xfe, 0x0f, 0x84, 0x6c, 0xcf, + 0xcc, 0x66, 0x97, 0x1c, 0xb9, 0xf9, 0x7b, 0xef, 0x8d, 0xbf, 0xf1, 0x7b, 0x9f, 0x0d, 0x1f, 0xac, + 0x76, 0x1b, 0x1a, 0xfe, 0x54, 0x50, 0xb9, 0x0b, 0xf5, 0x6e, 0x4d, 0x95, 0x5b, 0x07, 0x6b, 0x29, + 0xb4, 0x40, 0xf7, 0x0d, 0x1b, 0x38, 0xc4, 0xb2, 0xa3, 0x07, 0xa9, 0x48, 0x85, 0x25, 0x43, 0xb3, + 0x72, 0xba, 0xd1, 0xc8, 0xee, 0xb2, 0x16, 0x22, 0x2b, 0x37, 0x31, 0x4b, 0xc7, 0x4d, 0x7f, 0x6f, + 0x42, 0xef, 0x9c, 0x28, 0x16, 0x7f, 0x23, 0x44, 0x86, 0x06, 0xd0, 0x64, 0x89, 0xef, 0x4d, 0xbc, + 0xd3, 0x36, 0x6e, 0xb2, 0x04, 0x21, 0x68, 0x73, 0x92, 0x53, 0xbf, 0x39, 0xf1, 0x4e, 0x7b, 0xd8, + 0xae, 0x91, 0x0f, 0xf7, 0x64, 0xc1, 0x35, 0xcb, 0xa9, 0xdf, 0xb2, 0x70, 0x55, 0x1a, 0x75, 0x26, + 0x52, 0xe1, 0xb7, 0x9d, 0xda, 0xac, 0xd1, 0xa7, 0xf0, 0x90, 0xf1, 0x8b, 0x8c, 0x68, 0x26, 0x78, + 0xa4, 0x96, 0x44, 0xd2, 0x68, 0x4b, 0x59, 0xba, 0xd4, 0xfe, 0x91, 0xed, 0xf2, 0xa0, 0x66, 0x5f, + 0x1b, 0xf2, 0x7b, 0xcb, 0xa1, 0x13, 0x18, 0x16, 0xeb, 0x4c, 0x90, 0x24, 0x62, 0x5c, 0x53, 0xb9, + 0x21, 0x99, 0xdf, 0xb1, 0xf2, 0x81, 0x83, 0xbf, 0x2c, 0x51, 0x74, 0x0c, 0x7d, 0x2d, 0x34, 0xc9, + 0xa2, 0x8b, 0x82, 0x27, 0xca, 0xbf, 0x67, 0x45, 0x60, 0xa1, 0x17, 0x06, 0x41, 0x1f, 0xc1, 0x7d, + 0x27, 0x48, 0x68, 0x46, 0x53, 0xdb, 0xc8, 0xef, 0x5a, 0xd5, 0xd0, 0xe2, 0xf3, 0x1a, 0x46, 0xcf, + 0xa0, 0xa3, 0x34, 0xd1, 0x85, 0xf2, 0x7b, 0x13, 0xef, 0x74, 0x70, 0xf6, 0x24, 0xb0, 0xfe, 0x5a, + 0xb3, 0xac, 0x6f, 0x81, 0xf1, 0xe8, 0xb5, 0x95, 0xe0, 0x52, 0x3a, 0xfd, 0xa3, 0x09, 0xf0, 0xa2, + 0xc8, 0x0c, 0xbc, 0xa2, 0xd2, 0x98, 0x43, 0x92, 0x44, 0x52, 0xa5, 0xac, 0x8b, 0x3d, 0x5c, 0x95, + 0xe8, 0x0b, 0xe8, 0xe6, 0x54, 0x93, 0x84, 0x68, 0x62, 0xed, 0xec, 0x9f, 0x4d, 0x82, 0xbb, 0xf9, + 0x05, 0x6e, 0x97, 0x57, 0xa5, 0x0e, 0xd7, 0x5f, 0x18, 0x43, 0x14, 0xcd, 0x2e, 0xf6, 0x4f, 0xd1, + 0x72, 0x86, 0x18, 0x78, 0xef, 0x10, 0x9f, 0xc3, 0xe3, 0x3b, 0xc2, 0xa8, 0xe0, 0x0b, 0xc1, 0x13, + 0xc6, 0x53, 0x1b, 0x4c, 0x1b, 0x3f, 0xba, 0xfd, 0xc9, 0xb7, 0x15, 0x7d, 0xd0, 0xab, 0xa3, 0xc3, + 0x5e, 0x9d, 0xc0, 0xb0, 0x14, 0x09, 0x19, 0xc5, 0xa2, 0xe0, 0xba, 0x0a, 0xa8, 0x86, 0x67, 0x06, + 0x45, 0x9f, 0xc1, 0x91, 0x31, 0xd0, 0x44, 0xd3, 0x3a, 0x7c, 0x66, 0x63, 0xea, 0x2b, 0x9a, 0x2f, + 0xa8, 0x54, 0x4b, 0xb6, 0xc6, 0x4e, 0x3e, 0xfd, 0xa7, 0x09, 0x83, 0xdb, 0x6e, 0xa0, 0x19, 0x40, + 0x2c, 0xf2, 0x9c, 0x29, 0x65, 0x7e, 0xcc, 0xda, 0x7b, 0xfe, 0xf4, 0xcd, 0xe5, 0x71, 0xe3, 0xaf, + 0xcb, 0xe3, 0x27, 0xb1, 0x50, 0xb9, 0x50, 0x2a, 0x59, 0x05, 0x4c, 0x84, 0x39, 0xd1, 0xcb, 0xe0, + 0x25, 0x4d, 0x49, 0xbc, 0x9b, 0xd3, 0x18, 0xef, 0x7d, 0x66, 0x02, 0xca, 0x05, 0x67, 0x2b, 0x2a, + 0xcb, 0xa1, 0xae, 0x4a, 0xc3, 0x6c, 0xe9, 0x42, 0x31, 0x5d, 0xcf, 0x75, 0x59, 0xa2, 0x11, 0x74, + 0x59, 0x42, 0xb9, 0x66, 0x7a, 0x57, 0xce, 0x76, 0x5d, 0x1b, 0xcf, 0x14, 0x8d, 0x0b, 0xc9, 0xf4, + 0x2e, 0x8a, 0x05, 0xd7, 0x24, 0x76, 0x93, 0xdd, 0xc3, 0xc3, 0x0a, 0x9f, 0x39, 0xd8, 0x34, 0x48, + 0xa8, 0x26, 0x2c, 0x53, 0xd6, 0xab, 0x1e, 0xae, 0x4a, 0x14, 0xc3, 0xe3, 0x35, 0xb5, 0x19, 0x44, + 0x37, 0xbf, 0x1a, 0xc5, 0x4b, 0xc2, 0x53, 0x6a, 0x67, 0xba, 0x7f, 0x76, 0xf2, 0x5f, 0xe3, 0x66, + 0xb5, 0x74, 0x66, 0x95, 0xcf, 0xb9, 0x96, 0x3b, 0xfc, 0xa8, 0xdc, 0xe9, 0x2e, 0x8b, 0x3e, 0x01, + 0xb4, 0xb7, 0xb9, 0xa4, 0x5b, 0x22, 0x13, 0x55, 0xde, 0x85, 0xf7, 0x6e, 0x18, 0xec, 0x88, 0xe9, + 0x2f, 0x1e, 0xbc, 0x7f, 0xb0, 0xc3, 0xff, 0x93, 0xc3, 0x53, 0x78, 0x37, 0x96, 0xd4, 0x0d, 0x68, + 0x42, 0xb4, 0x7b, 0x62, 0x5a, 0xf8, 0x9d, 0x0a, 0x9c, 0x13, 0x4d, 0xa7, 0xbf, 0x79, 0x30, 0xb8, + 0x3d, 0x1e, 0x28, 0x84, 0xb6, 0x19, 0x10, 0xdb, 0xb6, 0x5f, 0x5d, 0xd1, 0x7d, 0x57, 0xea, 0xc7, + 0x0c, 0x5b, 0x21, 0x7a, 0x08, 0x9d, 0xb5, 0x60, 0x5c, 0x2b, 0xdb, 0xa1, 0x8d, 0xcb, 0x0a, 0x7d, + 0x08, 0xc0, 0x54, 0x94, 0x51, 0xb2, 0x31, 0x37, 0xc3, 0x24, 0xde, 0xc5, 0x3d, 0xa6, 0x5e, 0x3a, + 0x00, 0x8d, 0x01, 0x36, 0x24, 0xab, 0xee, 0xb2, 0x4b, 0x7d, 0x0f, 0x31, 0x61, 0x2e, 0x48, 0x46, + 0x78, 0x4c, 0xcb, 0x2b, 0x52, 0x95, 0xe7, 0xf3, 0x37, 0x57, 0x63, 0xef, 0xed, 0xd5, 0xd8, 0xfb, + 0xfb, 0x6a, 0xec, 0xfd, 0x7a, 0x3d, 0x6e, 0xbc, 0xbd, 0x1e, 0x37, 0xfe, 0xbc, 0x1e, 0x37, 0x7e, + 0xfc, 0x38, 0x65, 0x7a, 0x59, 0x2c, 0x82, 0x58, 0xe4, 0xe1, 0x57, 0x3f, 0x7c, 0xf7, 0xfc, 0x6b, + 0xaa, 0xb7, 0x42, 0xae, 0xc2, 0x78, 0x49, 0x18, 0x0f, 0x7f, 0xde, 0x7f, 0xe7, 0x17, 0x1d, 0xfb, + 0x3c, 0x3f, 0xfb, 0x37, 0x00, 0x00, 0xff, 0xff, 0x19, 0x6a, 0x0e, 0x19, 0x02, 0x06, 0x00, 0x00, } func (m *BasicPool) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/stakers.pb.go b/x/query/types/stakers.pb.go index b3fe0f79..ad4d28c3 100644 --- a/x/query/types/stakers.pb.go +++ b/x/query/types/stakers.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/query/v1beta1/stakers.proto +// source: kyve/query/types/stakers.proto package types @@ -60,7 +60,7 @@ func (x StakerStatus) String() string { } func (StakerStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{0} + return fileDescriptor_467862767356a634, []int{0} } // QueryStakersRequest is the request type for the Query/Stakers RPC method. @@ -68,7 +68,7 @@ type QueryStakersRequest struct { // pagination defines an optional pagination for the request. Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"` // status looks whether a staker is participating in pools or not - Status StakerStatus `protobuf:"varint,2,opt,name=status,proto3,enum=kyve.query.v1beta1.StakerStatus" json:"status,omitempty"` + Status StakerStatus `protobuf:"varint,2,opt,name=status,proto3,enum=kyve.query.types.StakerStatus" json:"status,omitempty"` // search searches for moniker OR address Search string `protobuf:"bytes,3,opt,name=search,proto3" json:"search,omitempty"` } @@ -77,7 +77,7 @@ func (m *QueryStakersRequest) Reset() { *m = QueryStakersRequest{} } func (m *QueryStakersRequest) String() string { return proto.CompactTextString(m) } func (*QueryStakersRequest) ProtoMessage() {} func (*QueryStakersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{0} + return fileDescriptor_467862767356a634, []int{0} } func (m *QueryStakersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -139,7 +139,7 @@ func (m *QueryStakersResponse) Reset() { *m = QueryStakersResponse{} } func (m *QueryStakersResponse) String() string { return proto.CompactTextString(m) } func (*QueryStakersResponse) ProtoMessage() {} func (*QueryStakersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{1} + return fileDescriptor_467862767356a634, []int{1} } func (m *QueryStakersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -192,7 +192,7 @@ func (m *QueryStakerRequest) Reset() { *m = QueryStakerRequest{} } func (m *QueryStakerRequest) String() string { return proto.CompactTextString(m) } func (*QueryStakerRequest) ProtoMessage() {} func (*QueryStakerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{2} + return fileDescriptor_467862767356a634, []int{2} } func (m *QueryStakerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -238,7 +238,7 @@ func (m *QueryStakerResponse) Reset() { *m = QueryStakerResponse{} } func (m *QueryStakerResponse) String() string { return proto.CompactTextString(m) } func (*QueryStakerResponse) ProtoMessage() {} func (*QueryStakerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{3} + return fileDescriptor_467862767356a634, []int{3} } func (m *QueryStakerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -284,7 +284,7 @@ func (m *QueryStakersByPoolRequest) Reset() { *m = QueryStakersByPoolReq func (m *QueryStakersByPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryStakersByPoolRequest) ProtoMessage() {} func (*QueryStakersByPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{4} + return fileDescriptor_467862767356a634, []int{4} } func (m *QueryStakersByPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -330,7 +330,7 @@ func (m *QueryStakersByPoolResponse) Reset() { *m = QueryStakersByPoolRe func (m *QueryStakersByPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryStakersByPoolResponse) ProtoMessage() {} func (*QueryStakersByPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{5} + return fileDescriptor_467862767356a634, []int{5} } func (m *QueryStakersByPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -378,7 +378,7 @@ func (m *StakerPoolResponse) Reset() { *m = StakerPoolResponse{} } func (m *StakerPoolResponse) String() string { return proto.CompactTextString(m) } func (*StakerPoolResponse) ProtoMessage() {} func (*StakerPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{6} + return fileDescriptor_467862767356a634, []int{6} } func (m *StakerPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -431,7 +431,7 @@ func (m *QueryStakersByPoolCountRequest) Reset() { *m = QueryStakersByPo func (m *QueryStakersByPoolCountRequest) String() string { return proto.CompactTextString(m) } func (*QueryStakersByPoolCountRequest) ProtoMessage() {} func (*QueryStakersByPoolCountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{7} + return fileDescriptor_467862767356a634, []int{7} } func (m *QueryStakersByPoolCountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +479,7 @@ func (m *QueryStakersByPoolCountResponse) Reset() { *m = QueryStakersByP func (m *QueryStakersByPoolCountResponse) String() string { return proto.CompactTextString(m) } func (*QueryStakersByPoolCountResponse) ProtoMessage() {} func (*QueryStakersByPoolCountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6aa31a681566da33, []int{8} + return fileDescriptor_467862767356a634, []int{8} } func (m *QueryStakersByPoolCountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,69 +523,69 @@ func (m *QueryStakersByPoolCountResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterEnum("kyve.query.v1beta1.StakerStatus", StakerStatus_name, StakerStatus_value) - proto.RegisterType((*QueryStakersRequest)(nil), "kyve.query.v1beta1.QueryStakersRequest") - proto.RegisterType((*QueryStakersResponse)(nil), "kyve.query.v1beta1.QueryStakersResponse") - proto.RegisterType((*QueryStakerRequest)(nil), "kyve.query.v1beta1.QueryStakerRequest") - proto.RegisterType((*QueryStakerResponse)(nil), "kyve.query.v1beta1.QueryStakerResponse") - proto.RegisterType((*QueryStakersByPoolRequest)(nil), "kyve.query.v1beta1.QueryStakersByPoolRequest") - proto.RegisterType((*QueryStakersByPoolResponse)(nil), "kyve.query.v1beta1.QueryStakersByPoolResponse") - proto.RegisterType((*StakerPoolResponse)(nil), "kyve.query.v1beta1.StakerPoolResponse") - proto.RegisterType((*QueryStakersByPoolCountRequest)(nil), "kyve.query.v1beta1.QueryStakersByPoolCountRequest") - proto.RegisterType((*QueryStakersByPoolCountResponse)(nil), "kyve.query.v1beta1.QueryStakersByPoolCountResponse") -} - -func init() { proto.RegisterFile("kyve/query/v1beta1/stakers.proto", fileDescriptor_6aa31a681566da33) } - -var fileDescriptor_6aa31a681566da33 = []byte{ - // 739 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0x4f, 0x4f, 0x13, 0x4d, - 0x1c, 0xee, 0x94, 0xa6, 0x0d, 0x03, 0xef, 0x1b, 0x32, 0x2f, 0xe1, 0x2d, 0xab, 0x2c, 0xcd, 0x6a, - 0x4a, 0x45, 0xd9, 0x09, 0x45, 0x8d, 0x07, 0x63, 0xe4, 0x4f, 0x6b, 0x1a, 0x12, 0x82, 0xdb, 0x42, - 0xa2, 0x97, 0x66, 0xda, 0x4e, 0xb6, 0x9b, 0x96, 0x9d, 0xb2, 0xb3, 0x45, 0x1b, 0xc2, 0x41, 0x2f, - 0x7a, 0x32, 0x26, 0x7e, 0x00, 0x0f, 0xc6, 0x8b, 0x17, 0xfd, 0x18, 0x1c, 0x49, 0xbc, 0x78, 0x32, - 0x06, 0xfc, 0x0e, 0x5e, 0x4d, 0x67, 0x67, 0x71, 0x17, 0x5a, 0x5b, 0x12, 0x0f, 0xde, 0x66, 0x76, - 0x9e, 0x67, 0x7e, 0xcf, 0xf3, 0xcc, 0xfc, 0x66, 0x61, 0xaa, 0xd1, 0xd9, 0xa3, 0x78, 0xb7, 0x4d, - 0x9d, 0x0e, 0xde, 0x5b, 0xac, 0x50, 0x97, 0x2c, 0x62, 0xee, 0x92, 0x06, 0x75, 0xb8, 0xde, 0x72, - 0x98, 0xcb, 0x10, 0xea, 0x22, 0x74, 0x81, 0xd0, 0x25, 0x42, 0x99, 0xaf, 0x32, 0xbe, 0xc3, 0x38, - 0xae, 0x10, 0x7e, 0x96, 0xdc, 0x22, 0xa6, 0x65, 0x13, 0xd7, 0x62, 0xb6, 0xc7, 0x57, 0x26, 0x4d, - 0x66, 0x32, 0x31, 0xc4, 0xdd, 0x91, 0xfc, 0x7a, 0xd9, 0x64, 0xcc, 0x6c, 0x52, 0x4c, 0x5a, 0x16, - 0x26, 0xb6, 0xcd, 0x5c, 0x41, 0x91, 0x35, 0x15, 0xb5, 0x87, 0x2a, 0x4f, 0x81, 0xb7, 0xae, 0x89, - 0x75, 0xa9, 0xb3, 0xb7, 0x6e, 0xed, 0x23, 0x80, 0xff, 0x3d, 0xec, 0x72, 0x8a, 0xde, 0x67, 0x83, - 0xee, 0xb6, 0x29, 0x77, 0x51, 0x1e, 0xc2, 0x5f, 0x1a, 0x93, 0x20, 0x05, 0x32, 0x63, 0xd9, 0xb4, - 0xee, 0x19, 0xd2, 0xbb, 0x86, 0xc2, 0x5e, 0xf5, 0x4d, 0x62, 0x52, 0xc9, 0x35, 0x02, 0x4c, 0x74, - 0x07, 0xc6, 0xb9, 0x4b, 0xdc, 0x36, 0x4f, 0x46, 0x53, 0x20, 0xf3, 0x6f, 0x36, 0xa5, 0x9f, 0x0f, - 0x4a, 0xf7, 0x6a, 0x17, 0x05, 0xce, 0x90, 0x78, 0x34, 0x05, 0xe3, 0x9c, 0x12, 0xa7, 0x5a, 0x4f, - 0x8e, 0xa4, 0x40, 0x66, 0xd4, 0x90, 0x33, 0xed, 0x2d, 0x80, 0x93, 0x61, 0xc5, 0xbc, 0xc5, 0x6c, - 0x4e, 0xd1, 0x3d, 0x98, 0x90, 0xde, 0x92, 0x20, 0x35, 0x92, 0x19, 0xcb, 0xaa, 0xbd, 0x6a, 0xe5, - 0xdb, 0xcd, 0xa6, 0xc7, 0x5c, 0x89, 0x1d, 0x7e, 0x9d, 0x8d, 0x18, 0x3e, 0x09, 0x3d, 0x08, 0x59, - 0x8e, 0x0a, 0xcb, 0x73, 0x03, 0x2d, 0x7b, 0xc5, 0x83, 0x9e, 0x35, 0x1d, 0xa2, 0x80, 0x40, 0x3f, - 0xd1, 0x24, 0x4c, 0x90, 0x5a, 0xcd, 0xa1, 0x9c, 0x8b, 0x38, 0x47, 0x0d, 0x7f, 0xaa, 0x15, 0x43, - 0x47, 0x70, 0xea, 0xe7, 0xae, 0x88, 0xae, 0x41, 0x1d, 0x19, 0xff, 0x70, 0x76, 0x24, 0x47, 0xbb, - 0x09, 0xa7, 0x83, 0x29, 0xad, 0x74, 0x36, 0x19, 0x6b, 0xfa, 0x5a, 0xfe, 0x87, 0x89, 0x16, 0x63, - 0xcd, 0xb2, 0x55, 0x13, 0x7b, 0xc7, 0x8c, 0x78, 0x77, 0x5a, 0xa8, 0x69, 0x35, 0xa8, 0xf4, 0x62, - 0x49, 0x45, 0xf9, 0xb3, 0x09, 0xa7, 0xfb, 0x9f, 0x66, 0x90, 0x78, 0x26, 0x69, 0xed, 0x15, 0x80, - 0xe8, 0x3c, 0x0a, 0xdd, 0xbe, 0x98, 0x61, 0xdf, 0x2a, 0xba, 0x0f, 0xe1, 0x1e, 0x69, 0x92, 0x6a, - 0x95, 0xb5, 0x6d, 0x57, 0x1e, 0x9c, 0xbc, 0x67, 0xfe, 0x65, 0xf7, 0xd9, 0xdb, 0xa7, 0x38, 0x23, - 0xc0, 0xd1, 0xea, 0x50, 0x3d, 0x6f, 0x7b, 0x55, 0xc0, 0xfe, 0x6c, 0x3f, 0x68, 0x1f, 0x00, 0x9c, - 0xed, 0x5b, 0xea, 0x2f, 0xbb, 0xc8, 0xf3, 0x16, 0x1c, 0x0f, 0xb6, 0x26, 0x9a, 0x81, 0xd3, 0xc5, - 0xd2, 0xf2, 0x7a, 0xce, 0x28, 0x17, 0x4b, 0xcb, 0xa5, 0xad, 0x62, 0x79, 0x6b, 0xa3, 0xb8, 0x99, - 0x5b, 0x2d, 0xe4, 0x0b, 0xb9, 0xb5, 0x89, 0x08, 0x4a, 0xc2, 0xc9, 0xf0, 0xf2, 0xf2, 0x6a, 0xa9, - 0xb0, 0x9d, 0x9b, 0x00, 0x48, 0x81, 0x53, 0xe1, 0x95, 0xc2, 0x86, 0x5c, 0x8b, 0x2a, 0xb1, 0x97, - 0xef, 0xd4, 0x48, 0xf6, 0x47, 0x0c, 0x8e, 0x07, 0x73, 0x41, 0xcf, 0x00, 0x4c, 0xf8, 0xe3, 0xb9, - 0x5e, 0xfe, 0x7b, 0xbc, 0x5a, 0x4a, 0x66, 0x30, 0xd0, 0xb3, 0xa9, 0x5d, 0x79, 0xfe, 0xf9, 0xfb, - 0x9b, 0xe8, 0x0c, 0xba, 0x84, 0xfb, 0x3f, 0xed, 0xe8, 0x05, 0x80, 0x71, 0x8f, 0x88, 0xd2, 0x03, - 0x76, 0xf6, 0x15, 0xcc, 0x0d, 0xc4, 0x49, 0x01, 0x37, 0x84, 0x80, 0x34, 0xba, 0xda, 0x5f, 0x00, - 0xde, 0x97, 0x2f, 0xc4, 0x01, 0x7a, 0x0f, 0xe0, 0x3f, 0xa1, 0x1b, 0x83, 0x16, 0x06, 0x59, 0x0d, - 0x75, 0xbc, 0xa2, 0x0f, 0x0b, 0x97, 0xf2, 0x6e, 0x09, 0x79, 0x18, 0x2d, 0xfc, 0x26, 0x9f, 0x72, - 0xa5, 0x53, 0xee, 0xbe, 0x1b, 0x78, 0x5f, 0x3e, 0x26, 0x07, 0xe8, 0xd3, 0x69, 0x67, 0x07, 0x6f, - 0x36, 0xca, 0x0e, 0x57, 0x3d, 0xd8, 0x71, 0xca, 0xd2, 0x85, 0x38, 0x52, 0xf6, 0xa2, 0x90, 0x7d, - 0x1d, 0x5d, 0x1b, 0x42, 0x76, 0x59, 0xf4, 0xfe, 0xca, 0xda, 0xe1, 0xb1, 0x0a, 0x8e, 0x8e, 0x55, - 0xf0, 0xed, 0x58, 0x05, 0xaf, 0x4f, 0xd4, 0xc8, 0xd1, 0x89, 0x1a, 0xf9, 0x72, 0xa2, 0x46, 0x1e, - 0xcf, 0x9b, 0x96, 0x5b, 0x6f, 0x57, 0xf4, 0x2a, 0xdb, 0xc1, 0xeb, 0x8f, 0xb6, 0x73, 0x1b, 0xd4, - 0x7d, 0xc2, 0x9c, 0x06, 0xae, 0xd6, 0x89, 0x65, 0xe3, 0xa7, 0x72, 0x77, 0xb7, 0xd3, 0xa2, 0xbc, - 0x12, 0x17, 0xbf, 0xd3, 0xa5, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x68, 0x64, 0xf5, 0xe3, 0x2a, - 0x08, 0x00, 0x00, + proto.RegisterEnum("kyve.query.types.StakerStatus", StakerStatus_name, StakerStatus_value) + proto.RegisterType((*QueryStakersRequest)(nil), "kyve.query.types.QueryStakersRequest") + proto.RegisterType((*QueryStakersResponse)(nil), "kyve.query.types.QueryStakersResponse") + proto.RegisterType((*QueryStakerRequest)(nil), "kyve.query.types.QueryStakerRequest") + proto.RegisterType((*QueryStakerResponse)(nil), "kyve.query.types.QueryStakerResponse") + proto.RegisterType((*QueryStakersByPoolRequest)(nil), "kyve.query.types.QueryStakersByPoolRequest") + proto.RegisterType((*QueryStakersByPoolResponse)(nil), "kyve.query.types.QueryStakersByPoolResponse") + proto.RegisterType((*StakerPoolResponse)(nil), "kyve.query.types.StakerPoolResponse") + proto.RegisterType((*QueryStakersByPoolCountRequest)(nil), "kyve.query.types.QueryStakersByPoolCountRequest") + proto.RegisterType((*QueryStakersByPoolCountResponse)(nil), "kyve.query.types.QueryStakersByPoolCountResponse") +} + +func init() { proto.RegisterFile("kyve/query/types/stakers.proto", fileDescriptor_467862767356a634) } + +var fileDescriptor_467862767356a634 = []byte{ + // 742 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0xcf, 0x4f, 0x13, 0x4f, + 0x14, 0xef, 0x94, 0xa6, 0x0d, 0x03, 0xdf, 0x6f, 0xc8, 0x48, 0xb0, 0xac, 0xb0, 0x34, 0x2b, 0x60, + 0x05, 0xdc, 0xb1, 0x15, 0x3d, 0x18, 0x63, 0xc2, 0x8f, 0x62, 0x1a, 0x12, 0x02, 0xdb, 0x42, 0xa2, + 0x97, 0x66, 0xda, 0x4e, 0xb6, 0x9b, 0x96, 0x9d, 0xb2, 0xb3, 0x45, 0x1b, 0xc2, 0x45, 0x2f, 0xc6, + 0x93, 0x89, 0x67, 0x0f, 0xc6, 0x8b, 0x07, 0xfd, 0x3f, 0x38, 0x92, 0x78, 0xf1, 0x64, 0x0c, 0x18, + 0xff, 0x0e, 0xd3, 0xd9, 0x59, 0xdc, 0xa5, 0xfc, 0x28, 0x89, 0x07, 0x6f, 0x33, 0xfb, 0xde, 0x67, + 0xdf, 0xe7, 0xf3, 0xd9, 0xf7, 0xde, 0x42, 0xb5, 0xde, 0xde, 0xa5, 0x78, 0xa7, 0x45, 0x9d, 0x36, + 0x76, 0xdb, 0x4d, 0xca, 0x31, 0x77, 0x49, 0x9d, 0x3a, 0x5c, 0x6f, 0x3a, 0xcc, 0x65, 0x68, 0xa8, + 0x13, 0xd7, 0x45, 0x5c, 0x17, 0x71, 0x65, 0xa6, 0xc2, 0xf8, 0x36, 0xe3, 0xb8, 0x4c, 0xb8, 0x0f, + 0xdc, 0xcd, 0x94, 0xa9, 0x4b, 0x32, 0xb8, 0x49, 0x4c, 0xcb, 0x26, 0xae, 0xc5, 0x6c, 0x0f, 0xad, + 0x0c, 0x9b, 0xcc, 0x64, 0xe2, 0x88, 0x3b, 0x27, 0xf9, 0x74, 0xcc, 0x64, 0xcc, 0x6c, 0x50, 0x4c, + 0x9a, 0x16, 0x26, 0xb6, 0xcd, 0x5c, 0x01, 0xe1, 0x7e, 0xb4, 0x8b, 0x91, 0x57, 0xdd, 0x8b, 0xa6, + 0x44, 0x54, 0x72, 0x3c, 0x8b, 0xb1, 0xf6, 0x05, 0xc0, 0x6b, 0x1b, 0x1d, 0x44, 0xc1, 0x7b, 0x6c, + 0xd0, 0x9d, 0x16, 0xe5, 0x2e, 0x5a, 0x81, 0xf0, 0x0f, 0xbf, 0x24, 0x48, 0x81, 0xf4, 0x40, 0x76, + 0x5a, 0xf7, 0xc4, 0xe8, 0x1d, 0x31, 0x52, 0xa5, 0x14, 0xa3, 0xaf, 0x13, 0x93, 0x4a, 0xac, 0x11, + 0x40, 0xa2, 0x07, 0x30, 0xce, 0x5d, 0xe2, 0xb6, 0x78, 0x32, 0x9a, 0x02, 0xe9, 0xff, 0xb3, 0xaa, + 0x7e, 0xda, 0x22, 0xdd, 0xab, 0x5c, 0x10, 0x59, 0x86, 0xcc, 0x46, 0x23, 0x30, 0xce, 0x29, 0x71, + 0x2a, 0xb5, 0x64, 0x5f, 0x0a, 0xa4, 0xfb, 0x0d, 0x79, 0xd3, 0xde, 0x03, 0x38, 0x1c, 0xe6, 0xcb, + 0x9b, 0xcc, 0xe6, 0x14, 0x3d, 0x82, 0x09, 0xa9, 0x2c, 0x09, 0x52, 0x7d, 0xe9, 0x81, 0xec, 0x58, + 0x77, 0xa5, 0x95, 0x56, 0xa3, 0xe1, 0xe1, 0x16, 0x63, 0x07, 0xdf, 0x27, 0x22, 0x86, 0x0f, 0x41, + 0x4f, 0x42, 0x72, 0xa3, 0x42, 0xee, 0xad, 0x4b, 0xe5, 0x7a, 0xa5, 0x83, 0x7a, 0x35, 0x1d, 0xa2, + 0x00, 0x3d, 0xdf, 0xcd, 0x24, 0x4c, 0x90, 0x6a, 0xd5, 0xa1, 0x9c, 0x0b, 0x2b, 0xfb, 0x0d, 0xff, + 0xaa, 0x6d, 0x84, 0xec, 0x3f, 0x51, 0xf3, 0x50, 0xd8, 0x56, 0xa7, 0x8e, 0xb4, 0xbe, 0x17, 0x31, + 0x12, 0xa1, 0xcd, 0xc3, 0xd1, 0xa0, 0x43, 0x8b, 0xed, 0x75, 0xc6, 0x1a, 0x3e, 0x93, 0xeb, 0x30, + 0xd1, 0x64, 0xac, 0x51, 0xb2, 0xaa, 0xe2, 0xcd, 0x31, 0x23, 0xde, 0xb9, 0xe6, 0xab, 0x5a, 0x19, + 0x2a, 0x67, 0xa1, 0x24, 0x9f, 0xe5, 0xd3, 0xee, 0x4e, 0x9e, 0xf7, 0x1d, 0x83, 0xb0, 0x53, 0x2e, + 0x6b, 0x6f, 0x00, 0x44, 0xdd, 0x59, 0x68, 0xfe, 0x2a, 0x62, 0x7d, 0x99, 0xe8, 0x31, 0x84, 0xbb, + 0xa4, 0x41, 0x2a, 0x15, 0xd6, 0xb2, 0x5d, 0xf9, 0xc9, 0x64, 0x77, 0xf9, 0x2d, 0xee, 0x61, 0xb7, + 0x4e, 0xb2, 0x8c, 0x00, 0x42, 0xab, 0x41, 0xb5, 0x5b, 0xf0, 0x92, 0x48, 0xfb, 0xbb, 0x33, 0xa0, + 0x7d, 0x02, 0x70, 0xe2, 0xdc, 0x52, 0xff, 0x54, 0xfb, 0xce, 0x58, 0x70, 0x30, 0x38, 0x8e, 0x68, + 0x1c, 0x8e, 0x16, 0x8a, 0x0b, 0xab, 0x39, 0xa3, 0x54, 0x28, 0x2e, 0x14, 0x37, 0x0b, 0xa5, 0xcd, + 0xb5, 0xc2, 0x7a, 0x6e, 0x29, 0xbf, 0x92, 0xcf, 0x2d, 0x0f, 0x45, 0x50, 0x12, 0x0e, 0x87, 0xc3, + 0x0b, 0x4b, 0xc5, 0xfc, 0x56, 0x6e, 0x08, 0x20, 0x05, 0x8e, 0x84, 0x23, 0xf9, 0x35, 0x19, 0x8b, + 0x2a, 0xb1, 0xd7, 0x1f, 0xd5, 0x48, 0xf6, 0x57, 0x0c, 0x0e, 0x06, 0x5d, 0x41, 0xfb, 0x30, 0xe1, + 0x1f, 0xa7, 0xba, 0xc5, 0x9f, 0xb1, 0xa4, 0x94, 0xe9, 0xcb, 0xd2, 0x3c, 0x85, 0xda, 0xcd, 0x97, + 0x5f, 0x7f, 0xbe, 0x8b, 0x8e, 0xa3, 0x1b, 0x38, 0xb0, 0x2d, 0xfd, 0x35, 0xec, 0x7b, 0xf8, 0x0a, + 0xc0, 0xb8, 0x07, 0x44, 0x93, 0x17, 0xbe, 0xd7, 0xaf, 0x3e, 0x75, 0x49, 0x96, 0x2c, 0x3e, 0x27, + 0x8a, 0x4f, 0xa3, 0xc9, 0xf3, 0x8b, 0xe3, 0x3d, 0xb9, 0x0e, 0xf6, 0xd1, 0x07, 0x00, 0xff, 0x0b, + 0xb5, 0x09, 0x9a, 0xbd, 0x58, 0x64, 0x68, 0xbc, 0x95, 0xb9, 0xde, 0x92, 0x25, 0xb5, 0xfb, 0x82, + 0x1a, 0x46, 0x77, 0x2e, 0xf0, 0xa5, 0x54, 0x6e, 0x97, 0x3a, 0x2b, 0x02, 0xef, 0xc9, 0xbd, 0xb1, + 0x8f, 0x3e, 0x9f, 0x8c, 0x71, 0xb0, 0x95, 0xd1, 0xdd, 0x5e, 0x6a, 0x07, 0x07, 0x4c, 0xc9, 0x5c, + 0x01, 0x21, 0x29, 0x67, 0x04, 0xe5, 0x59, 0x74, 0xbb, 0x07, 0xca, 0x25, 0x31, 0xe8, 0x8b, 0xcb, + 0x07, 0x47, 0x2a, 0x38, 0x3c, 0x52, 0xc1, 0x8f, 0x23, 0x15, 0xbc, 0x3d, 0x56, 0x23, 0x87, 0xc7, + 0x6a, 0xe4, 0xdb, 0xb1, 0x1a, 0x79, 0x36, 0x63, 0x5a, 0x6e, 0xad, 0x55, 0xd6, 0x2b, 0x6c, 0x1b, + 0xaf, 0x3e, 0xdd, 0xca, 0xad, 0x51, 0xf7, 0x39, 0x73, 0xea, 0xb8, 0x52, 0x23, 0x96, 0x8d, 0x5f, + 0x04, 0x7f, 0xab, 0xe5, 0xb8, 0xf8, 0x5f, 0xde, 0xfb, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x36, 0xfa, + 0x86, 0x7d, 0x03, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -621,7 +621,7 @@ func NewQueryStakersClient(cc grpc1.ClientConn) QueryStakersClient { func (c *queryStakersClient) Stakers(ctx context.Context, in *QueryStakersRequest, opts ...grpc.CallOption) (*QueryStakersResponse, error) { out := new(QueryStakersResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryStakers/Stakers", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryStakers/Stakers", in, out, opts...) if err != nil { return nil, err } @@ -630,7 +630,7 @@ func (c *queryStakersClient) Stakers(ctx context.Context, in *QueryStakersReques func (c *queryStakersClient) Staker(ctx context.Context, in *QueryStakerRequest, opts ...grpc.CallOption) (*QueryStakerResponse, error) { out := new(QueryStakerResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryStakers/Staker", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryStakers/Staker", in, out, opts...) if err != nil { return nil, err } @@ -639,7 +639,7 @@ func (c *queryStakersClient) Staker(ctx context.Context, in *QueryStakerRequest, func (c *queryStakersClient) StakersByPool(ctx context.Context, in *QueryStakersByPoolRequest, opts ...grpc.CallOption) (*QueryStakersByPoolResponse, error) { out := new(QueryStakersByPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryStakers/StakersByPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryStakers/StakersByPool", in, out, opts...) if err != nil { return nil, err } @@ -648,7 +648,7 @@ func (c *queryStakersClient) StakersByPool(ctx context.Context, in *QueryStakers func (c *queryStakersClient) StakersByPoolCount(ctx context.Context, in *QueryStakersByPoolCountRequest, opts ...grpc.CallOption) (*QueryStakersByPoolCountResponse, error) { out := new(QueryStakersByPoolCountResponse) - err := c.cc.Invoke(ctx, "/kyve.query.v1beta1.QueryStakers/StakersByPoolCount", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.query.types.QueryStakers/StakersByPoolCount", in, out, opts...) if err != nil { return nil, err } @@ -699,7 +699,7 @@ func _QueryStakers_Stakers_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryStakers/Stakers", + FullMethod: "/kyve.query.types.QueryStakers/Stakers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryStakersServer).Stakers(ctx, req.(*QueryStakersRequest)) @@ -717,7 +717,7 @@ func _QueryStakers_Staker_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryStakers/Staker", + FullMethod: "/kyve.query.types.QueryStakers/Staker", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryStakersServer).Staker(ctx, req.(*QueryStakerRequest)) @@ -735,7 +735,7 @@ func _QueryStakers_StakersByPool_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryStakers/StakersByPool", + FullMethod: "/kyve.query.types.QueryStakers/StakersByPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryStakersServer).StakersByPool(ctx, req.(*QueryStakersByPoolRequest)) @@ -753,7 +753,7 @@ func _QueryStakers_StakersByPoolCount_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.query.v1beta1.QueryStakers/StakersByPoolCount", + FullMethod: "/kyve.query.types.QueryStakers/StakersByPoolCount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryStakersServer).StakersByPoolCount(ctx, req.(*QueryStakersByPoolCountRequest)) @@ -762,7 +762,7 @@ func _QueryStakers_StakersByPoolCount_Handler(srv interface{}, ctx context.Conte } var _QueryStakers_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.query.v1beta1.QueryStakers", + ServiceName: "kyve.query.types.QueryStakers", HandlerType: (*QueryStakersServer)(nil), Methods: []grpc.MethodDesc{ { @@ -783,7 +783,7 @@ var _QueryStakers_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/query/v1beta1/stakers.proto", + Metadata: "kyve/query/types/stakers.proto", } func (m *QueryStakersRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/query/types/stakers.pb.gw.go b/x/query/types/stakers.pb.gw.go index 70ee8fdb..dd97a9ef 100644 --- a/x/query/types/stakers.pb.gw.go +++ b/x/query/types/stakers.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/query/v1beta1/stakers.proto +// source: kyve/query/types/stakers.proto /* Package types is a reverse proxy. diff --git a/x/stakers/types/events.pb.go b/x/stakers/types/events.pb.go index 5ac1791e..64837bba 100644 --- a/x/stakers/types/events.pb.go +++ b/x/stakers/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/events.proto +// source: kyve/stakers/types/events.proto package types @@ -39,7 +39,7 @@ func (m *EventUpdateParams) Reset() { *m = EventUpdateParams{} } func (m *EventUpdateParams) String() string { return proto.CompactTextString(m) } func (*EventUpdateParams) ProtoMessage() {} func (*EventUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{0} + return fileDescriptor_931d9098a4622e52, []int{0} } func (m *EventUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -104,7 +104,7 @@ func (m *EventCreateStaker) Reset() { *m = EventCreateStaker{} } func (m *EventCreateStaker) String() string { return proto.CompactTextString(m) } func (*EventCreateStaker) ProtoMessage() {} func (*EventCreateStaker) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{1} + return fileDescriptor_931d9098a4622e52, []int{1} } func (m *EventCreateStaker) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *EventUpdateMetadata) Reset() { *m = EventUpdateMetadata{} } func (m *EventUpdateMetadata) String() string { return proto.CompactTextString(m) } func (*EventUpdateMetadata) ProtoMessage() {} func (*EventUpdateMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{2} + return fileDescriptor_931d9098a4622e52, []int{2} } func (m *EventUpdateMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -252,7 +252,7 @@ func (m *EventUpdateCommission) Reset() { *m = EventUpdateCommission{} } func (m *EventUpdateCommission) String() string { return proto.CompactTextString(m) } func (*EventUpdateCommission) ProtoMessage() {} func (*EventUpdateCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{3} + return fileDescriptor_931d9098a4622e52, []int{3} } func (m *EventUpdateCommission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -301,7 +301,7 @@ func (m *EventClaimCommissionRewards) Reset() { *m = EventClaimCommissio func (m *EventClaimCommissionRewards) String() string { return proto.CompactTextString(m) } func (*EventClaimCommissionRewards) ProtoMessage() {} func (*EventClaimCommissionRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{4} + return fileDescriptor_931d9098a4622e52, []int{4} } func (m *EventClaimCommissionRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *EventJoinPool) Reset() { *m = EventJoinPool{} } func (m *EventJoinPool) String() string { return proto.CompactTextString(m) } func (*EventJoinPool) ProtoMessage() {} func (*EventJoinPool) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{5} + return fileDescriptor_931d9098a4622e52, []int{5} } func (m *EventJoinPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -432,7 +432,7 @@ func (m *EventLeavePool) Reset() { *m = EventLeavePool{} } func (m *EventLeavePool) String() string { return proto.CompactTextString(m) } func (*EventLeavePool) ProtoMessage() {} func (*EventLeavePool) Descriptor() ([]byte, []int) { - return fileDescriptor_7a1b3dc9634155a0, []int{6} + return fileDescriptor_931d9098a4622e52, []int{6} } func (m *EventLeavePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -476,52 +476,52 @@ func (m *EventLeavePool) GetStaker() string { } func init() { - proto.RegisterType((*EventUpdateParams)(nil), "kyve.stakers.v1beta1.EventUpdateParams") - proto.RegisterType((*EventCreateStaker)(nil), "kyve.stakers.v1beta1.EventCreateStaker") - proto.RegisterType((*EventUpdateMetadata)(nil), "kyve.stakers.v1beta1.EventUpdateMetadata") - proto.RegisterType((*EventUpdateCommission)(nil), "kyve.stakers.v1beta1.EventUpdateCommission") - proto.RegisterType((*EventClaimCommissionRewards)(nil), "kyve.stakers.v1beta1.EventClaimCommissionRewards") - proto.RegisterType((*EventJoinPool)(nil), "kyve.stakers.v1beta1.EventJoinPool") - proto.RegisterType((*EventLeavePool)(nil), "kyve.stakers.v1beta1.EventLeavePool") + proto.RegisterType((*EventUpdateParams)(nil), "kyve.stakers.types.EventUpdateParams") + proto.RegisterType((*EventCreateStaker)(nil), "kyve.stakers.types.EventCreateStaker") + proto.RegisterType((*EventUpdateMetadata)(nil), "kyve.stakers.types.EventUpdateMetadata") + proto.RegisterType((*EventUpdateCommission)(nil), "kyve.stakers.types.EventUpdateCommission") + proto.RegisterType((*EventClaimCommissionRewards)(nil), "kyve.stakers.types.EventClaimCommissionRewards") + proto.RegisterType((*EventJoinPool)(nil), "kyve.stakers.types.EventJoinPool") + proto.RegisterType((*EventLeavePool)(nil), "kyve.stakers.types.EventLeavePool") } -func init() { proto.RegisterFile("kyve/stakers/v1beta1/events.proto", fileDescriptor_7a1b3dc9634155a0) } +func init() { proto.RegisterFile("kyve/stakers/types/events.proto", fileDescriptor_931d9098a4622e52) } -var fileDescriptor_7a1b3dc9634155a0 = []byte{ - // 528 bytes of a gzipped FileDescriptorProto +var fileDescriptor_931d9098a4622e52 = []byte{ + // 522 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xcf, 0x6e, 0xd3, 0x40, - 0x10, 0xc6, 0xe3, 0x10, 0x12, 0xb2, 0x88, 0x7f, 0xa6, 0x80, 0x95, 0x22, 0xb7, 0x84, 0x4b, 0x91, - 0x90, 0xad, 0xc2, 0x13, 0x34, 0xa1, 0x48, 0x40, 0x8b, 0x2a, 0x23, 0x90, 0xe0, 0x12, 0x4d, 0xbc, - 0xa3, 0x64, 0x15, 0xdb, 0x63, 0x79, 0x37, 0x49, 0xfd, 0x06, 0x1c, 0x79, 0x17, 0xde, 0x80, 0x53, - 0x8f, 0x3d, 0x22, 0x0e, 0x15, 0x4a, 0x5e, 0x04, 0x79, 0x6d, 0xa7, 0x8e, 0xd4, 0x4a, 0xb4, 0x37, - 0x7f, 0x33, 0x9f, 0x7f, 0xdf, 0xcc, 0xae, 0x96, 0x3d, 0x9b, 0xa4, 0x33, 0x74, 0xa5, 0x82, 0x09, - 0x26, 0xd2, 0x9d, 0xed, 0x0e, 0x51, 0xc1, 0xae, 0x8b, 0x33, 0x8c, 0x94, 0x74, 0xe2, 0x84, 0x14, - 0x99, 0x1b, 0x99, 0xc5, 0x29, 0x2c, 0x4e, 0x61, 0xe9, 0x6c, 0x8c, 0x68, 0x44, 0xda, 0xe0, 0x66, - 0x5f, 0xb9, 0xb7, 0x73, 0x31, 0x2e, 0x86, 0x04, 0xc2, 0x02, 0xd7, 0xfd, 0x69, 0xb0, 0x07, 0xfb, - 0x19, 0xff, 0x73, 0xcc, 0x41, 0xe1, 0x91, 0xee, 0x99, 0x7b, 0x8c, 0x51, 0xc0, 0x07, 0xb9, 0xd3, - 0x32, 0xb6, 0x8d, 0x9d, 0xdb, 0xaf, 0x9e, 0x3a, 0x17, 0x25, 0x3b, 0xf9, 0x1f, 0xbd, 0xc6, 0xc9, - 0xd9, 0x56, 0xcd, 0x6b, 0x53, 0xc0, 0xcf, 0x11, 0x11, 0xce, 0x4b, 0x44, 0xfd, 0xff, 0x11, 0x11, - 0xce, 0x0b, 0x84, 0xc5, 0x5a, 0x31, 0xa4, 0x01, 0x01, 0xb7, 0x6e, 0x6c, 0x1b, 0x3b, 0x6d, 0xaf, - 0x94, 0xdd, 0xef, 0xe5, 0xd4, 0xfd, 0x04, 0x41, 0xe1, 0x27, 0x0d, 0x34, 0x1f, 0xb3, 0x66, 0x8e, - 0xd6, 0x13, 0xb7, 0xbd, 0x42, 0x65, 0x75, 0x08, 0x69, 0x1a, 0x29, 0x3d, 0x46, 0xc3, 0x2b, 0x94, - 0xd9, 0x67, 0xcc, 0xa7, 0x30, 0x14, 0x52, 0x0a, 0x8a, 0xf2, 0x88, 0xde, 0xf3, 0x6c, 0x88, 0x3f, - 0x67, 0x5b, 0x9b, 0x3e, 0xc9, 0x90, 0xa4, 0xe4, 0x13, 0x47, 0x90, 0x1b, 0x82, 0x1a, 0x3b, 0x07, - 0x38, 0x02, 0x3f, 0x7d, 0x83, 0xbe, 0x57, 0xf9, 0xad, 0xfb, 0xcb, 0x60, 0x0f, 0x2b, 0x07, 0x78, - 0x88, 0x0a, 0x38, 0x28, 0xb8, 0x74, 0x18, 0x8b, 0xb5, 0x42, 0x8a, 0x44, 0xd6, 0xa8, 0xe7, 0x4b, - 0x15, 0x32, 0xeb, 0xcc, 0x71, 0x28, 0x85, 0xc2, 0x72, 0xdd, 0x42, 0x9a, 0x1d, 0x76, 0x4b, 0x70, - 0x8c, 0x94, 0x50, 0xa9, 0xd5, 0xd0, 0xad, 0x95, 0x36, 0x5f, 0xb0, 0xfb, 0x12, 0xfd, 0x69, 0x22, - 0x54, 0x3a, 0xf0, 0x29, 0x52, 0xe0, 0x2b, 0xeb, 0xa6, 0xf6, 0xdc, 0x2b, 0xeb, 0xfd, 0xbc, 0x9c, - 0x05, 0x70, 0x54, 0x20, 0x02, 0x69, 0x35, 0xf3, 0x80, 0x42, 0x76, 0x15, 0x7b, 0x54, 0xd9, 0xa1, - 0xbf, 0xda, 0xee, 0xd2, 0x2d, 0xd6, 0x8f, 0xae, 0x7e, 0xbd, 0xa3, 0x3b, 0x64, 0x9b, 0xf9, 0x25, - 0x06, 0x20, 0xc2, 0xf3, 0x50, 0x0f, 0xe7, 0x90, 0x70, 0x79, 0xd5, 0xeb, 0xec, 0x1e, 0xb3, 0x3b, - 0x1a, 0xf7, 0x9e, 0x44, 0x74, 0x44, 0x14, 0x98, 0x4f, 0x58, 0x2b, 0x26, 0x0a, 0x06, 0x82, 0x6b, - 0x42, 0xc3, 0x6b, 0x66, 0xf2, 0x1d, 0xaf, 0x90, 0xeb, 0x6b, 0x64, 0x9b, 0xb1, 0x19, 0x04, 0xc0, - 0x79, 0x82, 0x52, 0x16, 0x97, 0x50, 0xa9, 0x54, 0x92, 0x1b, 0x6b, 0xc9, 0x7b, 0xec, 0xae, 0x4e, - 0x3e, 0x40, 0x98, 0xe1, 0xb5, 0xa2, 0x7b, 0x6f, 0x4f, 0x16, 0xb6, 0x71, 0xba, 0xb0, 0x8d, 0xbf, - 0x0b, 0xdb, 0xf8, 0xb1, 0xb4, 0x6b, 0xa7, 0x4b, 0xbb, 0xf6, 0x7b, 0x69, 0xd7, 0xbe, 0xbd, 0x1c, - 0x09, 0x35, 0x9e, 0x0e, 0x1d, 0x9f, 0x42, 0xf7, 0xc3, 0xd7, 0x2f, 0xfb, 0x1f, 0x51, 0xcd, 0x29, - 0x99, 0xb8, 0xfe, 0x18, 0x44, 0xe4, 0x1e, 0xaf, 0x9e, 0xb7, 0x4a, 0x63, 0x94, 0xc3, 0xa6, 0x7e, - 0xd6, 0xaf, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x29, 0xff, 0x88, 0x35, 0x4a, 0x04, 0x00, 0x00, + 0x10, 0xc6, 0xe3, 0x10, 0x52, 0xb2, 0x88, 0x7f, 0xe6, 0x9f, 0x95, 0x4a, 0x4e, 0x15, 0x2e, 0x45, + 0x42, 0xb6, 0x04, 0x0f, 0x80, 0x48, 0x28, 0x12, 0xd0, 0xa2, 0xca, 0x08, 0x24, 0xb8, 0x44, 0x13, + 0xef, 0x28, 0x59, 0xc5, 0xde, 0xb1, 0xbc, 0x9b, 0xa4, 0x7e, 0x03, 0x8e, 0xbc, 0x09, 0xef, 0xc0, + 0xa9, 0xc7, 0x1e, 0x11, 0x87, 0x0a, 0x25, 0x2f, 0x82, 0xbc, 0xb6, 0x5b, 0x47, 0x50, 0x09, 0x7a, + 0xf3, 0x37, 0xf3, 0xf9, 0xf7, 0xcd, 0xec, 0x6a, 0x59, 0x6f, 0x96, 0x2d, 0xd0, 0x57, 0x1a, 0x66, + 0x98, 0x2a, 0x5f, 0x67, 0x09, 0x2a, 0x1f, 0x17, 0x28, 0xb5, 0xf2, 0x92, 0x94, 0x34, 0xd9, 0x76, + 0x6e, 0xf0, 0x4a, 0x83, 0x67, 0x0c, 0xdd, 0x7b, 0x13, 0x9a, 0x90, 0x69, 0xfb, 0xf9, 0x57, 0xe1, + 0xec, 0xfe, 0x0d, 0x95, 0x40, 0x0a, 0x71, 0x89, 0xea, 0x7f, 0xb3, 0xd8, 0x9d, 0xbd, 0x9c, 0xfd, + 0x21, 0xe1, 0xa0, 0xf1, 0xd0, 0xf4, 0xec, 0xe7, 0x8c, 0x51, 0xc4, 0x47, 0x85, 0xd3, 0xb1, 0x76, + 0xac, 0xdd, 0xeb, 0x4f, 0xbb, 0xde, 0x9f, 0xa9, 0x5e, 0xe1, 0x1f, 0xb4, 0x8e, 0x4f, 0x7b, 0x8d, + 0xa0, 0x43, 0x11, 0x3f, 0x07, 0x48, 0x5c, 0x56, 0x80, 0xe6, 0xbf, 0x02, 0x24, 0x2e, 0x4b, 0x80, + 0xc3, 0xb6, 0x12, 0xc8, 0x22, 0x02, 0xee, 0x5c, 0xd9, 0xb1, 0x76, 0x3b, 0x41, 0x25, 0xfb, 0x5f, + 0xaa, 0x89, 0x87, 0x29, 0x82, 0xc6, 0xf7, 0x06, 0x67, 0x3f, 0x60, 0xed, 0x02, 0x6c, 0xa6, 0xed, + 0x04, 0xa5, 0xca, 0xeb, 0x10, 0xd3, 0x5c, 0x6a, 0x33, 0x44, 0x2b, 0x28, 0x95, 0x3d, 0x64, 0x2c, + 0xa4, 0x38, 0x16, 0x4a, 0x09, 0x92, 0x45, 0xc4, 0xe0, 0x51, 0x3e, 0xc4, 0xcf, 0xd3, 0xde, 0x76, + 0x48, 0x2a, 0x26, 0xa5, 0xf8, 0xcc, 0x13, 0xe4, 0xc7, 0xa0, 0xa7, 0xde, 0x3e, 0x4e, 0x20, 0xcc, + 0x5e, 0x62, 0x18, 0xd4, 0x7e, 0xeb, 0x7f, 0xb7, 0xd8, 0xdd, 0xda, 0xe1, 0x1d, 0xa0, 0x06, 0x0e, + 0x1a, 0x2e, 0x1c, 0xc6, 0x61, 0x5b, 0x31, 0x49, 0x91, 0x37, 0x9a, 0xc5, 0x52, 0xa5, 0xcc, 0x3b, + 0x4b, 0x1c, 0x2b, 0xa1, 0xb1, 0x5a, 0xb7, 0x94, 0x76, 0x97, 0x5d, 0x13, 0x1c, 0xa5, 0x16, 0x3a, + 0x73, 0x5a, 0xa6, 0x75, 0xa6, 0xed, 0xc7, 0xec, 0xb6, 0xc2, 0x70, 0x9e, 0x0a, 0x9d, 0x8d, 0x42, + 0x92, 0x1a, 0x42, 0xed, 0x5c, 0x35, 0x9e, 0x5b, 0x55, 0x7d, 0x58, 0x94, 0xf3, 0x00, 0x8e, 0x1a, + 0x44, 0xa4, 0x9c, 0x76, 0x11, 0x50, 0xca, 0xbe, 0x66, 0xf7, 0x6b, 0x3b, 0x0c, 0xcf, 0xb6, 0xbb, + 0x70, 0x8b, 0xcd, 0xa3, 0x6b, 0x5e, 0xee, 0xe8, 0x0e, 0xd8, 0x76, 0x71, 0x89, 0x11, 0x88, 0xf8, + 0x3c, 0x34, 0xc0, 0x25, 0xa4, 0x5c, 0xfd, 0xef, 0x75, 0xf6, 0x8f, 0xd8, 0x0d, 0x83, 0x7b, 0x43, + 0x42, 0x1e, 0x12, 0x45, 0xf6, 0x43, 0xb6, 0x95, 0x10, 0x45, 0x23, 0xc1, 0x0d, 0xa1, 0x15, 0xb4, + 0x73, 0xf9, 0x9a, 0xd7, 0xc8, 0xcd, 0x0d, 0xb2, 0xcb, 0xd8, 0x02, 0x22, 0xe0, 0x3c, 0x45, 0xa5, + 0xca, 0x4b, 0xa8, 0x55, 0x6a, 0xc9, 0xad, 0x8d, 0xe4, 0x17, 0xec, 0xa6, 0x49, 0xde, 0x47, 0x58, + 0xe0, 0xa5, 0xa2, 0x07, 0xaf, 0x8e, 0x57, 0xae, 0x75, 0xb2, 0x72, 0xad, 0x5f, 0x2b, 0xd7, 0xfa, + 0xba, 0x76, 0x1b, 0x27, 0x6b, 0xb7, 0xf1, 0x63, 0xed, 0x36, 0x3e, 0x3f, 0x99, 0x08, 0x3d, 0x9d, + 0x8f, 0xbd, 0x90, 0x62, 0xff, 0xed, 0xa7, 0x8f, 0x7b, 0xef, 0x50, 0x2f, 0x29, 0x9d, 0xf9, 0xe1, + 0x14, 0x84, 0xf4, 0x8f, 0x36, 0x1f, 0xf6, 0xb8, 0x6d, 0x9e, 0xf4, 0xb3, 0xdf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0xac, 0x5b, 0x35, 0x0a, 0x40, 0x04, 0x00, 0x00, } func (m *EventUpdateParams) Marshal() (dAtA []byte, err error) { diff --git a/x/stakers/types/genesis.pb.go b/x/stakers/types/genesis.pb.go index 4786bc8f..7429404a 100644 --- a/x/stakers/types/genesis.pb.go +++ b/x/stakers/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/genesis.proto +// source: kyve/stakers/types/genesis.proto package types @@ -45,7 +45,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_0deb2ee89d595051, []int{0} + return fileDescriptor_61acfda3e78dc65a, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,42 +124,39 @@ func (m *GenesisState) GetQueueStateLeave() QueueState { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.stakers.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.stakers.types.GenesisState") } -func init() { - proto.RegisterFile("kyve/stakers/v1beta1/genesis.proto", fileDescriptor_0deb2ee89d595051) -} +func init() { proto.RegisterFile("kyve/stakers/types/genesis.proto", fileDescriptor_61acfda3e78dc65a) } -var fileDescriptor_0deb2ee89d595051 = []byte{ - // 417 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x51, 0x6b, 0xda, 0x50, - 0x14, 0xc7, 0x93, 0xe9, 0x1c, 0x5c, 0xc7, 0xdc, 0x82, 0x6c, 0x99, 0x8c, 0xcc, 0xc9, 0x1e, 0x06, - 0x1b, 0x09, 0x6e, 0x6f, 0x7b, 0x54, 0x6c, 0x1f, 0x2a, 0xad, 0x55, 0x90, 0xb6, 0x14, 0xc2, 0x35, - 0x1c, 0xe2, 0xc5, 0x24, 0x37, 0xe6, 0xde, 0xa4, 0xf5, 0x5b, 0xf4, 0x63, 0xf9, 0xe8, 0x63, 0xa1, - 0x50, 0x8a, 0x7e, 0x91, 0x92, 0x9b, 0xdb, 0xc4, 0x87, 0xf8, 0xd0, 0x37, 0xbd, 0xe7, 0x77, 0x7e, - 0xe7, 0x7f, 0x6e, 0x2e, 0xea, 0x2c, 0x56, 0x09, 0x58, 0x8c, 0xe3, 0x05, 0x44, 0xcc, 0x4a, 0xba, - 0x33, 0xe0, 0xb8, 0x6b, 0xb9, 0x10, 0x00, 0x23, 0xcc, 0x0c, 0x23, 0xca, 0xa9, 0xd6, 0x4c, 0x19, - 0x53, 0x32, 0xa6, 0x64, 0x5a, 0x4d, 0x97, 0xba, 0x54, 0x00, 0x56, 0xfa, 0x2b, 0x63, 0x5b, 0x3f, - 0x4a, 0x7d, 0x21, 0x8e, 0xb0, 0x2f, 0x75, 0xad, 0xf2, 0x91, 0x2f, 0x7a, 0xc1, 0x74, 0x1e, 0xaa, - 0xe8, 0xfd, 0x71, 0x16, 0x62, 0xc2, 0x31, 0x07, 0xed, 0x3f, 0xaa, 0x65, 0x12, 0x5d, 0x6d, 0xab, - 0xbf, 0xea, 0x7f, 0xbf, 0x99, 0x65, 0xa1, 0xcc, 0x91, 0x60, 0x7a, 0xd5, 0xf5, 0xe3, 0x77, 0x65, - 0x2c, 0x3b, 0xb4, 0x3e, 0xaa, 0x67, 0x9c, 0xed, 0x11, 0xc6, 0xf5, 0x37, 0xed, 0xca, 0x61, 0xc1, - 0x44, 0xfc, 0x97, 0x02, 0x94, 0x55, 0x87, 0x84, 0x71, 0xed, 0x0c, 0x35, 0x12, 0xec, 0x61, 0xc7, - 0xa1, 0x71, 0xc0, 0x33, 0x51, 0x45, 0x88, 0xda, 0xe5, 0xa2, 0x69, 0x0e, 0x4b, 0xd9, 0x87, 0xa2, - 0x5d, 0x08, 0x7d, 0xf4, 0xd5, 0xa1, 0xbe, 0x4f, 0x18, 0x23, 0x34, 0xb0, 0x9d, 0x39, 0x0e, 0x5c, - 0xb0, 0x21, 0xe0, 0x11, 0x01, 0xa6, 0x57, 0x85, 0xfa, 0x77, 0xb9, 0xba, 0x9f, 0xb7, 0xf5, 0x45, - 0xd7, 0x20, 0xe0, 0xd1, 0x4a, 0x4e, 0xf9, 0xe2, 0x94, 0x14, 0x09, 0x30, 0xed, 0x1a, 0x7d, 0x5e, - 0xc6, 0x10, 0x83, 0xcd, 0xd2, 0xfb, 0xb4, 0x0b, 0x4c, 0x7f, 0x2b, 0x2e, 0xf4, 0xc0, 0x1a, 0xe7, - 0x69, 0x8f, 0xf8, 0x04, 0x72, 0x40, 0x73, 0x99, 0x9f, 0x14, 0x39, 0xb4, 0x0b, 0xa4, 0x79, 0x80, - 0x13, 0xb0, 0x43, 0x4a, 0xbd, 0x7c, 0x8b, 0x9a, 0xd8, 0xe2, 0x67, 0xb9, 0x79, 0x98, 0xf2, 0x23, - 0x4a, 0xbd, 0xfd, 0xf8, 0x1f, 0xbd, 0xfd, 0xd3, 0x34, 0xf7, 0x18, 0x7d, 0xda, 0xcf, 0x2d, 0xea, - 0xfa, 0xbb, 0x57, 0x45, 0x6e, 0x14, 0x91, 0xc5, 0xd0, 0xde, 0xd1, 0x7a, 0x6b, 0xa8, 0x9b, 0xad, - 0xa1, 0x3e, 0x6d, 0x0d, 0xf5, 0x6e, 0x67, 0x28, 0x9b, 0x9d, 0xa1, 0xdc, 0xef, 0x0c, 0xe5, 0xea, - 0x8f, 0x4b, 0xf8, 0x3c, 0x9e, 0x99, 0x0e, 0xf5, 0xad, 0x93, 0xcb, 0xe9, 0xe0, 0x14, 0xf8, 0x0d, - 0x8d, 0x16, 0x96, 0x33, 0xc7, 0x24, 0xb0, 0x6e, 0xf3, 0x57, 0xcb, 0x57, 0x21, 0xb0, 0x59, 0x4d, - 0x3c, 0xd6, 0x7f, 0xcf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x65, 0x34, 0xdb, 0xba, 0x45, 0x03, 0x00, - 0x00, +var fileDescriptor_61acfda3e78dc65a = []byte{ + // 404 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x4b, 0xc3, 0x30, + 0x18, 0x87, 0x5b, 0x37, 0x27, 0x64, 0xe2, 0x34, 0x0c, 0xad, 0x3d, 0x74, 0x63, 0x27, 0x05, 0x69, + 0x41, 0x2f, 0x5e, 0xdd, 0x98, 0x1e, 0x9c, 0x32, 0x1d, 0x0c, 0xdc, 0xa5, 0x64, 0x25, 0x74, 0xa1, + 0x7f, 0xd2, 0x35, 0xe9, 0x74, 0xdf, 0xc2, 0x8f, 0xb5, 0x8b, 0xb0, 0xa3, 0x27, 0x91, 0xed, 0x8b, + 0x48, 0xd3, 0xda, 0x4e, 0xac, 0x07, 0x6f, 0x6d, 0xde, 0xe7, 0x7d, 0xde, 0x5f, 0x5e, 0x02, 0x9a, + 0xce, 0x7c, 0x86, 0x0d, 0xc6, 0x91, 0x83, 0x43, 0x66, 0xf0, 0x79, 0x80, 0x99, 0x61, 0x63, 0x1f, + 0x33, 0xc2, 0xf4, 0x20, 0xa4, 0x9c, 0x42, 0x18, 0x13, 0x7a, 0x4a, 0xe8, 0x82, 0x50, 0xeb, 0x36, + 0xb5, 0xa9, 0x28, 0x1b, 0xf1, 0x57, 0x42, 0xaa, 0x8d, 0x02, 0x57, 0x80, 0x42, 0xe4, 0xa5, 0x2a, + 0xb5, 0x68, 0xd8, 0xb7, 0x58, 0x10, 0xad, 0xb7, 0x32, 0xd8, 0xbd, 0x49, 0xc6, 0x0f, 0x38, 0xe2, + 0x18, 0x5e, 0x82, 0x4a, 0xa2, 0x50, 0xe4, 0xa6, 0x7c, 0x52, 0x3d, 0x57, 0xf5, 0xdf, 0x71, 0xf4, + 0xbe, 0x20, 0xda, 0xe5, 0xc5, 0x47, 0x43, 0x7a, 0x4c, 0x79, 0x78, 0x05, 0xaa, 0x09, 0x65, 0xba, + 0x84, 0x71, 0x65, 0xab, 0x59, 0xfa, 0xab, 0x7d, 0x20, 0xfe, 0xd2, 0x76, 0x90, 0xd4, 0x7a, 0x84, + 0x71, 0x78, 0x07, 0x6a, 0x33, 0xe4, 0x22, 0xcb, 0xa2, 0x91, 0xcf, 0x13, 0x4d, 0x49, 0x68, 0xb4, + 0x22, 0xcd, 0x30, 0x43, 0x53, 0xd5, 0x5e, 0xde, 0x2c, 0x74, 0x0e, 0x38, 0xb6, 0xa8, 0xe7, 0x11, + 0xc6, 0x08, 0xf5, 0x4d, 0x6b, 0x82, 0x7c, 0x1b, 0x9b, 0xd8, 0xe7, 0x21, 0xc1, 0x4c, 0x29, 0x0b, + 0xf1, 0x69, 0x91, 0xb8, 0x93, 0x35, 0x75, 0x44, 0x4f, 0xd7, 0xe7, 0xe1, 0x3c, 0x9d, 0x71, 0x64, + 0x15, 0x14, 0x09, 0x66, 0x70, 0x04, 0x0e, 0xa7, 0x11, 0x8e, 0xb0, 0xc9, 0xe2, 0x3d, 0x9a, 0x39, + 0xa6, 0x6c, 0x8b, 0x45, 0x16, 0x5e, 0xe1, 0x21, 0xee, 0x10, 0x8b, 0x4f, 0xf5, 0xf5, 0x69, 0x76, + 0x92, 0xa7, 0x80, 0x43, 0x00, 0x5d, 0x8c, 0x66, 0xd8, 0x0c, 0x28, 0x75, 0xb3, 0x1b, 0x54, 0xc4, + 0x0d, 0x5a, 0x45, 0xde, 0x5e, 0x4c, 0xf7, 0x29, 0x75, 0x37, 0xa3, 0xef, 0xbb, 0x9b, 0xa7, 0x71, + 0xe6, 0x3e, 0x38, 0xd8, 0xcc, 0x2c, 0xea, 0xca, 0xce, 0x3f, 0xe2, 0xd6, 0xf2, 0xb8, 0x62, 0x64, + 0xfb, 0x7a, 0xb1, 0xd2, 0xe4, 0xe5, 0x4a, 0x93, 0x3f, 0x57, 0x9a, 0xfc, 0xba, 0xd6, 0xa4, 0xe5, + 0x5a, 0x93, 0xde, 0xd7, 0x9a, 0x34, 0x3a, 0xb3, 0x09, 0x9f, 0x44, 0x63, 0xdd, 0xa2, 0x9e, 0x71, + 0xfb, 0x34, 0xec, 0xde, 0x63, 0xfe, 0x4c, 0x43, 0xc7, 0xb0, 0x26, 0x88, 0xf8, 0xc6, 0xcb, 0xcf, + 0x57, 0x3a, 0xae, 0x88, 0xe7, 0x79, 0xf1, 0x15, 0x00, 0x00, 0xff, 0xff, 0xc2, 0xdf, 0xdf, 0x6a, + 0x2f, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/stakers/types/params.pb.go b/x/stakers/types/params.pb.go index 44ba4821..9c68cae8 100644 --- a/x/stakers/types/params.pb.go +++ b/x/stakers/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/params.proto +// source: kyve/stakers/types/params.proto package types @@ -34,7 +34,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_405cabd7005fc18b, []int{0} + return fileDescriptor_5f19846c8bbc01c5, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,27 +78,27 @@ func (m *Params) GetLeavePoolTime() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "kyve.stakers.v1beta1.Params") + proto.RegisterType((*Params)(nil), "kyve.stakers.types.Params") } -func init() { proto.RegisterFile("kyve/stakers/v1beta1/params.proto", fileDescriptor_405cabd7005fc18b) } +func init() { proto.RegisterFile("kyve/stakers/types/params.proto", fileDescriptor_5f19846c8bbc01c5) } -var fileDescriptor_405cabd7005fc18b = []byte{ - // 219 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0xae, 0x2c, 0x4b, - 0xd5, 0x2f, 0x2e, 0x49, 0xcc, 0x4e, 0x2d, 0x2a, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, - 0x29, 0xd1, 0x83, 0x2a, 0xd1, 0x83, 0x2a, 0x51, 0x4a, 0xe3, 0x62, 0x0b, 0x00, 0xab, 0x12, 0x32, - 0xe1, 0x12, 0x4b, 0xce, 0xcf, 0xcd, 0xcd, 0x2c, 0x2e, 0xce, 0xcc, 0xcf, 0x8b, 0x4f, 0xce, 0x48, - 0xcc, 0x4b, 0x4f, 0x8d, 0x2f, 0xc9, 0xcc, 0x4d, 0x95, 0x60, 0x54, 0x60, 0xd4, 0x60, 0x09, 0x12, - 0x41, 0xc8, 0x3a, 0x83, 0x25, 0x43, 0x32, 0x73, 0x53, 0x85, 0xd4, 0xb8, 0xf8, 0x73, 0x52, 0x13, - 0xcb, 0x52, 0xe3, 0x0b, 0xf2, 0xf3, 0x73, 0x20, 0xca, 0x99, 0xc0, 0xca, 0x79, 0xc1, 0xc2, 0x01, - 0xf9, 0xf9, 0x39, 0x20, 0x75, 0x4e, 0x6e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, - 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, - 0x10, 0xa5, 0x93, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0xef, 0x1d, 0x19, - 0xe6, 0xea, 0x97, 0x5a, 0x52, 0x9e, 0x5f, 0x94, 0xad, 0x9f, 0x9c, 0x91, 0x98, 0x99, 0xa7, 0x5f, - 0x01, 0xf7, 0x54, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x33, 0xc6, 0x80, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x44, 0x61, 0x13, 0x9a, 0xf1, 0x00, 0x00, 0x00, +var fileDescriptor_5f19846c8bbc01c5 = []byte{ + // 212 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0x2e, 0x49, 0xcc, 0x4e, 0x2d, 0x2a, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, + 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0x29, 0xd0, + 0x83, 0x2a, 0xd0, 0x03, 0x2b, 0x50, 0x4a, 0xe3, 0x62, 0x0b, 0x00, 0xab, 0x11, 0x32, 0xe1, 0x12, + 0x4b, 0xce, 0xcf, 0xcd, 0xcd, 0x2c, 0x2e, 0xce, 0xcc, 0xcf, 0x8b, 0x4f, 0xce, 0x48, 0xcc, 0x4b, + 0x4f, 0x8d, 0x2f, 0xc9, 0xcc, 0x4d, 0x95, 0x60, 0x54, 0x60, 0xd4, 0x60, 0x09, 0x12, 0x41, 0xc8, + 0x3a, 0x83, 0x25, 0x43, 0x32, 0x73, 0x53, 0x85, 0xd4, 0xb8, 0xf8, 0x73, 0x52, 0x13, 0xcb, 0x52, + 0xe3, 0x0b, 0xf2, 0xf3, 0x73, 0x20, 0xca, 0x99, 0xc0, 0xca, 0x79, 0xc1, 0xc2, 0x01, 0xf9, 0xf9, + 0x39, 0x20, 0x75, 0x4e, 0x6e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, + 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, + 0x93, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0xef, 0x1d, 0x19, 0xe6, 0xea, + 0x97, 0x5a, 0x52, 0x9e, 0x5f, 0x94, 0xad, 0x9f, 0x9c, 0x91, 0x98, 0x99, 0xa7, 0x5f, 0x81, 0xea, + 0xa1, 0x24, 0x36, 0xb0, 0x57, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1f, 0xad, 0x42, 0xbd, + 0xed, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/stakers/types/query.pb.go b/x/stakers/types/query.pb.go index 68540d38..08ab19c8 100644 --- a/x/stakers/types/query.pb.go +++ b/x/stakers/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/query.proto +// source: kyve/stakers/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6c1bf6f190db35c0, []int{0} + return fileDescriptor_5ada148064d91756, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6c1bf6f190db35c0, []int{1} + return fileDescriptor_5ada148064d91756, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,33 +113,33 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "kyve.stakers.v1beta1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "kyve.stakers.v1beta1.QueryParamsResponse") -} - -func init() { proto.RegisterFile("kyve/stakers/v1beta1/query.proto", fileDescriptor_6c1bf6f190db35c0) } - -var fileDescriptor_6c1bf6f190db35c0 = []byte{ - // 289 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xae, 0x2c, 0x4b, - 0xd5, 0x2f, 0x2e, 0x49, 0xcc, 0x4e, 0x2d, 0x2a, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, - 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x01, 0xa9, - 0xd0, 0x83, 0xaa, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd0, 0x07, - 0xb1, 0x20, 0x6a, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, 0xf5, - 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, 0x8a, 0x58, 0xed, - 0x2a, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x2a, 0x51, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0xd9, 0x1d, 0x00, - 0x16, 0x0c, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0x0a, 0xe4, 0x12, 0x46, 0x11, 0x2d, 0x2e, - 0xc8, 0xcf, 0x2b, 0x4e, 0x15, 0xb2, 0xe2, 0x62, 0x83, 0x68, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, - 0x36, 0x92, 0xd1, 0xc3, 0xe6, 0x54, 0x3d, 0x88, 0x2e, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, - 0xa0, 0x3a, 0x8c, 0x7a, 0x19, 0xb9, 0x58, 0xc1, 0x66, 0x0a, 0x35, 0x33, 0x72, 0xb1, 0x41, 0x94, - 0x08, 0x69, 0x60, 0x37, 0x00, 0xd3, 0x45, 0x52, 0x9a, 0x44, 0xa8, 0x84, 0xb8, 0x52, 0x49, 0xa5, - 0xe9, 0xf2, 0x93, 0xc9, 0x4c, 0x72, 0x42, 0x32, 0xfa, 0x78, 0xbc, 0xef, 0xe4, 0x76, 0xe2, 0x91, - 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, - 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x3a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, - 0xc9, 0xf9, 0xb9, 0xfa, 0xde, 0x91, 0x61, 0xae, 0x7e, 0xa9, 0x25, 0xe5, 0xf9, 0x45, 0xd9, 0xfa, - 0xc9, 0x19, 0x89, 0x99, 0x79, 0xfa, 0x15, 0x70, 0x03, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0xe1, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x95, 0x3e, 0x8d, 0x82, 0xd8, 0x01, 0x00, - 0x00, + proto.RegisterType((*QueryParamsRequest)(nil), "kyve.stakers.types.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "kyve.stakers.types.QueryParamsResponse") +} + +func init() { proto.RegisterFile("kyve/stakers/types/query.proto", fileDescriptor_5ada148064d91756) } + +var fileDescriptor_5ada148064d91756 = []byte{ + // 290 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0x2e, 0x49, 0xcc, 0x4e, 0x2d, 0x2a, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x2f, + 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x02, 0xc9, 0xeb, 0x41, + 0xe5, 0xf5, 0xc0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x69, 0x7d, 0x10, 0x0b, 0xa2, + 0x52, 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, + 0x2f, 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0xaf, 0x18, 0x2a, 0x2b, 0x8f, 0xc5, 0x9e, 0x82, 0xc4, + 0xa2, 0xc4, 0x5c, 0xa8, 0x02, 0x25, 0x11, 0x2e, 0xa1, 0x40, 0x90, 0xbd, 0x01, 0x60, 0xc1, 0xa0, + 0xd4, 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x25, 0x7f, 0x2e, 0x61, 0x14, 0xd1, 0xe2, 0x82, 0xfc, 0xbc, + 0xe2, 0x54, 0x21, 0x0b, 0x2e, 0x36, 0x88, 0x66, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x29, + 0x3d, 0x4c, 0x67, 0xea, 0x41, 0xf4, 0x38, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0x55, 0x6f, + 0xd4, 0xc1, 0xc8, 0xc5, 0x0a, 0x36, 0x51, 0xa8, 0x9e, 0x8b, 0x0d, 0xa2, 0x42, 0x48, 0x0d, 0x9b, + 0x6e, 0x4c, 0xc7, 0x48, 0xa9, 0x13, 0x54, 0x07, 0x71, 0x9e, 0x92, 0x4a, 0xd3, 0xe5, 0x27, 0x93, + 0x99, 0xe4, 0x84, 0x64, 0xf4, 0x51, 0x7c, 0x5d, 0x66, 0x98, 0x94, 0x5a, 0x92, 0x68, 0x08, 0xf5, + 0xb7, 0x93, 0xdb, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, + 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa4, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x7b, 0x47, 0x86, 0xb9, 0xfa, 0xa5, 0x96, + 0x94, 0xe7, 0x17, 0x65, 0xeb, 0x27, 0x67, 0x24, 0x66, 0xe6, 0xe9, 0x57, 0xa0, 0x06, 0x63, 0x12, + 0x1b, 0x38, 0x00, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x45, 0xb3, 0x79, 0xcb, 0x01, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -168,7 +168,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -203,7 +203,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Query/Params", + FullMethod: "/kyve.stakers.types.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -212,7 +212,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.stakers.v1beta1.Query", + ServiceName: "kyve.stakers.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,7 +221,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/stakers/v1beta1/query.proto", + Metadata: "kyve/stakers/types/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/stakers/types/query.pb.gw.go b/x/stakers/types/query.pb.gw.go index d727b58a..4e76133b 100644 --- a/x/stakers/types/query.pb.gw.go +++ b/x/stakers/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/stakers/v1beta1/query.proto +// source: kyve/stakers/types/query.proto /* Package types is a reverse proxy. diff --git a/x/stakers/types/stakers.pb.go b/x/stakers/types/stakers.pb.go index 2e4517ba..92370613 100644 --- a/x/stakers/types/stakers.pb.go +++ b/x/stakers/types/stakers.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/stakers.proto +// source: kyve/stakers/types/stakers.proto package types @@ -49,7 +49,7 @@ func (m *Staker) Reset() { *m = Staker{} } func (m *Staker) String() string { return proto.CompactTextString(m) } func (*Staker) ProtoMessage() {} func (*Staker) Descriptor() ([]byte, []int) { - return fileDescriptor_d209d1a2a74d375d, []int{0} + return fileDescriptor_285ae41634f207fd, []int{0} } func (m *Staker) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -150,7 +150,7 @@ func (m *Valaccount) Reset() { *m = Valaccount{} } func (m *Valaccount) String() string { return proto.CompactTextString(m) } func (*Valaccount) ProtoMessage() {} func (*Valaccount) Descriptor() ([]byte, []int) { - return fileDescriptor_d209d1a2a74d375d, []int{1} + return fileDescriptor_285ae41634f207fd, []int{1} } func (m *Valaccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,7 +236,7 @@ func (m *CommissionChangeEntry) Reset() { *m = CommissionChangeEntry{} } func (m *CommissionChangeEntry) String() string { return proto.CompactTextString(m) } func (*CommissionChangeEntry) ProtoMessage() {} func (*CommissionChangeEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_d209d1a2a74d375d, []int{2} + return fileDescriptor_285ae41634f207fd, []int{2} } func (m *CommissionChangeEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -308,7 +308,7 @@ func (m *LeavePoolEntry) Reset() { *m = LeavePoolEntry{} } func (m *LeavePoolEntry) String() string { return proto.CompactTextString(m) } func (*LeavePoolEntry) ProtoMessage() {} func (*LeavePoolEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_d209d1a2a74d375d, []int{3} + return fileDescriptor_285ae41634f207fd, []int{3} } func (m *LeavePoolEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -380,7 +380,7 @@ func (m *QueueState) Reset() { *m = QueueState{} } func (m *QueueState) String() string { return proto.CompactTextString(m) } func (*QueueState) ProtoMessage() {} func (*QueueState) Descriptor() ([]byte, []int) { - return fileDescriptor_d209d1a2a74d375d, []int{4} + return fileDescriptor_285ae41634f207fd, []int{4} } func (m *QueueState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -424,53 +424,51 @@ func (m *QueueState) GetHighIndex() uint64 { } func init() { - proto.RegisterType((*Staker)(nil), "kyve.stakers.v1beta1.Staker") - proto.RegisterType((*Valaccount)(nil), "kyve.stakers.v1beta1.Valaccount") - proto.RegisterType((*CommissionChangeEntry)(nil), "kyve.stakers.v1beta1.CommissionChangeEntry") - proto.RegisterType((*LeavePoolEntry)(nil), "kyve.stakers.v1beta1.LeavePoolEntry") - proto.RegisterType((*QueueState)(nil), "kyve.stakers.v1beta1.QueueState") + proto.RegisterType((*Staker)(nil), "kyve.stakers.types.Staker") + proto.RegisterType((*Valaccount)(nil), "kyve.stakers.types.Valaccount") + proto.RegisterType((*CommissionChangeEntry)(nil), "kyve.stakers.types.CommissionChangeEntry") + proto.RegisterType((*LeavePoolEntry)(nil), "kyve.stakers.types.LeavePoolEntry") + proto.RegisterType((*QueueState)(nil), "kyve.stakers.types.QueueState") } -func init() { - proto.RegisterFile("kyve/stakers/v1beta1/stakers.proto", fileDescriptor_d209d1a2a74d375d) -} +func init() { proto.RegisterFile("kyve/stakers/types/stakers.proto", fileDescriptor_285ae41634f207fd) } -var fileDescriptor_d209d1a2a74d375d = []byte{ - // 536 bytes of a gzipped FileDescriptorProto +var fileDescriptor_285ae41634f207fd = []byte{ + // 530 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xcb, 0x6a, 0xdb, 0x40, - 0x14, 0xb5, 0x62, 0xc7, 0x8f, 0x4b, 0x9f, 0x83, 0xdb, 0x8a, 0x84, 0x28, 0xc1, 0xd9, 0xa4, 0xd0, - 0x5a, 0x84, 0xfe, 0x41, 0x9c, 0x94, 0x86, 0x86, 0xd2, 0x2a, 0x10, 0x68, 0x37, 0x66, 0x3c, 0xba, + 0x14, 0xb5, 0x6c, 0xc7, 0x8f, 0x4b, 0x9f, 0x43, 0xda, 0x8a, 0x84, 0x28, 0xc6, 0xd9, 0xa4, 0xd0, + 0x5a, 0x8b, 0xfe, 0x41, 0x9c, 0x94, 0x86, 0x86, 0xd2, 0x2a, 0x10, 0x68, 0x37, 0x66, 0x3c, 0xba, 0x48, 0x83, 0x25, 0x8d, 0xd1, 0x8c, 0xed, 0x08, 0xfa, 0x11, 0x5d, 0xf4, 0x2f, 0xba, 0xe8, 0x6f, - 0x64, 0x99, 0x65, 0xe9, 0x22, 0x14, 0xfb, 0x47, 0xca, 0xcc, 0x48, 0x8e, 0xb3, 0x28, 0x94, 0xec, - 0x74, 0x1e, 0xba, 0xf7, 0x70, 0x2e, 0x03, 0xbd, 0x71, 0x31, 0x43, 0x5f, 0x2a, 0x3a, 0xc6, 0x5c, - 0xfa, 0xb3, 0xc3, 0x11, 0x2a, 0x7a, 0x58, 0xe1, 0xfe, 0x24, 0x17, 0x4a, 0x90, 0xae, 0xf6, 0xf4, - 0x2b, 0xae, 0xf4, 0x6c, 0x75, 0x23, 0x11, 0x09, 0x63, 0xf0, 0xf5, 0x97, 0xf5, 0xf6, 0x7e, 0x6c, - 0x40, 0xf3, 0xdc, 0x38, 0x89, 0x0b, 0x2d, 0x1a, 0x86, 0x39, 0x4a, 0xe9, 0x3a, 0x7b, 0xce, 0x41, - 0x27, 0xa8, 0x20, 0x19, 0x00, 0x30, 0x91, 0xa6, 0x5c, 0x4a, 0x2e, 0x32, 0x77, 0x43, 0x8b, 0x47, - 0xfb, 0x57, 0x37, 0xbb, 0xb5, 0xdf, 0x37, 0xbb, 0xdb, 0x4c, 0xc8, 0x54, 0x48, 0x19, 0x8e, 0xfb, - 0x5c, 0xf8, 0x29, 0x55, 0x71, 0xff, 0x0c, 0x23, 0xca, 0x8a, 0x63, 0x64, 0xc1, 0xda, 0x6f, 0x7a, - 0x7c, 0x2a, 0x32, 0x3e, 0xc6, 0xdc, 0xad, 0xdb, 0xf1, 0x25, 0xd4, 0xca, 0x1c, 0x47, 0x92, 0x2b, - 0x74, 0x1b, 0x56, 0x29, 0x21, 0xd9, 0x82, 0x36, 0x0f, 0x31, 0x53, 0x5c, 0x15, 0xee, 0xa6, 0x91, - 0x56, 0x98, 0xbc, 0x84, 0x27, 0x12, 0xd9, 0x34, 0xe7, 0xaa, 0x18, 0x32, 0x91, 0x29, 0xca, 0x94, - 0xdb, 0x34, 0x9e, 0xc7, 0x15, 0x3f, 0xb0, 0xb4, 0x5e, 0x10, 0xa2, 0xa2, 0x3c, 0x91, 0x6e, 0xcb, - 0x2e, 0x28, 0x21, 0x79, 0x0d, 0xe4, 0x36, 0xe2, 0x30, 0xc7, 0x39, 0xcd, 0x43, 0xe9, 0xb6, 0xf7, - 0x9c, 0x83, 0x46, 0xf0, 0xf4, 0x56, 0x09, 0xac, 0xd0, 0xfb, 0xee, 0x00, 0x5c, 0xd0, 0x84, 0x32, - 0x26, 0xa6, 0x99, 0x22, 0x2f, 0xa0, 0x35, 0x11, 0x22, 0x19, 0xf2, 0xd0, 0x34, 0xd6, 0x08, 0x9a, - 0x1a, 0x9e, 0x86, 0xe4, 0x39, 0x34, 0x6d, 0xfd, 0xb6, 0xac, 0xa0, 0x44, 0xc4, 0x03, 0x98, 0xd1, - 0xa4, 0x6a, 0xd9, 0xd6, 0xb0, 0xc6, 0xe8, 0xff, 0x26, 0x82, 0x67, 0x4a, 0x9a, 0x22, 0xcc, 0x3c, - 0x8d, 0xc8, 0x0e, 0x00, 0x97, 0xc3, 0x04, 0xe9, 0x8c, 0x67, 0x91, 0x69, 0xa2, 0x1d, 0x74, 0xb8, - 0x3c, 0xb3, 0x44, 0xef, 0xa7, 0x03, 0xcf, 0x06, 0xab, 0xb0, 0x83, 0x98, 0x66, 0x11, 0x9e, 0x64, - 0x2a, 0x2f, 0x48, 0x17, 0x36, 0x79, 0x16, 0xe2, 0x65, 0x99, 0xcf, 0x82, 0x7f, 0xc6, 0xbb, 0x7b, - 0xe7, 0xfa, 0xfd, 0xee, 0xbc, 0x0f, 0x0f, 0x59, 0x8e, 0x54, 0xe9, 0x42, 0x43, 0x5a, 0xde, 0xb4, - 0x1e, 0x3c, 0xa8, 0xc8, 0x63, 0xaa, 0xb0, 0xf7, 0x15, 0x1e, 0xe9, 0xf0, 0xf8, 0x51, 0x88, 0xe4, - 0x3e, 0x49, 0xd7, 0x9a, 0xaf, 0xdf, 0x69, 0xfe, 0xbf, 0xb6, 0xbf, 0x03, 0xf8, 0x34, 0xc5, 0x29, - 0x9e, 0x2b, 0xaa, 0x90, 0x6c, 0x43, 0x27, 0x11, 0xf3, 0xe1, 0xfa, 0xf6, 0x76, 0x22, 0xe6, 0xa7, - 0x26, 0xc0, 0x0e, 0x40, 0xcc, 0xa3, 0xb8, 0x54, 0x37, 0x8c, 0xda, 0xd1, 0x8c, 0x91, 0x8f, 0xde, - 0x5e, 0x2d, 0x3c, 0xe7, 0x7a, 0xe1, 0x39, 0x7f, 0x16, 0x9e, 0xf3, 0x6d, 0xe9, 0xd5, 0xae, 0x97, - 0x5e, 0xed, 0xd7, 0xd2, 0xab, 0x7d, 0x79, 0x15, 0x71, 0x15, 0x4f, 0x47, 0x7d, 0x26, 0x52, 0xff, - 0xfd, 0xe7, 0x8b, 0x93, 0x0f, 0xa8, 0xe6, 0x22, 0x1f, 0xfb, 0x2c, 0xa6, 0x3c, 0xf3, 0x2f, 0x57, - 0x4f, 0x58, 0x15, 0x13, 0x94, 0xa3, 0xa6, 0x79, 0x8d, 0x6f, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, - 0xcb, 0x5e, 0xbc, 0x8d, 0xdf, 0x03, 0x00, 0x00, + 0x64, 0x99, 0x65, 0xe9, 0x22, 0x14, 0xfb, 0x47, 0xca, 0xcc, 0x48, 0x89, 0xbd, 0x28, 0x94, 0xec, + 0x74, 0x1e, 0xba, 0xf7, 0x70, 0x2e, 0x03, 0xbd, 0x49, 0x31, 0x47, 0x5f, 0x2a, 0x3a, 0xc1, 0x5c, + 0xfa, 0xaa, 0x98, 0xa2, 0xac, 0xd0, 0x60, 0x9a, 0x0b, 0x25, 0x08, 0xd1, 0x8e, 0x41, 0xc5, 0x19, + 0xc7, 0xce, 0x76, 0x24, 0x22, 0x61, 0x64, 0x5f, 0x7f, 0x59, 0x67, 0xff, 0x47, 0x1d, 0x5a, 0xe7, + 0xc6, 0x47, 0x5c, 0x68, 0xd3, 0x30, 0xcc, 0x51, 0x4a, 0xd7, 0xe9, 0x39, 0x87, 0xdd, 0xa0, 0x82, + 0x64, 0x08, 0xc0, 0x44, 0x9a, 0x72, 0x29, 0xb9, 0xc8, 0xdc, 0xba, 0x16, 0x8f, 0x0e, 0xae, 0x6e, + 0xf6, 0x6b, 0xbf, 0x6f, 0xf6, 0x77, 0x99, 0x90, 0xa9, 0x90, 0x32, 0x9c, 0x0c, 0xb8, 0xf0, 0x53, + 0xaa, 0xe2, 0xc1, 0x19, 0x46, 0x94, 0x15, 0xc7, 0xc8, 0x82, 0xb5, 0xdf, 0xf4, 0xf8, 0x54, 0x64, + 0x7c, 0x82, 0xb9, 0xdb, 0xb0, 0xe3, 0x4b, 0xa8, 0x95, 0x05, 0x8e, 0x25, 0x57, 0xe8, 0x36, 0xad, + 0x52, 0x42, 0xb2, 0x03, 0x1d, 0x1e, 0x62, 0xa6, 0xb8, 0x2a, 0xdc, 0x2d, 0x23, 0xdd, 0x62, 0xf2, + 0x12, 0x9e, 0x48, 0x64, 0xb3, 0x9c, 0xab, 0x62, 0xc4, 0x44, 0xa6, 0x28, 0x53, 0x6e, 0xcb, 0x78, + 0x1e, 0x57, 0xfc, 0xd0, 0xd2, 0x7a, 0x41, 0x88, 0x8a, 0xf2, 0x44, 0xba, 0x6d, 0xbb, 0xa0, 0x84, + 0xe4, 0x35, 0x90, 0xbb, 0x88, 0xa3, 0x1c, 0x17, 0x34, 0x0f, 0xa5, 0xdb, 0xe9, 0x39, 0x87, 0xcd, + 0xe0, 0xe9, 0x9d, 0x12, 0x58, 0xa1, 0xff, 0xdd, 0x01, 0xb8, 0xa0, 0x09, 0x65, 0x4c, 0xcc, 0x32, + 0x45, 0x5e, 0x40, 0x7b, 0x2a, 0x44, 0x32, 0xe2, 0xa1, 0x69, 0xac, 0x19, 0xb4, 0x34, 0x3c, 0x0d, + 0xc9, 0x73, 0x68, 0xd9, 0xf2, 0x6d, 0x59, 0x41, 0x89, 0x88, 0x07, 0x30, 0xa7, 0x49, 0xd5, 0xb2, + 0xad, 0x61, 0x8d, 0xd1, 0xff, 0x4d, 0x05, 0xcf, 0x94, 0x34, 0x45, 0x98, 0x79, 0x1a, 0x91, 0x3d, + 0x00, 0x2e, 0x47, 0x09, 0xd2, 0x39, 0xcf, 0x22, 0xd3, 0x44, 0x27, 0xe8, 0x72, 0x79, 0x66, 0x89, + 0xfe, 0x4f, 0x07, 0x9e, 0x0d, 0x6f, 0xc3, 0x0e, 0x63, 0x9a, 0x45, 0x78, 0x92, 0xa9, 0xbc, 0x20, + 0xdb, 0xb0, 0xc5, 0xb3, 0x10, 0x2f, 0xcb, 0x7c, 0x16, 0xfc, 0x33, 0xde, 0xe6, 0x9d, 0x1b, 0xf7, + 0xbb, 0xf3, 0x01, 0x3c, 0x64, 0x39, 0x52, 0xa5, 0x0b, 0x0d, 0x69, 0x79, 0xd3, 0x46, 0xf0, 0xa0, + 0x22, 0x8f, 0xa9, 0xc2, 0xfe, 0x57, 0x78, 0xa4, 0xc3, 0xe3, 0x47, 0x21, 0x92, 0xfb, 0x24, 0x5d, + 0x6b, 0xbe, 0xb1, 0xd1, 0xfc, 0x7f, 0x6d, 0x7f, 0x07, 0xf0, 0x69, 0x86, 0x33, 0x3c, 0x57, 0x54, + 0x21, 0xd9, 0x85, 0x6e, 0x22, 0x16, 0xa3, 0xf5, 0xed, 0x9d, 0x44, 0x2c, 0x4e, 0x4d, 0x80, 0x3d, + 0x80, 0x98, 0x47, 0x71, 0xa9, 0xd6, 0x8d, 0xda, 0xd5, 0x8c, 0x91, 0x8f, 0xde, 0x5e, 0x2d, 0x3d, + 0xe7, 0x7a, 0xe9, 0x39, 0x7f, 0x96, 0x9e, 0xf3, 0x6d, 0xe5, 0xd5, 0xae, 0x57, 0x5e, 0xed, 0xd7, + 0xca, 0xab, 0x7d, 0x79, 0x15, 0x71, 0x15, 0xcf, 0xc6, 0x03, 0x26, 0x52, 0xff, 0xfd, 0xe7, 0x8b, + 0x93, 0x0f, 0xa8, 0x16, 0x22, 0x9f, 0xf8, 0x2c, 0xa6, 0x3c, 0xf3, 0x2f, 0x37, 0x9f, 0xef, 0xb8, + 0x65, 0x5e, 0xe3, 0x9b, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x13, 0x82, 0x70, 0x5a, 0xdb, 0x03, + 0x00, 0x00, } func (m *Staker) Marshal() (dAtA []byte, err error) { diff --git a/x/stakers/types/tx.pb.go b/x/stakers/types/tx.pb.go index 380affa5..c1c489a8 100644 --- a/x/stakers/types/tx.pb.go +++ b/x/stakers/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/stakers/v1beta1/tx.proto +// source: kyve/stakers/types/tx.proto package types @@ -46,7 +46,7 @@ func (m *MsgCreateStaker) Reset() { *m = MsgCreateStaker{} } func (m *MsgCreateStaker) String() string { return proto.CompactTextString(m) } func (*MsgCreateStaker) ProtoMessage() {} func (*MsgCreateStaker) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{0} + return fileDescriptor_f8f32b4c253e93d8, []int{0} } func (m *MsgCreateStaker) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -97,7 +97,7 @@ func (m *MsgCreateStakerResponse) Reset() { *m = MsgCreateStakerResponse func (m *MsgCreateStakerResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateStakerResponse) ProtoMessage() {} func (*MsgCreateStakerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{1} + return fileDescriptor_f8f32b4c253e93d8, []int{1} } func (m *MsgCreateStakerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -146,7 +146,7 @@ func (m *MsgUpdateMetadata) Reset() { *m = MsgUpdateMetadata{} } func (m *MsgUpdateMetadata) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMetadata) ProtoMessage() {} func (*MsgUpdateMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{2} + return fileDescriptor_f8f32b4c253e93d8, []int{2} } func (m *MsgUpdateMetadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,7 +225,7 @@ func (m *MsgUpdateMetadataResponse) Reset() { *m = MsgUpdateMetadataResp func (m *MsgUpdateMetadataResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateMetadataResponse) ProtoMessage() {} func (*MsgUpdateMetadataResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{3} + return fileDescriptor_f8f32b4c253e93d8, []int{3} } func (m *MsgUpdateMetadataResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -266,7 +266,7 @@ func (m *MsgUpdateCommission) Reset() { *m = MsgUpdateCommission{} } func (m *MsgUpdateCommission) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCommission) ProtoMessage() {} func (*MsgUpdateCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{4} + return fileDescriptor_f8f32b4c253e93d8, []int{4} } func (m *MsgUpdateCommission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -310,7 +310,7 @@ func (m *MsgUpdateCommissionResponse) Reset() { *m = MsgUpdateCommission func (m *MsgUpdateCommissionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCommissionResponse) ProtoMessage() {} func (*MsgUpdateCommissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{5} + return fileDescriptor_f8f32b4c253e93d8, []int{5} } func (m *MsgUpdateCommissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -351,7 +351,7 @@ func (m *MsgClaimCommissionRewards) Reset() { *m = MsgClaimCommissionRew func (m *MsgClaimCommissionRewards) String() string { return proto.CompactTextString(m) } func (*MsgClaimCommissionRewards) ProtoMessage() {} func (*MsgClaimCommissionRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{6} + return fileDescriptor_f8f32b4c253e93d8, []int{6} } func (m *MsgClaimCommissionRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -402,7 +402,7 @@ func (m *MsgClaimCommissionRewardsResponse) Reset() { *m = MsgClaimCommi func (m *MsgClaimCommissionRewardsResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimCommissionRewardsResponse) ProtoMessage() {} func (*MsgClaimCommissionRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{7} + return fileDescriptor_f8f32b4c253e93d8, []int{7} } func (m *MsgClaimCommissionRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -447,7 +447,7 @@ func (m *MsgJoinPool) Reset() { *m = MsgJoinPool{} } func (m *MsgJoinPool) String() string { return proto.CompactTextString(m) } func (*MsgJoinPool) ProtoMessage() {} func (*MsgJoinPool) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{8} + return fileDescriptor_f8f32b4c253e93d8, []int{8} } func (m *MsgJoinPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -512,7 +512,7 @@ func (m *MsgJoinPoolResponse) Reset() { *m = MsgJoinPoolResponse{} } func (m *MsgJoinPoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgJoinPoolResponse) ProtoMessage() {} func (*MsgJoinPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{9} + return fileDescriptor_f8f32b4c253e93d8, []int{9} } func (m *MsgJoinPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -553,7 +553,7 @@ func (m *MsgLeavePool) Reset() { *m = MsgLeavePool{} } func (m *MsgLeavePool) String() string { return proto.CompactTextString(m) } func (*MsgLeavePool) ProtoMessage() {} func (*MsgLeavePool) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{10} + return fileDescriptor_f8f32b4c253e93d8, []int{10} } func (m *MsgLeavePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -604,7 +604,7 @@ func (m *MsgLeavePoolResponse) Reset() { *m = MsgLeavePoolResponse{} } func (m *MsgLeavePoolResponse) String() string { return proto.CompactTextString(m) } func (*MsgLeavePoolResponse) ProtoMessage() {} func (*MsgLeavePoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{11} + return fileDescriptor_f8f32b4c253e93d8, []int{11} } func (m *MsgLeavePoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -645,7 +645,7 @@ func (m *MsgUpdateParams) Reset() { *m = MsgUpdateParams{} } func (m *MsgUpdateParams) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParams) ProtoMessage() {} func (*MsgUpdateParams) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{12} + return fileDescriptor_f8f32b4c253e93d8, []int{12} } func (m *MsgUpdateParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -696,7 +696,7 @@ func (m *MsgUpdateParamsResponse) Reset() { *m = MsgUpdateParamsResponse func (m *MsgUpdateParamsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateParamsResponse) ProtoMessage() {} func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_f52b730e69b9fb06, []int{13} + return fileDescriptor_f8f32b4c253e93d8, []int{13} } func (m *MsgUpdateParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -726,73 +726,73 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateStaker)(nil), "kyve.stakers.v1beta1.MsgCreateStaker") - proto.RegisterType((*MsgCreateStakerResponse)(nil), "kyve.stakers.v1beta1.MsgCreateStakerResponse") - proto.RegisterType((*MsgUpdateMetadata)(nil), "kyve.stakers.v1beta1.MsgUpdateMetadata") - proto.RegisterType((*MsgUpdateMetadataResponse)(nil), "kyve.stakers.v1beta1.MsgUpdateMetadataResponse") - proto.RegisterType((*MsgUpdateCommission)(nil), "kyve.stakers.v1beta1.MsgUpdateCommission") - proto.RegisterType((*MsgUpdateCommissionResponse)(nil), "kyve.stakers.v1beta1.MsgUpdateCommissionResponse") - proto.RegisterType((*MsgClaimCommissionRewards)(nil), "kyve.stakers.v1beta1.MsgClaimCommissionRewards") - proto.RegisterType((*MsgClaimCommissionRewardsResponse)(nil), "kyve.stakers.v1beta1.MsgClaimCommissionRewardsResponse") - proto.RegisterType((*MsgJoinPool)(nil), "kyve.stakers.v1beta1.MsgJoinPool") - proto.RegisterType((*MsgJoinPoolResponse)(nil), "kyve.stakers.v1beta1.MsgJoinPoolResponse") - proto.RegisterType((*MsgLeavePool)(nil), "kyve.stakers.v1beta1.MsgLeavePool") - proto.RegisterType((*MsgLeavePoolResponse)(nil), "kyve.stakers.v1beta1.MsgLeavePoolResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "kyve.stakers.v1beta1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.stakers.v1beta1.MsgUpdateParamsResponse") -} - -func init() { proto.RegisterFile("kyve/stakers/v1beta1/tx.proto", fileDescriptor_f52b730e69b9fb06) } - -var fileDescriptor_f52b730e69b9fb06 = []byte{ - // 751 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4d, 0x4f, 0x13, 0x5d, - 0x14, 0xee, 0xf0, 0xdd, 0xf3, 0x36, 0xc0, 0x3b, 0x6f, 0x5f, 0x18, 0x86, 0x50, 0xa0, 0x84, 0x08, - 0x44, 0x66, 0x52, 0x4d, 0x34, 0x61, 0x27, 0x55, 0x13, 0x95, 0x2a, 0x29, 0xd1, 0xa8, 0x2c, 0xc8, - 0xed, 0xcc, 0xcd, 0xf4, 0xda, 0xce, 0xdc, 0xc9, 0xdc, 0xdb, 0x42, 0x77, 0x86, 0x85, 0x6b, 0x57, - 0xfe, 0x0e, 0x16, 0xfe, 0x08, 0x96, 0xc4, 0x95, 0x71, 0x41, 0x0c, 0x2c, 0xd8, 0xfb, 0x0b, 0xcc, - 0x7c, 0xdd, 0x7e, 0xd0, 0x0f, 0x30, 0xae, 0xda, 0xe7, 0x9e, 0xe7, 0x9e, 0xe7, 0x39, 0xf7, 0x9e, - 0x73, 0x5b, 0x58, 0xa8, 0x34, 0xea, 0x58, 0x67, 0x1c, 0x55, 0xb0, 0xc7, 0xf4, 0x7a, 0xae, 0x84, - 0x39, 0xca, 0xe9, 0xfc, 0x48, 0x73, 0x3d, 0xca, 0xa9, 0x9c, 0xf6, 0xc3, 0x5a, 0x14, 0xd6, 0xa2, - 0xb0, 0x3a, 0x6b, 0x50, 0x66, 0x53, 0xa6, 0xdb, 0xcc, 0xd2, 0xeb, 0x39, 0xff, 0x23, 0xa4, 0xab, - 0x73, 0x61, 0xe0, 0x20, 0x40, 0x7a, 0x08, 0xa2, 0x50, 0xda, 0xa2, 0x16, 0x0d, 0xd7, 0xfd, 0x6f, - 0xe1, 0x6a, 0xf6, 0x8b, 0x04, 0x53, 0x05, 0x66, 0xe5, 0x3d, 0x8c, 0x38, 0xde, 0x0b, 0x64, 0x64, - 0x05, 0xc6, 0x0d, 0x1f, 0x53, 0x4f, 0x91, 0x96, 0xa4, 0xb5, 0x64, 0x31, 0x86, 0xf2, 0x0c, 0x8c, - 0x21, 0x9b, 0xd6, 0x1c, 0xae, 0x0c, 0x2d, 0x49, 0x6b, 0x23, 0xc5, 0x08, 0xc9, 0x79, 0x00, 0x83, - 0xda, 0x36, 0x61, 0x8c, 0x50, 0x47, 0x19, 0xf6, 0x37, 0x6d, 0xaf, 0x9c, 0x9e, 0x2f, 0x26, 0x7e, - 0x9c, 0x2f, 0xce, 0x87, 0x2e, 0x98, 0x59, 0xd1, 0x08, 0xd5, 0x6d, 0xc4, 0xcb, 0xda, 0x0e, 0xb6, - 0x90, 0xd1, 0x78, 0x8c, 0x8d, 0x62, 0xcb, 0xb6, 0xad, 0xd4, 0xf1, 0xd5, 0xc9, 0x46, 0x2c, 0x95, - 0x9d, 0x83, 0xd9, 0x0e, 0x5f, 0x45, 0xcc, 0x5c, 0xea, 0x30, 0x9c, 0x3d, 0x93, 0xe0, 0xdf, 0x02, - 0xb3, 0x5e, 0xbb, 0x26, 0xe2, 0xb8, 0x80, 0x39, 0x32, 0x11, 0x47, 0x7d, 0x5c, 0x2b, 0x30, 0x6e, - 0x53, 0x87, 0x54, 0xb0, 0x17, 0xd8, 0x4e, 0x16, 0x63, 0xe8, 0x47, 0x0e, 0x71, 0x89, 0x11, 0x8e, - 0x43, 0xd3, 0xc5, 0x18, 0xca, 0x2a, 0x4c, 0x10, 0x13, 0x3b, 0x9c, 0xf0, 0x86, 0x32, 0x12, 0x84, - 0x04, 0x96, 0xd7, 0x61, 0x9a, 0x61, 0xa3, 0xe6, 0x11, 0xde, 0x38, 0x30, 0xa8, 0xc3, 0x91, 0xc1, - 0x95, 0xd1, 0x80, 0x33, 0x15, 0xaf, 0xe7, 0xc3, 0x65, 0x5f, 0xc0, 0xc4, 0x1c, 0x91, 0x2a, 0x53, - 0xc6, 0x42, 0x81, 0x08, 0x76, 0x54, 0x3b, 0x0f, 0x73, 0xd7, 0x2a, 0x12, 0xf5, 0x1e, 0x4b, 0xf0, - 0x9f, 0x88, 0xe6, 0xc5, 0x81, 0xf5, 0xa9, 0xb8, 0xfd, 0x3e, 0x86, 0xfe, 0xc6, 0x7d, 0x2c, 0xc0, - 0x7c, 0x17, 0x0f, 0xc2, 0xe3, 0x7e, 0x50, 0x40, 0xbe, 0x8a, 0x88, 0xdd, 0x1a, 0x3d, 0x44, 0x9e, - 0xc9, 0x6e, 0xdf, 0x50, 0x1d, 0xda, 0x2b, 0xb0, 0xdc, 0x33, 0xb9, 0x70, 0xf0, 0x49, 0x82, 0x7f, - 0x0a, 0xcc, 0x7a, 0x4e, 0x89, 0xb3, 0x4b, 0x69, 0xb5, 0x8f, 0xe8, 0x2c, 0x8c, 0xbb, 0x94, 0x56, - 0x0f, 0x88, 0x19, 0xab, 0xfa, 0xf0, 0x99, 0x29, 0x67, 0x00, 0xea, 0xa8, 0x8a, 0x4c, 0xd3, 0xc3, - 0x8c, 0x45, 0x1d, 0xd1, 0xb2, 0xd2, 0xe2, 0x76, 0xa4, 0x8f, 0xdb, 0xff, 0x83, 0xdb, 0x8a, 0x7d, - 0x08, 0x7f, 0xaf, 0x20, 0x55, 0x60, 0xd6, 0x0e, 0x46, 0x75, 0xfc, 0x87, 0xfe, 0x3a, 0x74, 0x66, - 0x20, 0xdd, 0x9a, 0x50, 0x08, 0xb1, 0x60, 0xa2, 0xc3, 0x9b, 0xda, 0x45, 0x1e, 0xb2, 0x99, 0xfc, - 0x00, 0x92, 0xa8, 0xc6, 0xcb, 0xd4, 0x6f, 0xcd, 0x50, 0x6d, 0x5b, 0xf9, 0xf6, 0x75, 0x33, 0x1d, - 0x3d, 0x10, 0x8f, 0xc2, 0xfa, 0xf6, 0xb8, 0x47, 0x1c, 0xab, 0xd8, 0xa4, 0xfa, 0x1e, 0x5d, 0xd4, - 0xa8, 0x52, 0x64, 0xc6, 0x93, 0x13, 0xc1, 0xad, 0x49, 0xdf, 0x4a, 0x93, 0x19, 0x8d, 0x6b, 0xab, - 0x68, 0xec, 0xe7, 0xde, 0xaf, 0x51, 0x18, 0x2e, 0x30, 0x4b, 0x36, 0x21, 0xd5, 0xf6, 0xcc, 0xac, - 0x6a, 0xdd, 0xde, 0x36, 0xad, 0x63, 0xea, 0xd5, 0xcd, 0x1b, 0xd1, 0x62, 0x35, 0xf9, 0x03, 0x4c, - 0x76, 0x3c, 0x0c, 0x77, 0x7a, 0x26, 0x68, 0x27, 0xaa, 0xfa, 0x0d, 0x89, 0x42, 0xcb, 0x85, 0xe9, - 0x6b, 0x43, 0xb9, 0x3e, 0x20, 0x49, 0x93, 0xaa, 0xe6, 0x6e, 0x4c, 0x15, 0x8a, 0xc7, 0x12, 0xcc, - 0xf4, 0x18, 0xb2, 0xde, 0xee, 0xbb, 0x6f, 0x50, 0x1f, 0xde, 0x72, 0x83, 0x30, 0xf1, 0x16, 0x26, - 0xc4, 0x94, 0x2d, 0xf7, 0x4c, 0x12, 0x53, 0xd4, 0xf5, 0x81, 0x14, 0x91, 0x79, 0x1f, 0x92, 0xcd, - 0x01, 0xc9, 0xf6, 0xdc, 0x27, 0x38, 0xea, 0xc6, 0x60, 0x8e, 0x48, 0x6e, 0x42, 0xaa, 0x6d, 0x28, - 0x56, 0x07, 0x1c, 0x7f, 0x48, 0xeb, 0xd3, 0x7f, 0xdd, 0xba, 0x5d, 0x1d, 0xfd, 0x78, 0x75, 0xb2, - 0x21, 0x6d, 0x3f, 0x3d, 0xbd, 0xc8, 0x48, 0x67, 0x17, 0x19, 0xe9, 0xe7, 0x45, 0x46, 0xfa, 0x7c, - 0x99, 0x49, 0x9c, 0x5d, 0x66, 0x12, 0xdf, 0x2f, 0x33, 0x89, 0xf7, 0x77, 0x2d, 0xc2, 0xcb, 0xb5, - 0x92, 0x66, 0x50, 0x5b, 0x7f, 0xf1, 0xee, 0xcd, 0x93, 0x97, 0x98, 0x1f, 0x52, 0xaf, 0xa2, 0x1b, - 0x65, 0x44, 0x1c, 0xfd, 0x48, 0xfc, 0x15, 0xe0, 0x0d, 0x17, 0xb3, 0xd2, 0x58, 0xf0, 0x33, 0x7d, - 0xff, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9f, 0xe3, 0xed, 0x50, 0x27, 0x08, 0x00, 0x00, + proto.RegisterType((*MsgCreateStaker)(nil), "kyve.stakers.types.MsgCreateStaker") + proto.RegisterType((*MsgCreateStakerResponse)(nil), "kyve.stakers.types.MsgCreateStakerResponse") + proto.RegisterType((*MsgUpdateMetadata)(nil), "kyve.stakers.types.MsgUpdateMetadata") + proto.RegisterType((*MsgUpdateMetadataResponse)(nil), "kyve.stakers.types.MsgUpdateMetadataResponse") + proto.RegisterType((*MsgUpdateCommission)(nil), "kyve.stakers.types.MsgUpdateCommission") + proto.RegisterType((*MsgUpdateCommissionResponse)(nil), "kyve.stakers.types.MsgUpdateCommissionResponse") + proto.RegisterType((*MsgClaimCommissionRewards)(nil), "kyve.stakers.types.MsgClaimCommissionRewards") + proto.RegisterType((*MsgClaimCommissionRewardsResponse)(nil), "kyve.stakers.types.MsgClaimCommissionRewardsResponse") + proto.RegisterType((*MsgJoinPool)(nil), "kyve.stakers.types.MsgJoinPool") + proto.RegisterType((*MsgJoinPoolResponse)(nil), "kyve.stakers.types.MsgJoinPoolResponse") + proto.RegisterType((*MsgLeavePool)(nil), "kyve.stakers.types.MsgLeavePool") + proto.RegisterType((*MsgLeavePoolResponse)(nil), "kyve.stakers.types.MsgLeavePoolResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "kyve.stakers.types.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "kyve.stakers.types.MsgUpdateParamsResponse") +} + +func init() { proto.RegisterFile("kyve/stakers/types/tx.proto", fileDescriptor_f8f32b4c253e93d8) } + +var fileDescriptor_f8f32b4c253e93d8 = []byte{ + // 744 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4b, 0x4f, 0x14, 0x4b, + 0x14, 0x9e, 0xe6, 0x3d, 0xe7, 0x4e, 0x80, 0xdb, 0x97, 0x0b, 0x4d, 0x4f, 0x1c, 0x90, 0x89, 0x01, + 0x51, 0xba, 0xa3, 0x46, 0x17, 0xec, 0x64, 0xd4, 0x44, 0x65, 0x94, 0x34, 0x3e, 0xa2, 0x2e, 0xa0, + 0xe8, 0x2e, 0x7b, 0x2a, 0xd3, 0xdd, 0x35, 0xe9, 0xaa, 0x19, 0x98, 0x8d, 0x31, 0x2c, 0x5c, 0xbb, + 0xf2, 0x77, 0xb0, 0xf0, 0x47, 0xb0, 0x24, 0x26, 0x26, 0xc6, 0x05, 0x31, 0xb0, 0xe0, 0x6f, 0x98, + 0x7e, 0xd5, 0x3c, 0xa0, 0x07, 0x30, 0xae, 0x66, 0xbe, 0x3a, 0x5f, 0x9d, 0xef, 0x3b, 0x5d, 0xe7, + 0x54, 0x41, 0xbe, 0xda, 0x6c, 0x60, 0x9d, 0x71, 0x54, 0xc5, 0x3e, 0xd3, 0x79, 0xb3, 0x86, 0x99, + 0xce, 0x77, 0xb4, 0x9a, 0x4f, 0x39, 0x95, 0xe5, 0x20, 0xa8, 0xc5, 0x41, 0x2d, 0x0c, 0xaa, 0x53, + 0x26, 0x65, 0x2e, 0x65, 0xba, 0xcb, 0x6c, 0xbd, 0x71, 0x2b, 0xf8, 0x89, 0xc8, 0xea, 0x74, 0x14, + 0xd8, 0x08, 0x91, 0x1e, 0x81, 0x38, 0x34, 0x61, 0x53, 0x9b, 0x46, 0xeb, 0xc1, 0xbf, 0x68, 0x75, + 0xee, 0x8b, 0x04, 0x63, 0x65, 0x66, 0x97, 0x7c, 0x8c, 0x38, 0x5e, 0x0f, 0x45, 0x64, 0x05, 0x86, + 0xcd, 0x00, 0x53, 0x5f, 0x91, 0x66, 0xa5, 0x85, 0xac, 0x91, 0x40, 0x79, 0x12, 0x86, 0x90, 0x4b, + 0xeb, 0x1e, 0x57, 0xfa, 0x66, 0xa5, 0x85, 0x01, 0x23, 0x46, 0x72, 0x09, 0xc0, 0xa4, 0xae, 0x4b, + 0x18, 0x23, 0xd4, 0x53, 0xfa, 0x83, 0x4d, 0x2b, 0xc5, 0xfd, 0xc3, 0x99, 0xcc, 0xcf, 0xc3, 0x99, + 0x7c, 0xe4, 0x82, 0x59, 0x55, 0x8d, 0x50, 0xdd, 0x45, 0xbc, 0xa2, 0xad, 0x62, 0x1b, 0x99, 0xcd, + 0x07, 0xd8, 0x34, 0xda, 0xb6, 0x2d, 0xe7, 0x76, 0x4f, 0xf6, 0x16, 0x13, 0xa9, 0xb9, 0x69, 0x98, + 0xea, 0xf2, 0x65, 0x60, 0x56, 0xa3, 0x1e, 0xc3, 0x73, 0x07, 0x12, 0xfc, 0x5b, 0x66, 0xf6, 0xcb, + 0x9a, 0x85, 0x38, 0x2e, 0x63, 0x8e, 0x2c, 0xc4, 0x51, 0x0f, 0xd7, 0x0a, 0x0c, 0xbb, 0xd4, 0x23, + 0x55, 0xec, 0x87, 0xb6, 0xb3, 0x46, 0x02, 0x83, 0xc8, 0x36, 0xde, 0x62, 0x84, 0xe3, 0xc8, 0xb4, + 0x91, 0x40, 0x59, 0x85, 0x11, 0x62, 0x61, 0x8f, 0x13, 0xde, 0x54, 0x06, 0xc2, 0x90, 0xc0, 0xf2, + 0x75, 0x18, 0x67, 0xd8, 0xac, 0xfb, 0x84, 0x37, 0x37, 0x4c, 0xea, 0x71, 0x64, 0x72, 0x65, 0x30, + 0xe4, 0x8c, 0x25, 0xeb, 0xa5, 0x68, 0x39, 0x10, 0xb0, 0x30, 0x47, 0xc4, 0x61, 0xca, 0x50, 0x24, + 0x10, 0xc3, 0xae, 0x6a, 0xf3, 0x30, 0x7d, 0xaa, 0x22, 0x51, 0xef, 0xae, 0x04, 0xff, 0x89, 0x68, + 0x49, 0x7c, 0xb0, 0x1e, 0x15, 0x77, 0x9e, 0x47, 0xdf, 0xdf, 0x38, 0x8f, 0x2b, 0x90, 0x3f, 0xc3, + 0x83, 0xf0, 0xf8, 0x2e, 0x2c, 0xa0, 0xe4, 0x20, 0xe2, 0xb6, 0x47, 0xb7, 0x91, 0x6f, 0xb1, 0xcb, + 0x37, 0x54, 0x97, 0x76, 0x11, 0xae, 0xa6, 0x26, 0x17, 0x0e, 0x3e, 0x49, 0xf0, 0x4f, 0x99, 0xd9, + 0x4f, 0x28, 0xf1, 0xd6, 0x28, 0x75, 0x7a, 0x88, 0x4e, 0xc1, 0x70, 0x8d, 0x52, 0x67, 0x83, 0x58, + 0x89, 0x6a, 0x00, 0x1f, 0x5b, 0x72, 0x01, 0xa0, 0x81, 0x1c, 0x64, 0x59, 0x3e, 0x66, 0x2c, 0xee, + 0x88, 0xb6, 0x95, 0x36, 0xb7, 0x03, 0x3d, 0xdc, 0xfe, 0x1f, 0x9e, 0x56, 0xe2, 0x43, 0xf8, 0x7b, + 0x0e, 0xb9, 0x32, 0xb3, 0x57, 0x31, 0x6a, 0xe0, 0x3f, 0xf4, 0xd7, 0xa5, 0x33, 0x09, 0x13, 0xed, + 0x09, 0x85, 0x10, 0x0b, 0x27, 0x3a, 0x3a, 0xa9, 0x35, 0xe4, 0x23, 0x97, 0xc9, 0xf7, 0x20, 0x8b, + 0xea, 0xbc, 0x42, 0x83, 0xd6, 0x8c, 0xd4, 0x56, 0x94, 0x6f, 0x5f, 0x97, 0x26, 0xe2, 0x0b, 0xe2, + 0x7e, 0x54, 0xdf, 0x3a, 0xf7, 0x89, 0x67, 0x1b, 0x2d, 0x6a, 0xe0, 0xb1, 0x86, 0x9a, 0x0e, 0x45, + 0x56, 0x32, 0x39, 0x31, 0x5c, 0x1e, 0x0d, 0xac, 0xb4, 0x98, 0xf1, 0xb8, 0xb6, 0x8b, 0x26, 0x7e, + 0x6e, 0x7f, 0x1f, 0x84, 0xfe, 0x32, 0xb3, 0xe5, 0x4d, 0xc8, 0x75, 0x5c, 0x33, 0x45, 0xed, 0xf4, + 0xcd, 0xa6, 0x75, 0xcd, 0xbc, 0x7a, 0xe3, 0x02, 0xa4, 0x44, 0x49, 0x7e, 0x0f, 0xa3, 0x5d, 0x97, + 0xc2, 0xb5, 0x94, 0xed, 0x9d, 0x34, 0x75, 0xe9, 0x42, 0x34, 0xa1, 0xe3, 0xc0, 0xf8, 0xa9, 0x61, + 0x9c, 0xef, 0x99, 0xa2, 0x45, 0x54, 0xf5, 0x0b, 0x12, 0x85, 0xda, 0x07, 0x98, 0x4c, 0x99, 0xab, + 0x34, 0xdb, 0x67, 0xd3, 0xd5, 0xbb, 0x97, 0xa2, 0x0b, 0xfd, 0x17, 0x30, 0x22, 0x86, 0x6a, 0x26, + 0x25, 0x45, 0x42, 0x50, 0xe7, 0xcf, 0x21, 0x88, 0xac, 0xaf, 0x21, 0xdb, 0x9a, 0x85, 0xd9, 0x94, + 0x5d, 0x82, 0xa1, 0x2e, 0x9c, 0xc7, 0x10, 0x89, 0x37, 0x21, 0xd7, 0xd1, 0xfb, 0xc5, 0x9e, 0xdf, + 0x3b, 0x22, 0xa5, 0xb6, 0xd9, 0x59, 0x0d, 0xad, 0x0e, 0x7e, 0x3c, 0xd9, 0x5b, 0x94, 0x56, 0x1e, + 0xed, 0x1f, 0x15, 0xa4, 0x83, 0xa3, 0x82, 0xf4, 0xeb, 0xa8, 0x20, 0x7d, 0x3e, 0x2e, 0x64, 0x0e, + 0x8e, 0x0b, 0x99, 0x1f, 0xc7, 0x85, 0xcc, 0xdb, 0x9b, 0x36, 0xe1, 0x95, 0xfa, 0x96, 0x66, 0x52, + 0x57, 0x7f, 0xfa, 0xe6, 0xd5, 0xc3, 0x67, 0x98, 0x6f, 0x53, 0xbf, 0xaa, 0x9b, 0x15, 0x44, 0x3c, + 0x7d, 0xa7, 0xf3, 0xa5, 0xdf, 0x1a, 0x0a, 0x5f, 0xe2, 0x3b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x8c, 0xd0, 0x2f, 0x18, 0x06, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -834,7 +834,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateStaker(ctx context.Context, in *MsgCreateStaker, opts ...grpc.CallOption) (*MsgCreateStakerResponse, error) { out := new(MsgCreateStakerResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/CreateStaker", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/CreateStaker", in, out, opts...) if err != nil { return nil, err } @@ -843,7 +843,7 @@ func (c *msgClient) CreateStaker(ctx context.Context, in *MsgCreateStaker, opts func (c *msgClient) UpdateMetadata(ctx context.Context, in *MsgUpdateMetadata, opts ...grpc.CallOption) (*MsgUpdateMetadataResponse, error) { out := new(MsgUpdateMetadataResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/UpdateMetadata", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/UpdateMetadata", in, out, opts...) if err != nil { return nil, err } @@ -852,7 +852,7 @@ func (c *msgClient) UpdateMetadata(ctx context.Context, in *MsgUpdateMetadata, o func (c *msgClient) UpdateCommission(ctx context.Context, in *MsgUpdateCommission, opts ...grpc.CallOption) (*MsgUpdateCommissionResponse, error) { out := new(MsgUpdateCommissionResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/UpdateCommission", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/UpdateCommission", in, out, opts...) if err != nil { return nil, err } @@ -861,7 +861,7 @@ func (c *msgClient) UpdateCommission(ctx context.Context, in *MsgUpdateCommissio func (c *msgClient) ClaimCommissionRewards(ctx context.Context, in *MsgClaimCommissionRewards, opts ...grpc.CallOption) (*MsgClaimCommissionRewardsResponse, error) { out := new(MsgClaimCommissionRewardsResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/ClaimCommissionRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/ClaimCommissionRewards", in, out, opts...) if err != nil { return nil, err } @@ -870,7 +870,7 @@ func (c *msgClient) ClaimCommissionRewards(ctx context.Context, in *MsgClaimComm func (c *msgClient) JoinPool(ctx context.Context, in *MsgJoinPool, opts ...grpc.CallOption) (*MsgJoinPoolResponse, error) { out := new(MsgJoinPoolResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/JoinPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/JoinPool", in, out, opts...) if err != nil { return nil, err } @@ -879,7 +879,7 @@ func (c *msgClient) JoinPool(ctx context.Context, in *MsgJoinPool, opts ...grpc. func (c *msgClient) LeavePool(ctx context.Context, in *MsgLeavePool, opts ...grpc.CallOption) (*MsgLeavePoolResponse, error) { out := new(MsgLeavePoolResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/LeavePool", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/LeavePool", in, out, opts...) if err != nil { return nil, err } @@ -888,7 +888,7 @@ func (c *msgClient) LeavePool(ctx context.Context, in *MsgLeavePool, opts ...grp func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/kyve.stakers.v1beta1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.stakers.types.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -954,7 +954,7 @@ func _Msg_CreateStaker_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/CreateStaker", + FullMethod: "/kyve.stakers.types.Msg/CreateStaker", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateStaker(ctx, req.(*MsgCreateStaker)) @@ -972,7 +972,7 @@ func _Msg_UpdateMetadata_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/UpdateMetadata", + FullMethod: "/kyve.stakers.types.Msg/UpdateMetadata", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateMetadata(ctx, req.(*MsgUpdateMetadata)) @@ -990,7 +990,7 @@ func _Msg_UpdateCommission_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/UpdateCommission", + FullMethod: "/kyve.stakers.types.Msg/UpdateCommission", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateCommission(ctx, req.(*MsgUpdateCommission)) @@ -1008,7 +1008,7 @@ func _Msg_ClaimCommissionRewards_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/ClaimCommissionRewards", + FullMethod: "/kyve.stakers.types.Msg/ClaimCommissionRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimCommissionRewards(ctx, req.(*MsgClaimCommissionRewards)) @@ -1026,7 +1026,7 @@ func _Msg_JoinPool_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/JoinPool", + FullMethod: "/kyve.stakers.types.Msg/JoinPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).JoinPool(ctx, req.(*MsgJoinPool)) @@ -1044,7 +1044,7 @@ func _Msg_LeavePool_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/LeavePool", + FullMethod: "/kyve.stakers.types.Msg/LeavePool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).LeavePool(ctx, req.(*MsgLeavePool)) @@ -1062,7 +1062,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.stakers.v1beta1.Msg/UpdateParams", + FullMethod: "/kyve.stakers.types.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -1071,7 +1071,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.stakers.v1beta1.Msg", + ServiceName: "kyve.stakers.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1104,7 +1104,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/stakers/v1beta1/tx.proto", + Metadata: "kyve/stakers/types/tx.proto", } func (m *MsgCreateStaker) Marshal() (dAtA []byte, err error) { diff --git a/x/team/types/events.pb.go b/x/team/types/events.pb.go index 94664cc4..979a30cf 100644 --- a/x/team/types/events.pb.go +++ b/x/team/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/team/v1beta1/events.proto +// source: kyve/team/types/events.proto package types @@ -39,7 +39,7 @@ func (m *EventCreateTeamVestingAccount) Reset() { *m = EventCreateTeamVe func (m *EventCreateTeamVestingAccount) String() string { return proto.CompactTextString(m) } func (*EventCreateTeamVestingAccount) ProtoMessage() {} func (*EventCreateTeamVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_198acea0777f469a, []int{0} + return fileDescriptor_72d64307b7af3271, []int{0} } func (m *EventCreateTeamVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -114,7 +114,7 @@ func (m *EventClawback) Reset() { *m = EventClawback{} } func (m *EventClawback) String() string { return proto.CompactTextString(m) } func (*EventClawback) ProtoMessage() {} func (*EventClawback) Descriptor() ([]byte, []int) { - return fileDescriptor_198acea0777f469a, []int{1} + return fileDescriptor_72d64307b7af3271, []int{1} } func (m *EventClawback) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -188,7 +188,7 @@ func (m *EventClaimedUnlocked) Reset() { *m = EventClaimedUnlocked{} } func (m *EventClaimedUnlocked) String() string { return proto.CompactTextString(m) } func (*EventClaimedUnlocked) ProtoMessage() {} func (*EventClaimedUnlocked) Descriptor() ([]byte, []int) { - return fileDescriptor_198acea0777f469a, []int{2} + return fileDescriptor_72d64307b7af3271, []int{2} } func (m *EventClaimedUnlocked) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -262,7 +262,7 @@ func (m *EventClaimInflationRewards) Reset() { *m = EventClaimInflationR func (m *EventClaimInflationRewards) String() string { return proto.CompactTextString(m) } func (*EventClaimInflationRewards) ProtoMessage() {} func (*EventClaimInflationRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_198acea0777f469a, []int{3} + return fileDescriptor_72d64307b7af3271, []int{3} } func (m *EventClaimInflationRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -334,7 +334,7 @@ func (m *EventClaimAuthorityRewards) Reset() { *m = EventClaimAuthorityR func (m *EventClaimAuthorityRewards) String() string { return proto.CompactTextString(m) } func (*EventClaimAuthorityRewards) ProtoMessage() {} func (*EventClaimAuthorityRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_198acea0777f469a, []int{4} + return fileDescriptor_72d64307b7af3271, []int{4} } func (m *EventClaimAuthorityRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -385,41 +385,40 @@ func (m *EventClaimAuthorityRewards) GetRecipient() string { } func init() { - proto.RegisterType((*EventCreateTeamVestingAccount)(nil), "kyve.team.v1beta1.EventCreateTeamVestingAccount") - proto.RegisterType((*EventClawback)(nil), "kyve.team.v1beta1.EventClawback") - proto.RegisterType((*EventClaimedUnlocked)(nil), "kyve.team.v1beta1.EventClaimedUnlocked") - proto.RegisterType((*EventClaimInflationRewards)(nil), "kyve.team.v1beta1.EventClaimInflationRewards") - proto.RegisterType((*EventClaimAuthorityRewards)(nil), "kyve.team.v1beta1.EventClaimAuthorityRewards") + proto.RegisterType((*EventCreateTeamVestingAccount)(nil), "kyve.team.types.EventCreateTeamVestingAccount") + proto.RegisterType((*EventClawback)(nil), "kyve.team.types.EventClawback") + proto.RegisterType((*EventClaimedUnlocked)(nil), "kyve.team.types.EventClaimedUnlocked") + proto.RegisterType((*EventClaimInflationRewards)(nil), "kyve.team.types.EventClaimInflationRewards") + proto.RegisterType((*EventClaimAuthorityRewards)(nil), "kyve.team.types.EventClaimAuthorityRewards") } -func init() { proto.RegisterFile("kyve/team/v1beta1/events.proto", fileDescriptor_198acea0777f469a) } +func init() { proto.RegisterFile("kyve/team/types/events.proto", fileDescriptor_72d64307b7af3271) } -var fileDescriptor_198acea0777f469a = []byte{ - // 372 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x92, 0xcf, 0x6a, 0xe2, 0x50, - 0x14, 0xc6, 0xbd, 0x51, 0x64, 0xbc, 0xcc, 0xdf, 0x30, 0x0c, 0x41, 0x66, 0x82, 0x64, 0xa5, 0x9b, - 0x04, 0x99, 0x27, 0x70, 0xc4, 0xc5, 0x30, 0x30, 0x8b, 0x30, 0x23, 0xb4, 0x9b, 0x72, 0x73, 0x73, +var fileDescriptor_72d64307b7af3271 = []byte{ + // 366 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x92, 0xc1, 0x6a, 0xe2, 0x50, + 0x14, 0x86, 0xbd, 0x51, 0x64, 0xbc, 0xcc, 0x8c, 0x43, 0x18, 0x86, 0x20, 0x4e, 0x90, 0xac, 0x74, + 0x93, 0x2c, 0xe6, 0x09, 0x1c, 0x71, 0x51, 0x0a, 0x5d, 0x84, 0x56, 0x68, 0x37, 0xe5, 0x7a, 0x73, 0xaa, 0x97, 0xe4, 0xde, 0x9b, 0x26, 0x47, 0xad, 0x5d, 0xf5, 0x11, 0xfa, 0x00, 0x7d, 0xa0, 0x2e, - 0x5d, 0x76, 0x59, 0xf4, 0x45, 0x4a, 0x62, 0x34, 0xb6, 0x50, 0xa8, 0x9b, 0x2e, 0xef, 0xf7, 0x9d, - 0x7c, 0xbf, 0xef, 0x84, 0x43, 0xed, 0x68, 0x39, 0x07, 0x0f, 0x81, 0x49, 0x6f, 0xde, 0x0f, 0x00, - 0x59, 0xdf, 0x83, 0x39, 0x28, 0xcc, 0xdc, 0x24, 0xd5, 0xa8, 0xcd, 0x2f, 0xb9, 0xef, 0xe6, 0xbe, - 0x5b, 0xfa, 0xce, 0x2d, 0xa1, 0x3f, 0x46, 0xf9, 0xcc, 0x30, 0x05, 0x86, 0xf0, 0x0f, 0x98, 0x1c, - 0x43, 0x86, 0x42, 0x4d, 0x06, 0x9c, 0xeb, 0x99, 0x42, 0xf3, 0x3b, 0x6d, 0xb1, 0x19, 0x4e, 0x75, - 0x2a, 0x70, 0x69, 0x91, 0x0e, 0xe9, 0xb6, 0xfc, 0x4a, 0x30, 0x3f, 0x52, 0x43, 0x84, 0x96, 0xd1, - 0x21, 0xdd, 0x86, 0x6f, 0x88, 0xd0, 0xec, 0xd1, 0xcf, 0xa8, 0x91, 0xc5, 0x67, 0x2c, 0x8e, 0x35, - 0x67, 0x28, 0xb4, 0xb2, 0xea, 0x85, 0xfb, 0xa9, 0xd0, 0x07, 0x7b, 0xd9, 0x74, 0xe8, 0x7b, 0xae, - 0xa5, 0x04, 0xc5, 0x41, 0x82, 0x42, 0xab, 0x51, 0x8c, 0x3d, 0xd1, 0x9c, 0x0b, 0xfa, 0x61, 0xdb, - 0x2e, 0x66, 0x8b, 0x80, 0xf1, 0xe8, 0xc8, 0x36, 0x6d, 0xfa, 0x8e, 0x97, 0x5f, 0x96, 0x2d, 0xf6, - 0x6f, 0xf3, 0x1b, 0x6d, 0x32, 0x99, 0x6f, 0x58, 0x82, 0xcb, 0x97, 0x73, 0x45, 0xbf, 0xee, 0x90, - 0x42, 0x42, 0xf8, 0x5f, 0xc5, 0x9a, 0x47, 0x10, 0x1e, 0x49, 0xae, 0xd2, 0xeb, 0x87, 0xe9, 0x79, - 0x4a, 0x0a, 0x5c, 0x24, 0x62, 0xb7, 0x71, 0xcb, 0xaf, 0x04, 0xe7, 0x9a, 0xd0, 0x76, 0x05, 0xff, - 0xad, 0xce, 0xe3, 0xe2, 0x57, 0xf9, 0xb0, 0x60, 0x69, 0x98, 0xbd, 0x49, 0x85, 0xe4, 0xb0, 0xc1, - 0x60, 0x17, 0xfe, 0xba, 0x06, 0x15, 0xd1, 0x78, 0x99, 0x58, 0x7f, 0x46, 0xfc, 0x35, 0xbc, 0x5b, - 0xdb, 0x64, 0xb5, 0xb6, 0xc9, 0xc3, 0xda, 0x26, 0x37, 0x1b, 0xbb, 0xb6, 0xda, 0xd8, 0xb5, 0xfb, - 0x8d, 0x5d, 0x3b, 0xed, 0x4d, 0x04, 0x4e, 0x67, 0x81, 0xcb, 0xb5, 0xf4, 0xfe, 0x9c, 0x8c, 0x47, - 0x7f, 0x01, 0x17, 0x3a, 0x8d, 0x3c, 0x3e, 0x65, 0x42, 0x79, 0x97, 0xdb, 0x4b, 0xc7, 0x65, 0x02, - 0x59, 0xd0, 0x2c, 0x2e, 0xfc, 0xe7, 0x63, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfe, 0x6f, 0xd8, 0x00, - 0x03, 0x03, 0x00, 0x00, + 0x5d, 0x76, 0x59, 0xf4, 0x45, 0x4a, 0xd2, 0x68, 0x6c, 0xa1, 0x50, 0x37, 0x5d, 0xde, 0xff, 0x3f, + 0xf9, 0xbf, 0xff, 0x84, 0x43, 0xdb, 0xe1, 0x72, 0x0e, 0x1e, 0x02, 0x93, 0x1e, 0x2e, 0x63, 0x48, + 0x3d, 0x98, 0x83, 0xc2, 0xd4, 0x8d, 0x13, 0x8d, 0xda, 0x6c, 0x66, 0xae, 0x9b, 0xb9, 0x6e, 0xee, + 0x3a, 0x0f, 0x84, 0xfe, 0x1d, 0x66, 0x13, 0x83, 0x04, 0x18, 0xc2, 0x29, 0x30, 0x39, 0x82, 0x14, + 0x85, 0x9a, 0xf4, 0x39, 0xd7, 0x33, 0x85, 0x66, 0x9b, 0x36, 0xd8, 0x0c, 0xa7, 0x3a, 0x11, 0xb8, + 0xb4, 0x48, 0x87, 0x74, 0x1b, 0x7e, 0x29, 0x98, 0x3f, 0xa9, 0x21, 0x02, 0xcb, 0xe8, 0x90, 0x6e, + 0xcd, 0x37, 0x44, 0x60, 0xf6, 0xe8, 0x2f, 0xd4, 0xc8, 0xa2, 0x4b, 0x16, 0x45, 0x9a, 0x33, 0x14, + 0x5a, 0x59, 0xd5, 0xdc, 0x6d, 0xe6, 0x7a, 0x7f, 0x27, 0x9b, 0x0e, 0xfd, 0xce, 0xb5, 0x94, 0xa0, + 0x38, 0x48, 0x50, 0x68, 0xd5, 0xf2, 0xb1, 0x37, 0x9a, 0x73, 0x4d, 0x7f, 0xbc, 0xb6, 0x8b, 0xd8, + 0x62, 0xcc, 0x78, 0x78, 0x60, 0x9b, 0x16, 0xfd, 0xc6, 0x8b, 0x2f, 0x8b, 0x16, 0xbb, 0xb7, 0xf9, + 0x87, 0xd6, 0x99, 0xcc, 0x36, 0x2c, 0xc0, 0xc5, 0xcb, 0xb9, 0xa5, 0xbf, 0xb7, 0x48, 0x21, 0x21, + 0x38, 0x53, 0x91, 0xe6, 0x21, 0x04, 0x07, 0x92, 0xcb, 0xf4, 0xea, 0x7e, 0x7a, 0x96, 0x92, 0x00, + 0x17, 0xb1, 0xd8, 0x6e, 0xdc, 0xf0, 0x4b, 0xc1, 0xb9, 0x23, 0xb4, 0x55, 0xc2, 0x8f, 0xd4, 0x55, + 0x94, 0xff, 0x2a, 0x1f, 0x16, 0x2c, 0x09, 0xd2, 0x2f, 0xa9, 0x10, 0xef, 0x37, 0xe8, 0x6f, 0xc3, + 0x3f, 0xd7, 0xa0, 0x24, 0x1a, 0x1f, 0x13, 0xab, 0xef, 0x88, 0xff, 0x07, 0x8f, 0x6b, 0x9b, 0xac, + 0xd6, 0x36, 0x79, 0x5e, 0xdb, 0xe4, 0x7e, 0x63, 0x57, 0x56, 0x1b, 0xbb, 0xf2, 0xb4, 0xb1, 0x2b, + 0x17, 0xbd, 0x89, 0xc0, 0xe9, 0x6c, 0xec, 0x72, 0x2d, 0xbd, 0xe3, 0xf3, 0xd1, 0xf0, 0x04, 0x70, + 0xa1, 0x93, 0xd0, 0xe3, 0x53, 0x26, 0x94, 0x77, 0xb3, 0x77, 0xe5, 0xe3, 0x7a, 0x7e, 0xdf, 0xff, + 0x5e, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9f, 0x7b, 0x2a, 0x00, 0xff, 0x02, 0x00, 0x00, } func (m *EventCreateTeamVestingAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/team/types/genesis.pb.go b/x/team/types/genesis.pb.go index 2f99c3c7..ee40364a 100644 --- a/x/team/types/genesis.pb.go +++ b/x/team/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/team/v1beta1/genesis.proto +// source: kyve/team/types/genesis.proto package types @@ -37,7 +37,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_6a6a0401797f9ed5, []int{0} + return fileDescriptor_8b197ba64aea1488, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,31 +88,30 @@ func (m *GenesisState) GetAccountCount() uint64 { } func init() { - proto.RegisterType((*GenesisState)(nil), "kyve.team.v1beta1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "kyve.team.types.GenesisState") } -func init() { proto.RegisterFile("kyve/team/v1beta1/genesis.proto", fileDescriptor_6a6a0401797f9ed5) } +func init() { proto.RegisterFile("kyve/team/types/genesis.proto", fileDescriptor_8b197ba64aea1488) } -var fileDescriptor_6a6a0401797f9ed5 = []byte{ - // 279 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0xae, 0x2c, 0x4b, - 0xd5, 0x2f, 0x49, 0x4d, 0xcc, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, - 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x04, 0x29, 0xd0, - 0x03, 0x29, 0xd0, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xea, 0x83, 0x58, - 0x10, 0x85, 0x52, 0x32, 0x98, 0x26, 0x81, 0x75, 0x81, 0x65, 0x95, 0x8e, 0x32, 0x72, 0xf1, 0xb8, - 0x43, 0x0c, 0x0e, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x72, 0xe0, 0xe2, 0x4c, 0x2c, 0x2d, 0xc9, 0xc8, - 0x2f, 0xca, 0x2c, 0xa9, 0x94, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd1, 0xc3, 0xb0, 0x4b, - 0xcf, 0x11, 0xa6, 0xc6, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x84, 0x26, 0x21, 0x3f, 0x2e, - 0x9e, 0xc4, 0xe4, 0xe4, 0xfc, 0xd2, 0xbc, 0x92, 0xf8, 0x9c, 0xcc, 0xe2, 0x12, 0x09, 0x66, 0x05, - 0x66, 0x0d, 0x6e, 0x23, 0x55, 0x2c, 0x86, 0x84, 0xa4, 0x26, 0xe6, 0x86, 0xa5, 0x16, 0x97, 0x64, - 0xe6, 0xa5, 0x3b, 0x42, 0x74, 0x40, 0x4d, 0xe3, 0x86, 0x1a, 0xe0, 0x93, 0x59, 0x5c, 0x22, 0xa4, - 0xcc, 0xc5, 0x0b, 0x33, 0x0f, 0x4c, 0x4a, 0xb0, 0x28, 0x30, 0x6a, 0xb0, 0x04, 0xc1, 0x2c, 0x71, - 0x06, 0xeb, 0x73, 0x3e, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, - 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xcd, 0xf4, - 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xef, 0xc8, 0x30, 0x57, 0xbf, 0xd4, - 0x92, 0xf2, 0xfc, 0xa2, 0x6c, 0xfd, 0xe4, 0x8c, 0xc4, 0xcc, 0x3c, 0xfd, 0x0a, 0x48, 0xc8, 0x94, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xc3, 0xc4, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xee, - 0x1b, 0x1e, 0x76, 0x7d, 0x01, 0x00, 0x00, +var fileDescriptor_8b197ba64aea1488 = []byte{ + // 272 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0xae, 0x2c, 0x4b, + 0xd5, 0x2f, 0x49, 0x4d, 0xcc, 0xd5, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, + 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x07, 0x49, 0xeb, 0x81, 0xa4, + 0xf5, 0xc0, 0xd2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x39, 0x7d, 0x10, 0x0b, 0xa2, 0x4c, + 0x4a, 0x0a, 0xdd, 0x14, 0xb0, 0x0e, 0xb0, 0x9c, 0xd2, 0x41, 0x46, 0x2e, 0x1e, 0x77, 0x88, 0xa1, + 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0x76, 0x5c, 0x9c, 0x89, 0xa5, 0x25, 0x19, 0xf9, 0x45, 0x99, + 0x25, 0x95, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x52, 0x7a, 0x68, 0xf6, 0xe8, 0x39, 0xc2, + 0x54, 0x38, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x84, 0xd0, 0x22, 0xe4, 0xc3, 0xc5, 0x93, 0x98, + 0x9c, 0x9c, 0x5f, 0x9a, 0x57, 0x12, 0x9f, 0x93, 0x59, 0x5c, 0x22, 0xc1, 0xac, 0xc0, 0xac, 0xc1, + 0x6d, 0xa4, 0x8c, 0x61, 0x44, 0x48, 0x6a, 0x62, 0x6e, 0x58, 0x6a, 0x71, 0x49, 0x66, 0x5e, 0xba, + 0x23, 0x44, 0x3d, 0xd4, 0x2c, 0x6e, 0xa8, 0x76, 0x9f, 0xcc, 0xe2, 0x12, 0x21, 0x65, 0x2e, 0x5e, + 0x98, 0x69, 0x60, 0x52, 0x82, 0x45, 0x81, 0x51, 0x83, 0x25, 0x08, 0x66, 0x85, 0x33, 0x58, 0x9f, + 0xf3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, + 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x69, 0xa6, 0x67, 0x96, 0x64, + 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x7b, 0x47, 0x86, 0xb9, 0xfa, 0xa5, 0x96, 0x94, 0xe7, + 0x17, 0x65, 0xeb, 0x27, 0x67, 0x24, 0x66, 0xe6, 0xe9, 0x57, 0x20, 0x85, 0x49, 0x12, 0x1b, 0x38, + 0x3c, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa8, 0x47, 0xbe, 0x6e, 0x73, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/team/types/module.pulsar.go b/x/team/types/module.pulsar.go index 59d802c8..88832347 100644 --- a/x/team/types/module.pulsar.go +++ b/x/team/types/module.pulsar.go @@ -110,13 +110,13 @@ func (x *fastReflection_Module) Range(f func(protoreflect.FieldDescriptor, proto // a repeated field is populated if it is non-empty. func (x *fastReflection_Module) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "kyve.team.types.Module.authority": + case "kyve.team.Module.authority": return x.Authority != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", fd.FullName())) } } @@ -128,13 +128,13 @@ func (x *fastReflection_Module) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "kyve.team.types.Module.authority": + case "kyve.team.Module.authority": x.Authority = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", fd.FullName())) } } @@ -146,14 +146,14 @@ func (x *fastReflection_Module) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Module) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "kyve.team.types.Module.authority": + case "kyve.team.Module.authority": value := x.Authority return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", descriptor.FullName())) } } @@ -169,13 +169,13 @@ func (x *fastReflection_Module) Get(descriptor protoreflect.FieldDescriptor) pro // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "kyve.team.types.Module.authority": + case "kyve.team.Module.authority": x.Authority = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", fd.FullName())) } } @@ -191,13 +191,13 @@ func (x *fastReflection_Module) Set(fd protoreflect.FieldDescriptor, value proto // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "kyve.team.types.Module.authority": - panic(fmt.Errorf("field authority of message kyve.team.types.Module is not mutable")) + case "kyve.team.Module.authority": + panic(fmt.Errorf("field authority of message kyve.team.Module is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", fd.FullName())) } } @@ -206,13 +206,13 @@ func (x *fastReflection_Module) Mutable(fd protoreflect.FieldDescriptor) protore // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Module) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "kyve.team.types.Module.authority": + case "kyve.team.Module.authority": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.types.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: kyve.team.Module")) } - panic(fmt.Errorf("message kyve.team.types.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message kyve.team.Module does not contain field %s", fd.FullName())) } } @@ -222,7 +222,7 @@ func (x *fastReflection_Module) NewField(fd protoreflect.FieldDescriptor) protor func (x *fastReflection_Module) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in kyve.team.types.Module", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in kyve.team.Module", d.FullName())) } panic("unreachable") } @@ -487,27 +487,25 @@ var File_kyve_team_types_module_proto protoreflect.FileDescriptor var file_kyve_team_types_module_proto_rawDesc = []byte{ 0x0a, 0x1c, 0x6b, 0x79, 0x76, 0x65, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x2f, 0x74, 0x79, 0x70, 0x65, - 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f, - 0x6b, 0x79, 0x76, 0x65, 0x2e, 0x74, 0x65, 0x61, 0x6d, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x1a, - 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x31, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x22, 0x59, 0x0a, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, - 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, - 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x3a, 0x31, 0xba, 0xc0, 0x96, 0xda, 0x01, - 0x2b, 0x0a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4b, 0x59, - 0x56, 0x45, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x2f, - 0x78, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x42, 0xa2, 0x01, 0x0a, - 0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x6b, 0x79, 0x76, 0x65, 0x2e, 0x74, 0x65, 0x61, 0x6d, 0x2e, 0x74, - 0x79, 0x70, 0x65, 0x73, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x50, 0x01, 0x5a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, - 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6b, 0x79, 0x76, 0x65, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x2f, - 0x74, 0x79, 0x70, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x4b, 0x54, 0x54, 0xaa, 0x02, 0x0f, 0x4b, 0x79, - 0x76, 0x65, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x73, 0xca, 0x02, 0x0f, - 0x4b, 0x79, 0x76, 0x65, 0x5c, 0x54, 0x65, 0x61, 0x6d, 0x5c, 0x54, 0x79, 0x70, 0x65, 0x73, 0xe2, - 0x02, 0x1b, 0x4b, 0x79, 0x76, 0x65, 0x5c, 0x54, 0x65, 0x61, 0x6d, 0x5c, 0x54, 0x79, 0x70, 0x65, - 0x73, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x11, - 0x4b, 0x79, 0x76, 0x65, 0x3a, 0x3a, 0x54, 0x65, 0x61, 0x6d, 0x3a, 0x3a, 0x54, 0x79, 0x70, 0x65, - 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, + 0x6b, 0x79, 0x76, 0x65, 0x2e, 0x74, 0x65, 0x61, 0x6d, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, + 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2f, 0x6d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x59, 0x0a, 0x06, 0x4d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, + 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, + 0x69, 0x74, 0x79, 0x3a, 0x31, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x2b, 0x0a, 0x29, 0x67, 0x69, 0x74, + 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x4b, 0x59, 0x56, 0x45, 0x4e, 0x65, 0x74, 0x77, + 0x6f, 0x72, 0x6b, 0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x2f, 0x78, 0x2f, 0x74, 0x65, 0x61, 0x6d, + 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x42, 0x83, 0x01, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x2e, 0x6b, + 0x79, 0x76, 0x65, 0x2e, 0x74, 0x65, 0x61, 0x6d, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, + 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, + 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6b, 0x79, 0x76, 0x65, 0x2f, 0x74, + 0x65, 0x61, 0x6d, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x4b, 0x54, 0x58, 0xaa, + 0x02, 0x09, 0x4b, 0x79, 0x76, 0x65, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0xca, 0x02, 0x09, 0x4b, 0x79, + 0x76, 0x65, 0x5c, 0x54, 0x65, 0x61, 0x6d, 0xe2, 0x02, 0x15, 0x4b, 0x79, 0x76, 0x65, 0x5c, 0x54, + 0x65, 0x61, 0x6d, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, + 0x02, 0x0a, 0x4b, 0x79, 0x76, 0x65, 0x3a, 0x3a, 0x54, 0x65, 0x61, 0x6d, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -524,7 +522,7 @@ func file_kyve_team_types_module_proto_rawDescGZIP() []byte { var file_kyve_team_types_module_proto_msgTypes = make([]protoimpl.MessageInfo, 1) var file_kyve_team_types_module_proto_goTypes = []interface{}{ - (*Module)(nil), // 0: kyve.team.types.Module + (*Module)(nil), // 0: kyve.team.Module } var file_kyve_team_types_module_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type diff --git a/x/team/types/query.pb.go b/x/team/types/query.pb.go index 69ad0984..8a9f4586 100644 --- a/x/team/types/query.pb.go +++ b/x/team/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/team/v1beta1/query.proto +// source: kyve/team/types/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryTeamInfoRequest) Reset() { *m = QueryTeamInfoRequest{} } func (m *QueryTeamInfoRequest) String() string { return proto.CompactTextString(m) } func (*QueryTeamInfoRequest) ProtoMessage() {} func (*QueryTeamInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{0} + return fileDescriptor_ae43329c6b15a5ee, []int{0} } func (m *QueryTeamInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -103,7 +103,7 @@ func (m *QueryTeamInfoResponse) Reset() { *m = QueryTeamInfoResponse{} } func (m *QueryTeamInfoResponse) String() string { return proto.CompactTextString(m) } func (*QueryTeamInfoResponse) ProtoMessage() {} func (*QueryTeamInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{1} + return fileDescriptor_ae43329c6b15a5ee, []int{1} } func (m *QueryTeamInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -231,7 +231,7 @@ func (m *QueryTeamVestingAccountsRequest) Reset() { *m = QueryTeamVestin func (m *QueryTeamVestingAccountsRequest) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingAccountsRequest) ProtoMessage() {} func (*QueryTeamVestingAccountsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{2} + return fileDescriptor_ae43329c6b15a5ee, []int{2} } func (m *QueryTeamVestingAccountsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,7 +270,7 @@ func (m *QueryTeamVestingAccountsResponse) Reset() { *m = QueryTeamVesti func (m *QueryTeamVestingAccountsResponse) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingAccountsResponse) ProtoMessage() {} func (*QueryTeamVestingAccountsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{3} + return fileDescriptor_ae43329c6b15a5ee, []int{3} } func (m *QueryTeamVestingAccountsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -316,7 +316,7 @@ func (m *QueryTeamVestingAccountRequest) Reset() { *m = QueryTeamVesting func (m *QueryTeamVestingAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingAccountRequest) ProtoMessage() {} func (*QueryTeamVestingAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{4} + return fileDescriptor_ae43329c6b15a5ee, []int{4} } func (m *QueryTeamVestingAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *QueryTeamVestingAccountResponse) Reset() { *m = QueryTeamVestin func (m *QueryTeamVestingAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingAccountResponse) ProtoMessage() {} func (*QueryTeamVestingAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{5} + return fileDescriptor_ae43329c6b15a5ee, []int{5} } func (m *QueryTeamVestingAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -408,7 +408,7 @@ func (m *QueryTeamVestingStatusRequest) Reset() { *m = QueryTeamVestingS func (m *QueryTeamVestingStatusRequest) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingStatusRequest) ProtoMessage() {} func (*QueryTeamVestingStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{6} + return fileDescriptor_ae43329c6b15a5ee, []int{6} } func (m *QueryTeamVestingStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -458,7 +458,7 @@ func (m *QueryTeamVestingStatusResponse) Reset() { *m = QueryTeamVesting func (m *QueryTeamVestingStatusResponse) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingStatusResponse) ProtoMessage() {} func (*QueryTeamVestingStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{7} + return fileDescriptor_ae43329c6b15a5ee, []int{7} } func (m *QueryTeamVestingStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -520,7 +520,7 @@ func (m *QueryTeamVestingStatusByTimeRequest) Reset() { *m = QueryTeamVe func (m *QueryTeamVestingStatusByTimeRequest) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingStatusByTimeRequest) ProtoMessage() {} func (*QueryTeamVestingStatusByTimeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{8} + return fileDescriptor_ae43329c6b15a5ee, []int{8} } func (m *QueryTeamVestingStatusByTimeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -577,7 +577,7 @@ func (m *QueryTeamVestingStatusByTimeResponse) Reset() { *m = QueryTeamV func (m *QueryTeamVestingStatusByTimeResponse) String() string { return proto.CompactTextString(m) } func (*QueryTeamVestingStatusByTimeResponse) ProtoMessage() {} func (*QueryTeamVestingStatusByTimeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{9} + return fileDescriptor_ae43329c6b15a5ee, []int{9} } func (m *QueryTeamVestingStatusByTimeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -653,7 +653,7 @@ func (m *QueryVestingStatus) Reset() { *m = QueryVestingStatus{} } func (m *QueryVestingStatus) String() string { return proto.CompactTextString(m) } func (*QueryVestingStatus) ProtoMessage() {} func (*QueryVestingStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{10} + return fileDescriptor_ae43329c6b15a5ee, []int{10} } func (m *QueryVestingStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -769,7 +769,7 @@ func (m *QueryVestingPlan) Reset() { *m = QueryVestingPlan{} } func (m *QueryVestingPlan) String() string { return proto.CompactTextString(m) } func (*QueryVestingPlan) ProtoMessage() {} func (*QueryVestingPlan) Descriptor() ([]byte, []int) { - return fileDescriptor_6dd564523865e528, []int{11} + return fileDescriptor_ae43329c6b15a5ee, []int{11} } func (m *QueryVestingPlan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -855,97 +855,97 @@ func (m *QueryVestingPlan) GetMaximumVestingAmount() uint64 { } func init() { - proto.RegisterType((*QueryTeamInfoRequest)(nil), "kyve.team.v1beta1.QueryTeamInfoRequest") - proto.RegisterType((*QueryTeamInfoResponse)(nil), "kyve.team.v1beta1.QueryTeamInfoResponse") - proto.RegisterType((*QueryTeamVestingAccountsRequest)(nil), "kyve.team.v1beta1.QueryTeamVestingAccountsRequest") - proto.RegisterType((*QueryTeamVestingAccountsResponse)(nil), "kyve.team.v1beta1.QueryTeamVestingAccountsResponse") - proto.RegisterType((*QueryTeamVestingAccountRequest)(nil), "kyve.team.v1beta1.QueryTeamVestingAccountRequest") - proto.RegisterType((*QueryTeamVestingAccountResponse)(nil), "kyve.team.v1beta1.QueryTeamVestingAccountResponse") - proto.RegisterType((*QueryTeamVestingStatusRequest)(nil), "kyve.team.v1beta1.QueryTeamVestingStatusRequest") - proto.RegisterType((*QueryTeamVestingStatusResponse)(nil), "kyve.team.v1beta1.QueryTeamVestingStatusResponse") - proto.RegisterType((*QueryTeamVestingStatusByTimeRequest)(nil), "kyve.team.v1beta1.QueryTeamVestingStatusByTimeRequest") - proto.RegisterType((*QueryTeamVestingStatusByTimeResponse)(nil), "kyve.team.v1beta1.QueryTeamVestingStatusByTimeResponse") - proto.RegisterType((*QueryVestingStatus)(nil), "kyve.team.v1beta1.QueryVestingStatus") - proto.RegisterType((*QueryVestingPlan)(nil), "kyve.team.v1beta1.QueryVestingPlan") -} - -func init() { proto.RegisterFile("kyve/team/v1beta1/query.proto", fileDescriptor_6dd564523865e528) } - -var fileDescriptor_6dd564523865e528 = []byte{ - // 1164 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcf, 0x6f, 0x1b, 0xc5, - 0x17, 0xcf, 0xba, 0xce, 0xaf, 0x97, 0xa4, 0xdf, 0x64, 0xe2, 0x26, 0xae, 0xbf, 0xad, 0x9b, 0x6e, - 0x5a, 0x35, 0xd0, 0xe2, 0x4d, 0x9c, 0x28, 0x45, 0x11, 0x20, 0x25, 0xa5, 0xa0, 0x0a, 0x81, 0xc0, - 0xb4, 0x91, 0xe0, 0xb2, 0x1a, 0xef, 0x4e, 0x9c, 0x91, 0xf7, 0x87, 0xb3, 0x3b, 0x9b, 0xd4, 0xaa, - 0x7a, 0x81, 0x7f, 0x00, 0x89, 0xbf, 0x03, 0x09, 0xce, 0x9c, 0xe0, 0xd4, 0x13, 0xaa, 0xc4, 0x05, - 0x2e, 0x08, 0x25, 0xfc, 0x0b, 0x1c, 0xb8, 0xa1, 0x7d, 0x33, 0xbb, 0xf6, 0x7a, 0xed, 0x36, 0xb9, - 0x71, 0x5b, 0xef, 0xe7, 0x7d, 0xe6, 0xf3, 0x79, 0x6f, 0x66, 0xde, 0x5b, 0xc3, 0xf5, 0x76, 0xf7, - 0x98, 0x19, 0x82, 0x51, 0xd7, 0x38, 0xde, 0x68, 0x32, 0x41, 0x37, 0x8c, 0xa3, 0x88, 0x05, 0xdd, - 0x5a, 0x27, 0xf0, 0x85, 0x4f, 0x16, 0x62, 0xb8, 0x16, 0xc3, 0x35, 0x05, 0x57, 0x4a, 0x2d, 0xbf, - 0xe5, 0x23, 0x6a, 0xc4, 0x4f, 0x32, 0xb0, 0x72, 0xad, 0xe5, 0xfb, 0x2d, 0x87, 0x19, 0xb4, 0xc3, - 0x0d, 0xea, 0x79, 0xbe, 0xa0, 0x82, 0xfb, 0x5e, 0x98, 0xa0, 0x79, 0x15, 0x5c, 0x13, 0x51, 0x7d, - 0x09, 0x4a, 0x9f, 0xc5, 0x9a, 0x8f, 0x19, 0x75, 0x1f, 0x79, 0x07, 0x7e, 0x83, 0x1d, 0x45, 0x2c, - 0x14, 0xfa, 0xef, 0xe3, 0x70, 0x65, 0x00, 0x08, 0x3b, 0xbe, 0x17, 0x32, 0xb2, 0x01, 0xa5, 0x03, - 0x3f, 0xf2, 0x6c, 0x14, 0x31, 0x69, 0x24, 0x0e, 0xfd, 0x80, 0x8b, 0x6e, 0x59, 0x5b, 0xd1, 0xd6, - 0xa6, 0x1b, 0x8b, 0x3d, 0x6c, 0x37, 0x81, 0xc8, 0x2a, 0xcc, 0x35, 0xad, 0x4e, 0x5f, 0x6c, 0x01, - 0x63, 0x67, 0x9b, 0x56, 0xa7, 0x17, 0x54, 0x87, 0x2b, 0xc2, 0x17, 0xd4, 0x31, 0x63, 0x77, 0x26, - 0x75, 0x1c, 0xdf, 0xc2, 0x65, 0xca, 0x97, 0x56, 0xb4, 0xb5, 0x62, 0x63, 0x11, 0xc1, 0xd8, 0xcd, - 0x6e, 0x0a, 0x91, 0x2d, 0x58, 0xe2, 0x61, 0x18, 0x31, 0x3b, 0x47, 0x2a, 0x22, 0xa9, 0x24, 0xd1, - 0x01, 0xd6, 0x0e, 0x5c, 0xa5, 0xc7, 0x94, 0x3b, 0xb4, 0xe9, 0xb0, 0x1c, 0x71, 0x1c, 0x89, 0xcb, - 0x69, 0xc0, 0x00, 0x77, 0x1b, 0x96, 0xa5, 0xcb, 0x34, 0x19, 0x33, 0x60, 0x27, 0x34, 0xb0, 0xc3, - 0xf2, 0x04, 0x32, 0x65, 0x12, 0x69, 0x5a, 0x0d, 0x09, 0xc6, 0x9a, 0x96, 0x43, 0xb9, 0xcb, 0xec, - 0x21, 0xcc, 0x49, 0xa9, 0xa9, 0x02, 0x72, 0xdc, 0xf7, 0xe0, 0xff, 0x3d, 0xbf, 0x79, 0xf6, 0x14, - 0xb2, 0x7b, 0x29, 0xe5, 0xf8, 0x69, 0x65, 0xa9, 0x65, 0xf9, 0x91, 0x27, 0x52, 0xe6, 0x74, 0x5f, - 0x65, 0x77, 0x25, 0x96, 0x70, 0xb6, 0x61, 0x39, 0xf5, 0x3b, 0xc0, 0x02, 0x99, 0x67, 0xe2, 0x36, - 0xcb, 0xcb, 0xd4, 0x76, 0x90, 0x39, 0x33, 0x50, 0xdb, 0xbc, 0x66, 0xc0, 0x8e, 0x22, 0x1e, 0x30, - 0xdb, 0x74, 0x7d, 0x3b, 0x72, 0x98, 0xd9, 0xa4, 0x0e, 0xf5, 0x2c, 0x56, 0x9e, 0x95, 0x9a, 0x09, - 0xfc, 0x31, 0xa2, 0x7b, 0x12, 0x24, 0x35, 0x58, 0xc4, 0x5d, 0x1c, 0xe0, 0xcc, 0x21, 0x67, 0x21, - 0x86, 0x32, 0xf1, 0xfa, 0x4d, 0xb8, 0x91, 0x1e, 0xed, 0x7d, 0x16, 0x0a, 0xee, 0xb5, 0x94, 0x93, - 0x30, 0x39, 0xfe, 0x6d, 0x58, 0x19, 0x1d, 0xa2, 0x2e, 0xc2, 0x87, 0x30, 0xa5, 0x12, 0x0c, 0xcb, - 0xda, 0xca, 0xa5, 0xb5, 0x99, 0xfa, 0xed, 0x5a, 0xee, 0xca, 0xd6, 0xf2, 0x2b, 0xec, 0x15, 0x5f, - 0xfc, 0x71, 0x63, 0xac, 0x91, 0x92, 0xf5, 0x75, 0xa8, 0x8e, 0x10, 0x53, 0x76, 0xc8, 0x65, 0x28, - 0x70, 0x1b, 0x6f, 0x58, 0xb1, 0x51, 0xe0, 0xb6, 0x7e, 0x38, 0x32, 0x83, 0xd4, 0xdd, 0x43, 0x98, - 0x54, 0x02, 0xc8, 0xbb, 0xa0, 0xb9, 0x84, 0xab, 0x1b, 0x70, 0x7d, 0x50, 0xe9, 0x73, 0x41, 0x45, - 0x14, 0x8e, 0xb2, 0xf6, 0xa3, 0x96, 0xcf, 0x26, 0x61, 0x28, 0x6b, 0x37, 0x61, 0x36, 0x90, 0x6c, - 0xd3, 0xa6, 0x82, 0xa9, 0xce, 0x31, 0xa3, 0xde, 0xbd, 0x4f, 0x05, 0x23, 0xf7, 0xa1, 0xd8, 0x71, - 0xa8, 0x87, 0x8d, 0x62, 0xa6, 0xbe, 0x3a, 0xc4, 0x3a, 0x6a, 0xa8, 0xf5, 0x3f, 0x75, 0xa8, 0xd7, - 0x40, 0x02, 0x79, 0x17, 0x26, 0x42, 0x54, 0xc3, 0xb6, 0x31, 0x3c, 0xeb, 0x7e, 0xaa, 0xb2, 0xa6, - 0x48, 0xfa, 0x23, 0x58, 0x1d, 0x6e, 0x7e, 0xaf, 0xfb, 0x98, 0xbb, 0x6c, 0x44, 0xd2, 0x84, 0x40, - 0x51, 0x70, 0x97, 0xa1, 0xdd, 0x62, 0x03, 0x9f, 0xf5, 0x9f, 0x34, 0xb8, 0xf5, 0xea, 0xb5, 0xfe, - 0xfb, 0xe5, 0xf8, 0xf9, 0x12, 0x90, 0x3c, 0x8c, 0x17, 0x0e, 0x1b, 0xca, 0x31, 0x0b, 0x45, 0xdc, - 0x21, 0xdc, 0xf4, 0x9c, 0xc5, 0x17, 0x2e, 0x86, 0xf6, 0x11, 0xd9, 0x45, 0xa0, 0xd7, 0x80, 0x22, - 0xcf, 0xf1, 0xad, 0x76, 0x8f, 0x51, 0xe8, 0x6b, 0x40, 0x4f, 0x14, 0xa6, 0x38, 0x6f, 0x43, 0xd9, - 0x8a, 0x82, 0x80, 0x79, 0xc2, 0xc4, 0x4e, 0x23, 0x1b, 0x8a, 0xa4, 0xc9, 0x89, 0xb0, 0xa4, 0xf0, - 0x07, 0x09, 0xac, 0x98, 0xeb, 0x50, 0x52, 0x2a, 0x59, 0x7b, 0x72, 0x24, 0x10, 0x89, 0x65, 0xfc, - 0xed, 0xc0, 0xd5, 0x80, 0xb9, 0x94, 0x7b, 0xdc, 0x6b, 0x99, 0x91, 0x97, 0xa5, 0xa9, 0x81, 0x90, - 0x06, 0x3c, 0x51, 0xb8, 0xe2, 0xde, 0x86, 0xcb, 0x69, 0xa3, 0x94, 0x04, 0x39, 0x07, 0xe6, 0x92, - 0xfe, 0x28, 0xc3, 0x56, 0x61, 0x4e, 0x96, 0x20, 0xdb, 0xf3, 0x67, 0xf1, 0x65, 0xd2, 0x00, 0xef, - 0xc0, 0xff, 0x92, 0xb5, 0xb2, 0xcd, 0x3d, 0x91, 0x48, 0x02, 0xef, 0xc2, 0x42, 0xaf, 0xcb, 0x66, - 0xbb, 0xf9, 0x7c, 0x0a, 0xa8, 0x60, 0xfd, 0x9f, 0x02, 0xcc, 0x0f, 0x1e, 0x0f, 0xa2, 0xc3, 0xac, - 0xe5, 0xbb, 0x2e, 0xf3, 0x2c, 0xe6, 0x32, 0xb5, 0x77, 0xd3, 0x8d, 0xcc, 0x3b, 0xb9, 0xcd, 0x6d, - 0xe6, 0x61, 0x1d, 0xe3, 0xd2, 0x84, 0x82, 0x06, 0x42, 0x0d, 0xef, 0x05, 0x84, 0x7a, 0xe7, 0x22, - 0x10, 0xf1, 0x34, 0xce, 0xc6, 0x1f, 0x70, 0x8f, 0x87, 0x87, 0xcc, 0xc6, 0x0d, 0x9b, 0x6e, 0x94, - 0xfa, 0x29, 0x1f, 0x28, 0x8c, 0xdc, 0x03, 0x22, 0x59, 0xf2, 0x70, 0x28, 0x91, 0x22, 0x32, 0xe6, - 0x11, 0x91, 0x27, 0x43, 0x6a, 0xe0, 0x51, 0xea, 0x8b, 0x4e, 0x25, 0xc6, 0xe5, 0xe7, 0x47, 0x1f, - 0x21, 0x55, 0xa8, 0xc0, 0x94, 0xe5, 0xd0, 0x93, 0x26, 0xb5, 0xda, 0x6a, 0x73, 0xd2, 0xdf, 0xaa, - 0xe4, 0xf8, 0x9c, 0xec, 0xdf, 0x64, 0x5a, 0x72, 0x7c, 0xad, 0x36, 0x70, 0x0b, 0x96, 0x5c, 0xfa, - 0x94, 0xbb, 0x91, 0x9b, 0xa6, 0xa7, 0xe2, 0xe5, 0x16, 0x95, 0x14, 0x9a, 0xb4, 0x53, 0xc4, 0xea, - 0x7f, 0x4f, 0xc0, 0x38, 0xd6, 0x9e, 0x7c, 0xad, 0xc1, 0x54, 0xf2, 0x2d, 0x45, 0xee, 0x8c, 0xba, - 0x86, 0x03, 0x9f, 0x61, 0x95, 0xb5, 0xd7, 0x07, 0xca, 0x2e, 0xa2, 0xdf, 0xfa, 0xea, 0xd7, 0xbf, - 0xbe, 0x2d, 0x54, 0xc9, 0x35, 0x63, 0xf8, 0xf7, 0x9e, 0xc9, 0x63, 0xe1, 0xef, 0x35, 0x58, 0x1c, - 0x32, 0xd3, 0x48, 0xfd, 0x55, 0x3a, 0xc3, 0x67, 0x64, 0x65, 0xf3, 0x42, 0x1c, 0x65, 0x73, 0x1d, - 0x6d, 0xbe, 0x49, 0xd6, 0x46, 0xd9, 0x4c, 0x8b, 0x9b, 0x58, 0xfb, 0x41, 0x03, 0x92, 0x5f, 0x91, - 0x6c, 0x9c, 0x5f, 0x3d, 0x31, 0x5c, 0xbf, 0x08, 0x45, 0xf9, 0xdd, 0x42, 0xbf, 0x35, 0x72, 0xef, - 0x9c, 0x7e, 0x8d, 0x67, 0xdc, 0x7e, 0x4e, 0xbe, 0xd3, 0x60, 0x21, 0xd7, 0xf6, 0xc9, 0xfa, 0x39, - 0xf4, 0x33, 0xc3, 0xb5, 0xb2, 0x71, 0x01, 0x86, 0x32, 0xbc, 0x89, 0x86, 0xdf, 0x22, 0x77, 0x5f, - 0x67, 0x58, 0xb6, 0x78, 0xe9, 0xf7, 0x17, 0x0d, 0x96, 0x47, 0x8c, 0x29, 0xb2, 0x7d, 0x6e, 0x0f, - 0x99, 0x19, 0x59, 0xb9, 0x7f, 0x61, 0x9e, 0xca, 0x60, 0x0f, 0x33, 0x78, 0x87, 0xec, 0x9c, 0x2f, - 0x03, 0xb3, 0xd9, 0x35, 0xe3, 0x81, 0x8b, 0x99, 0x18, 0xcf, 0xe2, 0xc7, 0xe7, 0x7b, 0x0f, 0x5e, - 0x9c, 0x56, 0xb5, 0x97, 0xa7, 0x55, 0xed, 0xcf, 0xd3, 0xaa, 0xf6, 0xcd, 0x59, 0x75, 0xec, 0xe5, - 0x59, 0x75, 0xec, 0xb7, 0xb3, 0xea, 0xd8, 0x97, 0x6f, 0xb4, 0xb8, 0x38, 0x8c, 0x9a, 0x35, 0xcb, - 0x77, 0x8d, 0x8f, 0xbe, 0xd8, 0x7f, 0xf8, 0x09, 0x13, 0x27, 0x7e, 0xd0, 0x36, 0xac, 0x43, 0xca, - 0x3d, 0xe3, 0xa9, 0x94, 0x13, 0xdd, 0x0e, 0x0b, 0x9b, 0x13, 0xf8, 0x17, 0x69, 0xf3, 0xdf, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xc6, 0xf5, 0xa4, 0x1a, 0xa8, 0x0d, 0x00, 0x00, + proto.RegisterType((*QueryTeamInfoRequest)(nil), "kyve.team.types.QueryTeamInfoRequest") + proto.RegisterType((*QueryTeamInfoResponse)(nil), "kyve.team.types.QueryTeamInfoResponse") + proto.RegisterType((*QueryTeamVestingAccountsRequest)(nil), "kyve.team.types.QueryTeamVestingAccountsRequest") + proto.RegisterType((*QueryTeamVestingAccountsResponse)(nil), "kyve.team.types.QueryTeamVestingAccountsResponse") + proto.RegisterType((*QueryTeamVestingAccountRequest)(nil), "kyve.team.types.QueryTeamVestingAccountRequest") + proto.RegisterType((*QueryTeamVestingAccountResponse)(nil), "kyve.team.types.QueryTeamVestingAccountResponse") + proto.RegisterType((*QueryTeamVestingStatusRequest)(nil), "kyve.team.types.QueryTeamVestingStatusRequest") + proto.RegisterType((*QueryTeamVestingStatusResponse)(nil), "kyve.team.types.QueryTeamVestingStatusResponse") + proto.RegisterType((*QueryTeamVestingStatusByTimeRequest)(nil), "kyve.team.types.QueryTeamVestingStatusByTimeRequest") + proto.RegisterType((*QueryTeamVestingStatusByTimeResponse)(nil), "kyve.team.types.QueryTeamVestingStatusByTimeResponse") + proto.RegisterType((*QueryVestingStatus)(nil), "kyve.team.types.QueryVestingStatus") + proto.RegisterType((*QueryVestingPlan)(nil), "kyve.team.types.QueryVestingPlan") +} + +func init() { proto.RegisterFile("kyve/team/types/query.proto", fileDescriptor_ae43329c6b15a5ee) } + +var fileDescriptor_ae43329c6b15a5ee = []byte{ + // 1162 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xce, 0x3a, 0xce, 0xaf, 0x97, 0xa4, 0x4d, 0x26, 0x6e, 0xe2, 0xba, 0xc5, 0x4d, 0x9c, 0x16, + 0x02, 0x2d, 0xde, 0x24, 0x4d, 0x2b, 0x14, 0x10, 0x52, 0x12, 0x8a, 0x54, 0x21, 0x10, 0x98, 0x36, + 0x12, 0x5c, 0x56, 0xe3, 0xdd, 0x89, 0x33, 0xca, 0xfe, 0x70, 0x76, 0x67, 0x93, 0x5a, 0x55, 0x85, + 0xc4, 0x5f, 0x80, 0xc4, 0x5f, 0x81, 0x04, 0x67, 0x4e, 0x5c, 0x38, 0x55, 0x9c, 0x2a, 0x71, 0x81, + 0x0b, 0xaa, 0x12, 0xfe, 0x09, 0x6e, 0x68, 0xdf, 0xcc, 0xae, 0xbd, 0xbb, 0x36, 0x71, 0x6e, 0xdc, + 0xd6, 0xfb, 0xbd, 0x6f, 0xbe, 0xef, 0xbd, 0x99, 0x79, 0x6f, 0x0d, 0x37, 0x8e, 0x3a, 0x27, 0x4c, + 0x17, 0x8c, 0x3a, 0xba, 0xe8, 0xb4, 0x59, 0xa0, 0x1f, 0x87, 0xcc, 0xef, 0xd4, 0xdb, 0xbe, 0x27, + 0x3c, 0x72, 0x35, 0x02, 0xeb, 0x11, 0x58, 0x47, 0xb0, 0x52, 0x6a, 0x79, 0x2d, 0x0f, 0x31, 0x3d, + 0x7a, 0x92, 0x61, 0x95, 0x9b, 0x2d, 0xcf, 0x6b, 0xd9, 0x4c, 0xa7, 0x6d, 0xae, 0x53, 0xd7, 0xf5, + 0x04, 0x15, 0xdc, 0x73, 0x03, 0x85, 0x56, 0xb2, 0x0a, 0xb8, 0x1e, 0x62, 0xb5, 0x45, 0x28, 0x7d, + 0x11, 0xe9, 0x3d, 0x61, 0xd4, 0x79, 0xec, 0x1e, 0x78, 0x0d, 0x76, 0x1c, 0xb2, 0x40, 0xd4, 0xfe, + 0x1c, 0x83, 0x6b, 0x19, 0x20, 0x68, 0x7b, 0x6e, 0xc0, 0xc8, 0x06, 0x94, 0x0e, 0xbc, 0xd0, 0xb5, + 0x50, 0xc2, 0xa0, 0xa1, 0x38, 0xf4, 0x7c, 0x2e, 0x3a, 0x65, 0x6d, 0x59, 0x5b, 0x9b, 0x6a, 0x2c, + 0x74, 0xb1, 0x9d, 0x18, 0x22, 0xab, 0x30, 0xdb, 0x34, 0xdb, 0x3d, 0xb1, 0x05, 0x8c, 0x9d, 0x69, + 0x9a, 0xed, 0x6e, 0xd0, 0x26, 0x5c, 0x13, 0x9e, 0xa0, 0xb6, 0x11, 0xb9, 0x33, 0xa8, 0x6d, 0x7b, + 0x26, 0x2e, 0x53, 0x1e, 0x5d, 0xd6, 0xd6, 0x8a, 0x8d, 0x05, 0x04, 0x23, 0x37, 0x3b, 0x09, 0x44, + 0xb6, 0x60, 0x91, 0x07, 0x41, 0xc8, 0xac, 0x1c, 0xa9, 0x88, 0xa4, 0x92, 0x44, 0x33, 0xac, 0x6d, + 0xb8, 0x4e, 0x4f, 0x28, 0xb7, 0x69, 0xd3, 0x66, 0x39, 0xe2, 0x18, 0x12, 0x97, 0x92, 0x80, 0x0c, + 0xf7, 0x21, 0x2c, 0x49, 0x97, 0x49, 0x32, 0x86, 0xcf, 0x4e, 0xa9, 0x6f, 0x05, 0xe5, 0x71, 0x64, + 0xca, 0x24, 0x92, 0xb4, 0x1a, 0x12, 0x8c, 0x34, 0x4d, 0x9b, 0x72, 0x87, 0x59, 0x7d, 0x98, 0x13, + 0x52, 0x53, 0x05, 0xe4, 0xb8, 0x1f, 0xc2, 0x8d, 0xae, 0xdf, 0x3c, 0x7b, 0x12, 0xd9, 0xdd, 0x94, + 0x72, 0xfc, 0xa4, 0xb2, 0xd4, 0x34, 0xbd, 0xd0, 0x15, 0x09, 0x73, 0xaa, 0xa7, 0xb2, 0x3b, 0x12, + 0x8b, 0x39, 0x0f, 0x61, 0x29, 0xf1, 0x9b, 0x61, 0x81, 0xcc, 0x33, 0x76, 0x9b, 0xe6, 0xa5, 0x6a, + 0x9b, 0x65, 0x4e, 0x67, 0x6a, 0x9b, 0xd7, 0xf4, 0xd9, 0x71, 0xc8, 0x7d, 0x66, 0x19, 0x8e, 0x67, + 0x85, 0x36, 0x33, 0x9a, 0xd4, 0xa6, 0xae, 0xc9, 0xca, 0x33, 0x52, 0x33, 0x86, 0x3f, 0x45, 0x74, + 0x57, 0x82, 0xa4, 0x0e, 0x0b, 0xb8, 0x8b, 0x19, 0xce, 0x2c, 0x72, 0xe6, 0x23, 0x28, 0x15, 0x5f, + 0x5b, 0x81, 0x5b, 0xc9, 0xd1, 0xde, 0x67, 0x81, 0xe0, 0x6e, 0x4b, 0x39, 0x09, 0xe2, 0xe3, 0xcf, + 0x61, 0x79, 0x70, 0x88, 0xba, 0x08, 0x8f, 0x60, 0x52, 0x25, 0x18, 0x94, 0xb5, 0xe5, 0xd1, 0xb5, + 0xe9, 0xcd, 0xd5, 0x7a, 0xe6, 0xba, 0xd6, 0xf3, 0xfc, 0xdd, 0xe2, 0xcb, 0xbf, 0x6e, 0x8d, 0x34, + 0x12, 0x6a, 0x6d, 0x1d, 0xaa, 0x03, 0xa4, 0x94, 0x19, 0x72, 0x05, 0x0a, 0xdc, 0xc2, 0xfb, 0x55, + 0x6c, 0x14, 0xb8, 0x55, 0x3b, 0x18, 0xe8, 0x3f, 0xf1, 0xb6, 0x07, 0x13, 0x4a, 0x00, 0x79, 0x97, + 0xb2, 0x16, 0x33, 0x6b, 0x3a, 0xbc, 0x91, 0xd5, 0xf9, 0x52, 0x50, 0x11, 0x06, 0x83, 0x8c, 0xfd, + 0xac, 0xe5, 0x73, 0x89, 0x19, 0xca, 0xd8, 0x0a, 0xcc, 0xf8, 0x92, 0x6d, 0x58, 0x54, 0x30, 0xd5, + 0x35, 0xa6, 0xd5, 0xbb, 0x8f, 0xa8, 0x60, 0xe4, 0x01, 0x14, 0xdb, 0x36, 0x75, 0xb1, 0x49, 0x4c, + 0x6f, 0xae, 0xe4, 0x8c, 0xa3, 0x82, 0x5a, 0xfd, 0x73, 0x9b, 0xba, 0x0d, 0x0c, 0x27, 0xef, 0xc3, + 0x78, 0x80, 0x5a, 0xd8, 0x30, 0xfa, 0x65, 0xdc, 0x4b, 0x54, 0xb6, 0x14, 0xa5, 0xf6, 0x18, 0x56, + 0xfb, 0x1b, 0xdf, 0xed, 0x3c, 0xe1, 0x0e, 0x1b, 0x90, 0x30, 0x21, 0x50, 0x14, 0xdc, 0x61, 0x68, + 0xb5, 0xd8, 0xc0, 0xe7, 0xda, 0x2f, 0x1a, 0xdc, 0xfe, 0xef, 0xb5, 0xfe, 0xdf, 0xa5, 0xf8, 0x75, + 0x14, 0x48, 0x1e, 0xc6, 0x4b, 0x86, 0x4d, 0xe4, 0x84, 0x05, 0x22, 0xea, 0x0a, 0x4e, 0x72, 0xba, + 0xa2, 0x4b, 0x16, 0x41, 0xfb, 0x88, 0xec, 0x20, 0xd0, 0x6d, 0x3a, 0xa1, 0x6b, 0x7b, 0xe6, 0x51, + 0x97, 0x51, 0xe8, 0x69, 0x3a, 0x4f, 0x15, 0xa6, 0x38, 0xef, 0x41, 0xd9, 0x0c, 0x7d, 0x9f, 0xb9, + 0xc2, 0xc0, 0xee, 0x22, 0x9b, 0x88, 0xa4, 0xc9, 0x29, 0xb0, 0xa8, 0xf0, 0xbd, 0x18, 0x56, 0xcc, + 0x75, 0x28, 0x29, 0x95, 0xb4, 0x3d, 0x39, 0x06, 0x88, 0xc4, 0x52, 0xfe, 0xb6, 0xe1, 0xba, 0xcf, + 0x1c, 0xca, 0x5d, 0xee, 0xb6, 0x8c, 0xd0, 0x4d, 0xd3, 0xd4, 0x10, 0x48, 0x02, 0x9e, 0x2a, 0x5c, + 0x71, 0xef, 0xc0, 0x95, 0xa4, 0x39, 0x4a, 0x82, 0xec, 0xfd, 0xb3, 0x71, 0x4f, 0x94, 0x61, 0xab, + 0x30, 0x2b, 0x4b, 0x90, 0xee, 0xf3, 0x33, 0xf8, 0x32, 0x6e, 0x7a, 0x6f, 0xc1, 0xd5, 0x78, 0xad, + 0x74, 0x43, 0x8f, 0x25, 0xe2, 0xc0, 0xbb, 0x30, 0xdf, 0xed, 0xac, 0xe9, 0x0e, 0x3e, 0x97, 0x00, + 0x2a, 0xb8, 0xf6, 0x4f, 0x01, 0xe6, 0xb2, 0x87, 0x83, 0xd4, 0x60, 0xc6, 0xf4, 0x1c, 0x87, 0xb9, + 0x26, 0x73, 0x98, 0xda, 0xbb, 0xa9, 0x46, 0xea, 0x9d, 0xdc, 0xe6, 0x23, 0xe6, 0x62, 0x1d, 0xa3, + 0xd2, 0x04, 0x82, 0xfa, 0x42, 0x0d, 0xec, 0x79, 0x84, 0xba, 0xe7, 0xc2, 0x17, 0xd1, 0x04, 0x4e, + 0xc7, 0x1f, 0x70, 0x97, 0x07, 0x87, 0xcc, 0xc2, 0x0d, 0x9b, 0x6a, 0x94, 0x7a, 0x29, 0x1f, 0x2b, + 0x8c, 0xdc, 0x03, 0x22, 0x59, 0xf2, 0x70, 0x28, 0x91, 0x22, 0x32, 0xe6, 0x10, 0x91, 0x27, 0x43, + 0x6a, 0xe0, 0x51, 0xea, 0x89, 0x4e, 0x24, 0xc6, 0xe4, 0x27, 0x47, 0x0f, 0x21, 0x51, 0xa8, 0xc0, + 0xa4, 0x69, 0xd3, 0xd3, 0x26, 0x35, 0x8f, 0xd4, 0xe6, 0x24, 0xbf, 0x55, 0xc9, 0xf1, 0x39, 0xde, + 0xbf, 0x89, 0xa4, 0xe4, 0xf8, 0x5a, 0x6d, 0xe0, 0x16, 0x2c, 0x3a, 0xf4, 0x19, 0x77, 0x42, 0x27, + 0x49, 0x4f, 0xc5, 0xcb, 0x2d, 0x2a, 0x29, 0x34, 0x6e, 0xa3, 0x88, 0x6d, 0xbe, 0x1e, 0x87, 0x31, + 0xac, 0x3d, 0xf9, 0x06, 0x26, 0xe3, 0xcf, 0x27, 0x72, 0xa7, 0xff, 0x1d, 0xcc, 0x7c, 0x77, 0x55, + 0xde, 0xbc, 0x28, 0x4c, 0x36, 0x8f, 0xda, 0xed, 0x6f, 0x7f, 0xff, 0xfb, 0xfb, 0x42, 0x95, 0xdc, + 0xd4, 0xbb, 0x1f, 0x77, 0x27, 0x1b, 0x4d, 0x26, 0xe8, 0x06, 0xfe, 0x30, 0x78, 0x24, 0xfa, 0xa3, + 0x06, 0x0b, 0x7d, 0x46, 0x18, 0x59, 0x1f, 0xac, 0xd2, 0x7f, 0x20, 0x56, 0x36, 0x2e, 0xc1, 0x50, + 0x16, 0xd7, 0xd1, 0xe2, 0x3b, 0x64, 0x6d, 0x90, 0xc5, 0xa4, 0xa6, 0xb1, 0xad, 0x9f, 0x34, 0x20, + 0xf9, 0x15, 0x89, 0x3e, 0xac, 0x76, 0x6c, 0x76, 0x7d, 0x78, 0x82, 0xf2, 0xba, 0x85, 0x5e, 0xeb, + 0xe4, 0xde, 0x90, 0x5e, 0xf5, 0xe7, 0xdc, 0x7a, 0x41, 0x7e, 0xd0, 0x60, 0x3e, 0xd7, 0xe5, 0x49, + 0xfd, 0x42, 0xf5, 0xd4, 0x14, 0xad, 0xe8, 0x43, 0xc7, 0x2b, 0xb3, 0xf7, 0xd1, 0xec, 0xbb, 0xe4, + 0xee, 0x45, 0x66, 0x65, 0x47, 0x97, 0x5e, 0x7f, 0xd3, 0x60, 0x69, 0xc0, 0x44, 0x22, 0x5b, 0x43, + 0x3a, 0x48, 0x0d, 0xc3, 0xca, 0x83, 0x4b, 0xb2, 0x94, 0xfb, 0x5d, 0x74, 0xff, 0x01, 0xd9, 0x1e, + 0xce, 0xbd, 0xd1, 0xec, 0x18, 0xd1, 0x5c, 0xc5, 0x2c, 0xf4, 0xe7, 0xd1, 0xe3, 0x8b, 0xdd, 0xbd, + 0x97, 0x67, 0x55, 0xed, 0xd5, 0x59, 0x55, 0x7b, 0x7d, 0x56, 0xd5, 0xbe, 0x3b, 0xaf, 0x8e, 0xbc, + 0x3a, 0xaf, 0x8e, 0xfc, 0x71, 0x5e, 0x1d, 0xf9, 0xfa, 0xed, 0x16, 0x17, 0x87, 0x61, 0xb3, 0x6e, + 0x7a, 0x8e, 0xfe, 0xc9, 0x57, 0xfb, 0x8f, 0x3e, 0x63, 0xe2, 0xd4, 0xf3, 0x8f, 0x74, 0xf3, 0x90, + 0x72, 0x57, 0x7f, 0xd6, 0xf3, 0x2f, 0xa8, 0x39, 0x8e, 0xff, 0x80, 0xee, 0xff, 0x1b, 0x00, 0x00, + 0xff, 0xff, 0x68, 0x77, 0x5a, 0x19, 0x81, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -982,7 +982,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) TeamInfo(ctx context.Context, in *QueryTeamInfoRequest, opts ...grpc.CallOption) (*QueryTeamInfoResponse, error) { out := new(QueryTeamInfoResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Query/TeamInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Query/TeamInfo", in, out, opts...) if err != nil { return nil, err } @@ -991,7 +991,7 @@ func (c *queryClient) TeamInfo(ctx context.Context, in *QueryTeamInfoRequest, op func (c *queryClient) TeamVestingAccounts(ctx context.Context, in *QueryTeamVestingAccountsRequest, opts ...grpc.CallOption) (*QueryTeamVestingAccountsResponse, error) { out := new(QueryTeamVestingAccountsResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Query/TeamVestingAccounts", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Query/TeamVestingAccounts", in, out, opts...) if err != nil { return nil, err } @@ -1000,7 +1000,7 @@ func (c *queryClient) TeamVestingAccounts(ctx context.Context, in *QueryTeamVest func (c *queryClient) TeamVestingAccount(ctx context.Context, in *QueryTeamVestingAccountRequest, opts ...grpc.CallOption) (*QueryTeamVestingAccountResponse, error) { out := new(QueryTeamVestingAccountResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Query/TeamVestingAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Query/TeamVestingAccount", in, out, opts...) if err != nil { return nil, err } @@ -1009,7 +1009,7 @@ func (c *queryClient) TeamVestingAccount(ctx context.Context, in *QueryTeamVesti func (c *queryClient) TeamVestingStatus(ctx context.Context, in *QueryTeamVestingStatusRequest, opts ...grpc.CallOption) (*QueryTeamVestingStatusResponse, error) { out := new(QueryTeamVestingStatusResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Query/TeamVestingStatus", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Query/TeamVestingStatus", in, out, opts...) if err != nil { return nil, err } @@ -1018,7 +1018,7 @@ func (c *queryClient) TeamVestingStatus(ctx context.Context, in *QueryTeamVestin func (c *queryClient) TeamVestingStatusByTime(ctx context.Context, in *QueryTeamVestingStatusByTimeRequest, opts ...grpc.CallOption) (*QueryTeamVestingStatusByTimeResponse, error) { out := new(QueryTeamVestingStatusByTimeResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Query/TeamVestingStatusByTime", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Query/TeamVestingStatusByTime", in, out, opts...) if err != nil { return nil, err } @@ -1073,7 +1073,7 @@ func _Query_TeamInfo_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Query/TeamInfo", + FullMethod: "/kyve.team.types.Query/TeamInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TeamInfo(ctx, req.(*QueryTeamInfoRequest)) @@ -1091,7 +1091,7 @@ func _Query_TeamVestingAccounts_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Query/TeamVestingAccounts", + FullMethod: "/kyve.team.types.Query/TeamVestingAccounts", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TeamVestingAccounts(ctx, req.(*QueryTeamVestingAccountsRequest)) @@ -1109,7 +1109,7 @@ func _Query_TeamVestingAccount_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Query/TeamVestingAccount", + FullMethod: "/kyve.team.types.Query/TeamVestingAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TeamVestingAccount(ctx, req.(*QueryTeamVestingAccountRequest)) @@ -1127,7 +1127,7 @@ func _Query_TeamVestingStatus_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Query/TeamVestingStatus", + FullMethod: "/kyve.team.types.Query/TeamVestingStatus", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TeamVestingStatus(ctx, req.(*QueryTeamVestingStatusRequest)) @@ -1145,7 +1145,7 @@ func _Query_TeamVestingStatusByTime_Handler(srv interface{}, ctx context.Context } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Query/TeamVestingStatusByTime", + FullMethod: "/kyve.team.types.Query/TeamVestingStatusByTime", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TeamVestingStatusByTime(ctx, req.(*QueryTeamVestingStatusByTimeRequest)) @@ -1154,7 +1154,7 @@ func _Query_TeamVestingStatusByTime_Handler(srv interface{}, ctx context.Context } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.team.v1beta1.Query", + ServiceName: "kyve.team.types.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1179,7 +1179,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/team/v1beta1/query.proto", + Metadata: "kyve/team/types/query.proto", } func (m *QueryTeamInfoRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/team/types/query.pb.gw.go b/x/team/types/query.pb.gw.go index 8ecf3778..37953483 100644 --- a/x/team/types/query.pb.gw.go +++ b/x/team/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: kyve/team/v1beta1/query.proto +// source: kyve/team/types/query.proto /* Package types is a reverse proxy. diff --git a/x/team/types/team.pb.go b/x/team/types/team.pb.go index c2493a0b..d484db61 100644 --- a/x/team/types/team.pb.go +++ b/x/team/types/team.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/team/v1beta1/team.proto +// source: kyve/team/types/team.proto package types @@ -34,7 +34,7 @@ func (m *Authority) Reset() { *m = Authority{} } func (m *Authority) String() string { return proto.CompactTextString(m) } func (*Authority) ProtoMessage() {} func (*Authority) Descriptor() ([]byte, []int) { - return fileDescriptor_a9a907d008be83cf, []int{0} + return fileDescriptor_b00a61fda71ecb03, []int{0} } func (m *Authority) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -102,7 +102,7 @@ func (m *TeamVestingAccount) Reset() { *m = TeamVestingAccount{} } func (m *TeamVestingAccount) String() string { return proto.CompactTextString(m) } func (*TeamVestingAccount) ProtoMessage() {} func (*TeamVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_a9a907d008be83cf, []int{1} + return fileDescriptor_b00a61fda71ecb03, []int{1} } func (m *TeamVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -188,36 +188,35 @@ func (m *TeamVestingAccount) GetRewardsClaimed() uint64 { } func init() { - proto.RegisterType((*Authority)(nil), "kyve.team.v1beta1.Authority") - proto.RegisterType((*TeamVestingAccount)(nil), "kyve.team.v1beta1.TeamVestingAccount") -} - -func init() { proto.RegisterFile("kyve/team/v1beta1/team.proto", fileDescriptor_a9a907d008be83cf) } - -var fileDescriptor_a9a907d008be83cf = []byte{ - // 338 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xc1, 0x4e, 0xc2, 0x40, - 0x10, 0x86, 0x69, 0x45, 0xc4, 0x0d, 0x82, 0xec, 0xa9, 0x31, 0xa6, 0x31, 0x78, 0x50, 0x3c, 0xd0, - 0x10, 0x9f, 0x00, 0x89, 0x27, 0x13, 0x0f, 0x84, 0x90, 0xe0, 0x85, 0x6c, 0xb7, 0x13, 0xd8, 0xb4, - 0xdb, 0x25, 0xed, 0x14, 0xe4, 0x2d, 0x7c, 0x18, 0x1f, 0xc2, 0x23, 0x47, 0x8f, 0x06, 0x5e, 0xc4, - 0xb0, 0xbb, 0x10, 0x13, 0x3d, 0x78, 0x9c, 0xef, 0xff, 0x33, 0xf3, 0xe7, 0x1f, 0x72, 0x19, 0xaf, - 0x16, 0x10, 0x20, 0x30, 0x19, 0x2c, 0xba, 0x21, 0x20, 0xeb, 0xea, 0xa1, 0x33, 0xcf, 0x14, 0x2a, - 0xda, 0xdc, 0xa9, 0x1d, 0x0d, 0xac, 0xda, 0x1a, 0x93, 0xd3, 0x5e, 0x81, 0x33, 0x95, 0x09, 0x5c, - 0xd1, 0x6b, 0x72, 0x86, 0x0a, 0x59, 0x32, 0xc9, 0x60, 0xc9, 0xb2, 0x28, 0xf7, 0x9c, 0x2b, 0xe7, - 0xb6, 0x3c, 0xa8, 0x69, 0x38, 0x30, 0x8c, 0xde, 0x90, 0x86, 0x95, 0x27, 0x3c, 0x61, 0x42, 0x42, - 0xe4, 0xb9, 0xda, 0x56, 0xb7, 0xb8, 0x6f, 0x68, 0xeb, 0xdd, 0x25, 0x74, 0x08, 0x4c, 0x8e, 0x20, - 0x47, 0x91, 0x4e, 0x7b, 0x9c, 0xab, 0x22, 0x45, 0x5a, 0x27, 0xae, 0x88, 0xec, 0x66, 0x57, 0x44, - 0xb4, 0x4d, 0xce, 0xcd, 0x51, 0x96, 0x24, 0x8a, 0x33, 0x14, 0x2a, 0xb5, 0x0b, 0x1b, 0x9a, 0xf7, - 0x0e, 0x98, 0xb6, 0x48, 0x8d, 0x2b, 0x29, 0x21, 0xe5, 0x20, 0x21, 0x45, 0xef, 0xc8, 0xc4, 0xfb, - 0xc9, 0xe8, 0x05, 0xa9, 0xf2, 0x84, 0x2d, 0x43, 0xc6, 0x63, 0xaf, 0xac, 0xf5, 0xc3, 0xbc, 0x3b, - 0x55, 0xa4, 0x89, 0xe2, 0x31, 0x44, 0x87, 0xec, 0xc7, 0xe6, 0xd4, 0x9e, 0xdb, 0xf0, 0xf4, 0x8e, - 0x34, 0x13, 0x96, 0xe3, 0xde, 0x36, 0x41, 0x21, 0xc1, 0xab, 0x18, 0xef, 0x4e, 0xb0, 0xbe, 0xa1, - 0x90, 0xf0, 0xbb, 0xb6, 0x93, 0xff, 0xd5, 0x56, 0xfd, 0xab, 0xb6, 0x87, 0xfe, 0xc7, 0xc6, 0x77, - 0xd6, 0x1b, 0xdf, 0xf9, 0xda, 0xf8, 0xce, 0xdb, 0xd6, 0x2f, 0xad, 0xb7, 0x7e, 0xe9, 0x73, 0xeb, - 0x97, 0x5e, 0xda, 0x53, 0x81, 0xb3, 0x22, 0xec, 0x70, 0x25, 0x83, 0xa7, 0xf1, 0xe8, 0xf1, 0x19, - 0x70, 0xa9, 0xb2, 0x38, 0xe0, 0x33, 0x26, 0xd2, 0xe0, 0xd5, 0xbc, 0x1d, 0x57, 0x73, 0xc8, 0xc3, - 0x8a, 0x7e, 0xf8, 0xfd, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xc5, 0x6b, 0x77, 0x10, 0x02, - 0x00, 0x00, + proto.RegisterType((*Authority)(nil), "kyve.team.types.Authority") + proto.RegisterType((*TeamVestingAccount)(nil), "kyve.team.types.TeamVestingAccount") +} + +func init() { proto.RegisterFile("kyve/team/types/team.proto", fileDescriptor_b00a61fda71ecb03) } + +var fileDescriptor_b00a61fda71ecb03 = []byte{ + // 333 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xbf, 0x4e, 0x32, 0x41, + 0x14, 0xc5, 0xd9, 0xfd, 0xf8, 0x10, 0x27, 0x08, 0x3a, 0xd5, 0x86, 0x62, 0x63, 0xb0, 0x50, 0x2c, + 0xd8, 0xc2, 0x27, 0x40, 0x62, 0x65, 0x62, 0x41, 0x08, 0x09, 0x36, 0x64, 0x98, 0xbd, 0x81, 0xc9, + 0xce, 0x1f, 0xb2, 0x7b, 0x57, 0xe4, 0x2d, 0x7c, 0x18, 0x1f, 0xc2, 0x92, 0xd2, 0xd2, 0xc0, 0x8b, + 0x18, 0x66, 0x87, 0x0d, 0x89, 0x16, 0x76, 0x33, 0xbf, 0x73, 0x72, 0xef, 0xc9, 0xb9, 0xa4, 0x9d, + 0xac, 0x5f, 0x20, 0x42, 0x60, 0x2a, 0xc2, 0xf5, 0x12, 0x32, 0xfb, 0xec, 0x2d, 0x53, 0x83, 0x86, + 0xb6, 0xf6, 0x5a, 0xcf, 0x02, 0xab, 0x75, 0x26, 0xe4, 0xb4, 0x9f, 0xe3, 0xc2, 0xa4, 0x02, 0xd7, + 0xf4, 0x8a, 0x9c, 0xa1, 0x41, 0x26, 0xa7, 0x29, 0xac, 0x58, 0x1a, 0x67, 0x81, 0x77, 0xe9, 0xdd, + 0x54, 0x87, 0x0d, 0x0b, 0x87, 0x05, 0xa3, 0xd7, 0xa4, 0xe5, 0xe4, 0x29, 0x97, 0x4c, 0x28, 0x88, + 0x03, 0xdf, 0xda, 0x9a, 0x0e, 0x0f, 0x0a, 0xda, 0x79, 0xf7, 0x09, 0x1d, 0x01, 0x53, 0x63, 0xc8, + 0x50, 0xe8, 0x79, 0x9f, 0x73, 0x93, 0x6b, 0xa4, 0x4d, 0xe2, 0x8b, 0xd8, 0x4d, 0xf6, 0x45, 0x4c, + 0xbb, 0xe4, 0xbc, 0x58, 0xca, 0xa4, 0x34, 0x9c, 0xa1, 0x30, 0xda, 0x0d, 0x6c, 0x59, 0xde, 0x2f, + 0x31, 0xed, 0x90, 0x06, 0x37, 0x4a, 0x81, 0xe6, 0xa0, 0x40, 0x63, 0xf0, 0xaf, 0x88, 0x77, 0xcc, + 0x68, 0x9b, 0xd4, 0xb9, 0x64, 0xab, 0x19, 0xe3, 0x49, 0x50, 0xb5, 0x7a, 0xf9, 0xdf, 0xaf, 0xca, + 0xb5, 0x34, 0x3c, 0x81, 0xb8, 0xcc, 0xfe, 0xbf, 0x58, 0x75, 0xe0, 0x2e, 0x3c, 0xbd, 0x25, 0x17, + 0x92, 0x65, 0x78, 0xb0, 0x4d, 0x51, 0x28, 0x08, 0x6a, 0x85, 0x77, 0x2f, 0x38, 0xdf, 0x48, 0x28, + 0xf8, 0x59, 0xdb, 0xc9, 0xdf, 0x6a, 0xab, 0xff, 0x56, 0xdb, 0xfd, 0xe0, 0x63, 0x1b, 0x7a, 0x9b, + 0x6d, 0xe8, 0x7d, 0x6d, 0x43, 0xef, 0x6d, 0x17, 0x56, 0x36, 0xbb, 0xb0, 0xf2, 0xb9, 0x0b, 0x2b, + 0xcf, 0xdd, 0xb9, 0xc0, 0x45, 0x3e, 0xeb, 0x71, 0xa3, 0xa2, 0xc7, 0xc9, 0xf8, 0xe1, 0x09, 0x70, + 0x65, 0xd2, 0x24, 0xe2, 0x0b, 0x26, 0x74, 0xf4, 0x7a, 0x74, 0xf2, 0x59, 0xcd, 0x9e, 0xfb, 0xee, + 0x3b, 0x00, 0x00, 0xff, 0xff, 0xda, 0xf0, 0x29, 0xe5, 0x0c, 0x02, 0x00, 0x00, } func (m *Authority) Marshal() (dAtA []byte, err error) { diff --git a/x/team/types/tx.pb.go b/x/team/types/tx.pb.go index 0ebbbe8e..9dd31b7a 100644 --- a/x/team/types/tx.pb.go +++ b/x/team/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: kyve/team/v1beta1/tx.proto +// source: kyve/team/types/tx.proto package types @@ -45,7 +45,7 @@ func (m *MsgClaimUnlocked) Reset() { *m = MsgClaimUnlocked{} } func (m *MsgClaimUnlocked) String() string { return proto.CompactTextString(m) } func (*MsgClaimUnlocked) ProtoMessage() {} func (*MsgClaimUnlocked) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{0} + return fileDescriptor_0c0f1ce31cb24a74, []int{0} } func (m *MsgClaimUnlocked) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -110,7 +110,7 @@ func (m *MsgClaimUnlockedResponse) Reset() { *m = MsgClaimUnlockedRespon func (m *MsgClaimUnlockedResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimUnlockedResponse) ProtoMessage() {} func (*MsgClaimUnlockedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{1} + return fileDescriptor_0c0f1ce31cb24a74, []int{1} } func (m *MsgClaimUnlockedResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -153,7 +153,7 @@ func (m *MsgClaimAuthorityRewards) Reset() { *m = MsgClaimAuthorityRewar func (m *MsgClaimAuthorityRewards) String() string { return proto.CompactTextString(m) } func (*MsgClaimAuthorityRewards) ProtoMessage() {} func (*MsgClaimAuthorityRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{2} + return fileDescriptor_0c0f1ce31cb24a74, []int{2} } func (m *MsgClaimAuthorityRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -211,7 +211,7 @@ func (m *MsgClaimAuthorityRewardsResponse) Reset() { *m = MsgClaimAuthor func (m *MsgClaimAuthorityRewardsResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimAuthorityRewardsResponse) ProtoMessage() {} func (*MsgClaimAuthorityRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{3} + return fileDescriptor_0c0f1ce31cb24a74, []int{3} } func (m *MsgClaimAuthorityRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ func (m *MsgClaimAccountRewards) Reset() { *m = MsgClaimAccountRewards{} func (m *MsgClaimAccountRewards) String() string { return proto.CompactTextString(m) } func (*MsgClaimAccountRewards) ProtoMessage() {} func (*MsgClaimAccountRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{4} + return fileDescriptor_0c0f1ce31cb24a74, []int{4} } func (m *MsgClaimAccountRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -321,7 +321,7 @@ func (m *MsgClaimAccountRewardsResponse) Reset() { *m = MsgClaimAccountR func (m *MsgClaimAccountRewardsResponse) String() string { return proto.CompactTextString(m) } func (*MsgClaimAccountRewardsResponse) ProtoMessage() {} func (*MsgClaimAccountRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{5} + return fileDescriptor_0c0f1ce31cb24a74, []int{5} } func (m *MsgClaimAccountRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -364,7 +364,7 @@ func (m *MsgClawback) Reset() { *m = MsgClawback{} } func (m *MsgClawback) String() string { return proto.CompactTextString(m) } func (*MsgClawback) ProtoMessage() {} func (*MsgClawback) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{6} + return fileDescriptor_0c0f1ce31cb24a74, []int{6} } func (m *MsgClawback) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -422,7 +422,7 @@ func (m *MsgClawbackResponse) Reset() { *m = MsgClawbackResponse{} } func (m *MsgClawbackResponse) String() string { return proto.CompactTextString(m) } func (*MsgClawbackResponse) ProtoMessage() {} func (*MsgClawbackResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{7} + return fileDescriptor_0c0f1ce31cb24a74, []int{7} } func (m *MsgClawbackResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -465,7 +465,7 @@ func (m *MsgCreateTeamVestingAccount) Reset() { *m = MsgCreateTeamVestin func (m *MsgCreateTeamVestingAccount) String() string { return proto.CompactTextString(m) } func (*MsgCreateTeamVestingAccount) ProtoMessage() {} func (*MsgCreateTeamVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{8} + return fileDescriptor_0c0f1ce31cb24a74, []int{8} } func (m *MsgCreateTeamVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,7 +523,7 @@ func (m *MsgCreateTeamVestingAccountResponse) Reset() { *m = MsgCreateTe func (m *MsgCreateTeamVestingAccountResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateTeamVestingAccountResponse) ProtoMessage() {} func (*MsgCreateTeamVestingAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ad042ec4c659ded, []int{9} + return fileDescriptor_0c0f1ce31cb24a74, []int{9} } func (m *MsgCreateTeamVestingAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -553,58 +553,58 @@ func (m *MsgCreateTeamVestingAccountResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgCreateTeamVestingAccountResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgClaimUnlocked)(nil), "kyve.team.v1beta1.MsgClaimUnlocked") - proto.RegisterType((*MsgClaimUnlockedResponse)(nil), "kyve.team.v1beta1.MsgClaimUnlockedResponse") - proto.RegisterType((*MsgClaimAuthorityRewards)(nil), "kyve.team.v1beta1.MsgClaimAuthorityRewards") - proto.RegisterType((*MsgClaimAuthorityRewardsResponse)(nil), "kyve.team.v1beta1.MsgClaimAuthorityRewardsResponse") - proto.RegisterType((*MsgClaimAccountRewards)(nil), "kyve.team.v1beta1.MsgClaimAccountRewards") - proto.RegisterType((*MsgClaimAccountRewardsResponse)(nil), "kyve.team.v1beta1.MsgClaimAccountRewardsResponse") - proto.RegisterType((*MsgClawback)(nil), "kyve.team.v1beta1.MsgClawback") - proto.RegisterType((*MsgClawbackResponse)(nil), "kyve.team.v1beta1.MsgClawbackResponse") - proto.RegisterType((*MsgCreateTeamVestingAccount)(nil), "kyve.team.v1beta1.MsgCreateTeamVestingAccount") - proto.RegisterType((*MsgCreateTeamVestingAccountResponse)(nil), "kyve.team.v1beta1.MsgCreateTeamVestingAccountResponse") -} - -func init() { proto.RegisterFile("kyve/team/v1beta1/tx.proto", fileDescriptor_1ad042ec4c659ded) } - -var fileDescriptor_1ad042ec4c659ded = []byte{ - // 568 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x4f, 0x6f, 0xd3, 0x4e, - 0x10, 0xed, 0xa6, 0xf9, 0x55, 0xed, 0xfc, 0xa0, 0x14, 0x97, 0x16, 0xb3, 0x48, 0x56, 0x94, 0x0a, - 0xd4, 0x14, 0x61, 0x2b, 0x54, 0xea, 0x81, 0x5b, 0x5a, 0x71, 0x42, 0xe5, 0x10, 0xa0, 0x12, 0x5c, - 0xaa, 0xcd, 0x7a, 0xe5, 0xac, 0x12, 0x7b, 0x23, 0xef, 0x26, 0x69, 0x6e, 0xd0, 0x4f, 0xc0, 0x47, - 0xa9, 0x50, 0x0f, 0x88, 0x13, 0x47, 0x8e, 0x15, 0x27, 0x8e, 0x28, 0x39, 0xf4, 0x6b, 0x20, 0xc7, - 0xce, 0x86, 0xfc, 0x71, 0x68, 0x03, 0xe2, 0x14, 0xcd, 0xbc, 0x37, 0x33, 0xef, 0x65, 0xe4, 0x59, - 0xc0, 0xb5, 0x4e, 0x8b, 0x39, 0x8a, 0x11, 0xdf, 0x69, 0x15, 0x2b, 0x4c, 0x91, 0xa2, 0xa3, 0x4e, - 0xec, 0x46, 0x28, 0x94, 0x30, 0x6e, 0x47, 0x98, 0x1d, 0x61, 0x76, 0x82, 0xe1, 0xbb, 0x54, 0x48, - 0x5f, 0x48, 0xc7, 0x97, 0x9e, 0xd3, 0x2a, 0x46, 0x3f, 0x31, 0x17, 0xdf, 0x8b, 0x81, 0xe3, 0x7e, - 0xe4, 0xc4, 0x41, 0x0c, 0xe5, 0x3f, 0x23, 0x58, 0x3b, 0x94, 0xde, 0x41, 0x9d, 0x70, 0xff, 0x75, - 0x50, 0x17, 0xb4, 0xc6, 0x5c, 0x63, 0x0f, 0x56, 0x48, 0x53, 0x55, 0x45, 0xc8, 0x55, 0xc7, 0x44, - 0x39, 0xb4, 0xbd, 0xb2, 0x6f, 0x7e, 0x3b, 0x7f, 0x7c, 0x27, 0xa9, 0x2c, 0xb9, 0x6e, 0xc8, 0xa4, - 0x7c, 0xa9, 0x42, 0x1e, 0x78, 0xe5, 0x21, 0xd5, 0x58, 0x85, 0x0c, 0x77, 0xcd, 0x4c, 0x0e, 0x6d, - 0x67, 0xcb, 0x19, 0xee, 0x1a, 0x9b, 0xb0, 0x44, 0x7c, 0xd1, 0x0c, 0x94, 0xb9, 0xd8, 0xcf, 0x25, - 0x51, 0xd4, 0x3f, 0x64, 0x94, 0x37, 0x38, 0x0b, 0x94, 0x99, 0xfd, 0x5d, 0x7f, 0x4d, 0x7d, 0xba, - 0x7a, 0x7a, 0x79, 0xb6, 0x33, 0x9c, 0x97, 0xc7, 0x60, 0x8e, 0x6b, 0x2f, 0x33, 0xd9, 0x10, 0x81, - 0x64, 0xf9, 0x8f, 0x68, 0x08, 0x96, 0x06, 0x15, 0x65, 0xd6, 0x26, 0xa1, 0x2b, 0xe7, 0x36, 0x38, - 0x34, 0x94, 0x49, 0x37, 0xb4, 0x38, 0xbf, 0xa1, 0x3c, 0xe4, 0xd2, 0x34, 0x6b, 0x63, 0x5f, 0x10, - 0x6c, 0x6a, 0x12, 0xa5, 0xd1, 0xfc, 0x3f, 0xb5, 0xf5, 0xaf, 0xf7, 0x96, 0x03, 0x6b, 0xba, 0x03, - 0x6d, 0xf2, 0x3d, 0x82, 0xff, 0x63, 0x4a, 0xbb, 0x42, 0x68, 0xed, 0xaf, 0x39, 0xc3, 0xb0, 0x4c, - 0x93, 0x9e, 0x89, 0x37, 0x1d, 0x4f, 0xa8, 0xdc, 0x80, 0xf5, 0x5f, 0x24, 0x68, 0x69, 0xe7, 0x08, - 0xee, 0x47, 0xf9, 0x90, 0x11, 0xc5, 0x5e, 0x31, 0xe2, 0x1f, 0x31, 0xa9, 0x78, 0xe0, 0x25, 0x4e, - 0xe6, 0x96, 0x5a, 0x80, 0x35, 0x25, 0x14, 0xa9, 0x1f, 0x93, 0x7a, 0x5d, 0x50, 0xa2, 0xb8, 0x08, - 0x12, 0xe1, 0xb7, 0xfa, 0xf9, 0x92, 0x4e, 0x1b, 0x79, 0xb8, 0x41, 0x85, 0xef, 0xb3, 0x80, 0x32, - 0x9f, 0xe9, 0x2d, 0x8d, 0xe4, 0x26, 0xdc, 0x3c, 0x80, 0xad, 0x19, 0xaa, 0x07, 0xee, 0x9e, 0x7c, - 0xca, 0xc2, 0xe2, 0xa1, 0xf4, 0x0c, 0x02, 0x37, 0x47, 0x6f, 0xc2, 0x96, 0x3d, 0x71, 0x70, 0xec, - 0xf1, 0x8f, 0x0f, 0x3f, 0xba, 0x02, 0x69, 0x30, 0xca, 0x28, 0xc3, 0xb2, 0xde, 0xaf, 0x95, 0x5a, - 0xd8, 0xc7, 0xf1, 0xc3, 0xd9, 0xb8, 0xee, 0x79, 0x8a, 0xc0, 0x4c, 0xdd, 0x8c, 0x9d, 0xd2, 0x24, - 0x85, 0x8f, 0xf7, 0xae, 0xc7, 0xd7, 0x22, 0x3a, 0xb0, 0x31, 0xfd, 0xec, 0xcc, 0xfa, 0x7b, 0xc6, - 0xc9, 0x78, 0xf7, 0x1a, 0x64, 0x3d, 0x5a, 0xc2, 0xfa, 0xb4, 0xc3, 0x50, 0x98, 0xd5, 0x6b, 0x84, - 0x8a, 0x8b, 0x57, 0xa6, 0x0e, 0x86, 0xe2, 0xff, 0xde, 0x5d, 0x9e, 0xed, 0xa0, 0xfd, 0x83, 0xaf, - 0x5d, 0x0b, 0x5d, 0x74, 0x2d, 0xf4, 0xa3, 0x6b, 0xa1, 0x0f, 0x3d, 0x6b, 0xe1, 0xa2, 0x67, 0x2d, - 0x7c, 0xef, 0x59, 0x0b, 0x6f, 0x0b, 0x1e, 0x57, 0xd5, 0x66, 0xc5, 0xa6, 0xc2, 0x77, 0x9e, 0xbf, - 0x39, 0x7a, 0xf6, 0x82, 0xa9, 0xb6, 0x08, 0x6b, 0x0e, 0xad, 0x12, 0x1e, 0x38, 0x27, 0xf1, 0x0b, - 0xa7, 0x3a, 0x0d, 0x26, 0x2b, 0x4b, 0xfd, 0x67, 0x69, 0xf7, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x04, 0xce, 0xde, 0x1c, 0xfb, 0x06, 0x00, 0x00, + proto.RegisterType((*MsgClaimUnlocked)(nil), "kyve.team.types.MsgClaimUnlocked") + proto.RegisterType((*MsgClaimUnlockedResponse)(nil), "kyve.team.types.MsgClaimUnlockedResponse") + proto.RegisterType((*MsgClaimAuthorityRewards)(nil), "kyve.team.types.MsgClaimAuthorityRewards") + proto.RegisterType((*MsgClaimAuthorityRewardsResponse)(nil), "kyve.team.types.MsgClaimAuthorityRewardsResponse") + proto.RegisterType((*MsgClaimAccountRewards)(nil), "kyve.team.types.MsgClaimAccountRewards") + proto.RegisterType((*MsgClaimAccountRewardsResponse)(nil), "kyve.team.types.MsgClaimAccountRewardsResponse") + proto.RegisterType((*MsgClawback)(nil), "kyve.team.types.MsgClawback") + proto.RegisterType((*MsgClawbackResponse)(nil), "kyve.team.types.MsgClawbackResponse") + proto.RegisterType((*MsgCreateTeamVestingAccount)(nil), "kyve.team.types.MsgCreateTeamVestingAccount") + proto.RegisterType((*MsgCreateTeamVestingAccountResponse)(nil), "kyve.team.types.MsgCreateTeamVestingAccountResponse") +} + +func init() { proto.RegisterFile("kyve/team/types/tx.proto", fileDescriptor_0c0f1ce31cb24a74) } + +var fileDescriptor_0c0f1ce31cb24a74 = []byte{ + // 565 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xc1, 0x6e, 0xd3, 0x4c, + 0x10, 0xce, 0x26, 0xf9, 0xab, 0x76, 0x7e, 0x68, 0x2b, 0x97, 0x16, 0x63, 0x90, 0x15, 0x02, 0x88, + 0xa6, 0x02, 0x5b, 0x05, 0xc4, 0x81, 0x5b, 0x5a, 0x71, 0x42, 0xed, 0x21, 0x40, 0x25, 0x90, 0x50, + 0xb5, 0x59, 0xaf, 0x9c, 0x55, 0xb2, 0xde, 0xc8, 0xbb, 0x69, 0x9a, 0x0b, 0x02, 0x9e, 0x80, 0x77, + 0xe0, 0x05, 0x2a, 0xd4, 0x13, 0x27, 0x8e, 0x1c, 0x2b, 0x4e, 0x1c, 0x51, 0x72, 0xe8, 0x6b, 0x20, + 0x3b, 0xce, 0xa6, 0x49, 0xe3, 0xb6, 0x04, 0xc4, 0x29, 0x9a, 0xf9, 0xbe, 0x99, 0xf9, 0xbe, 0x8c, + 0x3c, 0x0b, 0x66, 0xbd, 0xb3, 0x47, 0x5d, 0x45, 0x31, 0x77, 0x55, 0xa7, 0x49, 0xa5, 0xab, 0xf6, + 0x9d, 0x66, 0x28, 0x94, 0x30, 0x16, 0x22, 0xc4, 0x89, 0x10, 0x27, 0x46, 0xac, 0xab, 0x44, 0x48, + 0x2e, 0xa4, 0xcb, 0xa5, 0xef, 0xee, 0xad, 0x47, 0x3f, 0x7d, 0xa6, 0x75, 0xad, 0x0f, 0xec, 0xc6, + 0x91, 0xdb, 0x0f, 0xfa, 0x50, 0xf1, 0x0b, 0x82, 0xc5, 0x2d, 0xe9, 0x6f, 0x36, 0x30, 0xe3, 0x2f, + 0x83, 0x86, 0x20, 0x75, 0xea, 0x19, 0x8f, 0x61, 0x0e, 0xb7, 0x54, 0x4d, 0x84, 0x4c, 0x75, 0x4c, + 0x54, 0x40, 0xab, 0x73, 0x1b, 0xe6, 0xf7, 0xc3, 0xfb, 0x57, 0x92, 0xca, 0xb2, 0xe7, 0x85, 0x54, + 0xca, 0xe7, 0x2a, 0x64, 0x81, 0x5f, 0x19, 0x52, 0x8d, 0x79, 0xc8, 0x32, 0xcf, 0xcc, 0x16, 0xd0, + 0x6a, 0xbe, 0x92, 0x65, 0x9e, 0xb1, 0x02, 0x33, 0x98, 0x8b, 0x56, 0xa0, 0xcc, 0x5c, 0x9c, 0x4b, + 0xa2, 0xa8, 0x7f, 0x48, 0x09, 0x6b, 0x32, 0x1a, 0x28, 0x33, 0x7f, 0x5e, 0x7f, 0x4d, 0x7d, 0x32, + 0xff, 0xe1, 0xf8, 0x60, 0x6d, 0x38, 0xaf, 0x68, 0x81, 0x39, 0xae, 0xbd, 0x42, 0x65, 0x53, 0x04, + 0x92, 0x16, 0x3f, 0xa3, 0x21, 0x58, 0x1e, 0x54, 0x54, 0x68, 0x1b, 0x87, 0x9e, 0x9c, 0xda, 0xe0, + 0xd0, 0x50, 0x36, 0xdd, 0x50, 0x6e, 0x7a, 0x43, 0x45, 0x28, 0xa4, 0x69, 0xd6, 0xc6, 0xbe, 0x22, + 0x58, 0xd1, 0x24, 0x42, 0xa2, 0xf9, 0x7f, 0x6a, 0xeb, 0x5f, 0xef, 0xad, 0x00, 0xf6, 0x64, 0x07, + 0xda, 0xe4, 0x7b, 0x04, 0xff, 0xf7, 0x29, 0xed, 0x2a, 0x26, 0xf5, 0xbf, 0xe6, 0xcc, 0x82, 0x59, + 0x92, 0xf4, 0x4c, 0xbc, 0xe9, 0xf8, 0x94, 0xca, 0x65, 0x58, 0x3a, 0x21, 0x41, 0x4b, 0x3b, 0x44, + 0x70, 0x3d, 0xca, 0x87, 0x14, 0x2b, 0xfa, 0x82, 0x62, 0xbe, 0x43, 0xa5, 0x62, 0x81, 0x9f, 0x38, + 0x99, 0x5a, 0x6a, 0x09, 0x16, 0x95, 0x50, 0xb8, 0xb1, 0x8b, 0x1b, 0x0d, 0x41, 0xb0, 0x62, 0x22, + 0x48, 0x84, 0x2f, 0xc4, 0xf9, 0xb2, 0x4e, 0x1b, 0x45, 0xb8, 0x44, 0x04, 0xe7, 0x34, 0x20, 0x94, + 0x53, 0xbd, 0xa5, 0x91, 0xdc, 0x29, 0x37, 0x77, 0xe0, 0xd6, 0x19, 0xaa, 0x07, 0xee, 0x1e, 0x7c, + 0xca, 0x43, 0x6e, 0x4b, 0xfa, 0xc6, 0x1b, 0xb8, 0x3c, 0x7a, 0x13, 0x6e, 0x3a, 0x63, 0xe7, 0xc6, + 0x19, 0xff, 0xf4, 0xac, 0xd2, 0xb9, 0x94, 0xc1, 0x18, 0x63, 0x1b, 0x66, 0xf5, 0x6e, 0x6f, 0xa4, + 0x94, 0xc5, 0xa8, 0x75, 0xfb, 0x2c, 0x54, 0xf7, 0x7b, 0x0b, 0x66, 0xea, 0x42, 0xee, 0x4d, 0xec, + 0x90, 0xc2, 0xb6, 0x1e, 0xfd, 0x0e, 0x5b, 0xcf, 0x6f, 0xc1, 0xf2, 0xe4, 0x4b, 0x93, 0xfe, 0x9f, + 0x8c, 0x53, 0xad, 0xf5, 0x0b, 0x53, 0xf5, 0x58, 0x01, 0x4b, 0x93, 0xee, 0xc0, 0xdd, 0xf4, 0x4e, + 0x23, 0x44, 0xcb, 0xbd, 0x20, 0x71, 0x30, 0xd0, 0xfa, 0xef, 0xdd, 0xf1, 0xc1, 0x1a, 0xda, 0xd8, + 0xfc, 0xd6, 0xb5, 0xd1, 0x51, 0xd7, 0x46, 0x3f, 0xbb, 0x36, 0xfa, 0xd8, 0xb3, 0x33, 0x47, 0x3d, + 0x3b, 0xf3, 0xa3, 0x67, 0x67, 0x5e, 0x97, 0x7c, 0xa6, 0x6a, 0xad, 0xaa, 0x43, 0x04, 0x77, 0x9f, + 0xbd, 0xda, 0x79, 0xba, 0x4d, 0x55, 0x5b, 0x84, 0x75, 0x97, 0xd4, 0x30, 0x0b, 0xdc, 0xfd, 0x13, + 0x0f, 0x59, 0x75, 0x26, 0x7e, 0x81, 0x1e, 0xfe, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x1e, 0x0f, 0xed, + 0x05, 0xe2, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -641,7 +641,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) ClaimUnlocked(ctx context.Context, in *MsgClaimUnlocked, opts ...grpc.CallOption) (*MsgClaimUnlockedResponse, error) { out := new(MsgClaimUnlockedResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Msg/ClaimUnlocked", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Msg/ClaimUnlocked", in, out, opts...) if err != nil { return nil, err } @@ -650,7 +650,7 @@ func (c *msgClient) ClaimUnlocked(ctx context.Context, in *MsgClaimUnlocked, opt func (c *msgClient) Clawback(ctx context.Context, in *MsgClawback, opts ...grpc.CallOption) (*MsgClawbackResponse, error) { out := new(MsgClawbackResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Msg/Clawback", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Msg/Clawback", in, out, opts...) if err != nil { return nil, err } @@ -659,7 +659,7 @@ func (c *msgClient) Clawback(ctx context.Context, in *MsgClawback, opts ...grpc. func (c *msgClient) CreateTeamVestingAccount(ctx context.Context, in *MsgCreateTeamVestingAccount, opts ...grpc.CallOption) (*MsgCreateTeamVestingAccountResponse, error) { out := new(MsgCreateTeamVestingAccountResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Msg/CreateTeamVestingAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Msg/CreateTeamVestingAccount", in, out, opts...) if err != nil { return nil, err } @@ -668,7 +668,7 @@ func (c *msgClient) CreateTeamVestingAccount(ctx context.Context, in *MsgCreateT func (c *msgClient) ClaimAuthorityRewards(ctx context.Context, in *MsgClaimAuthorityRewards, opts ...grpc.CallOption) (*MsgClaimAuthorityRewardsResponse, error) { out := new(MsgClaimAuthorityRewardsResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Msg/ClaimAuthorityRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Msg/ClaimAuthorityRewards", in, out, opts...) if err != nil { return nil, err } @@ -677,7 +677,7 @@ func (c *msgClient) ClaimAuthorityRewards(ctx context.Context, in *MsgClaimAutho func (c *msgClient) ClaimAccountRewards(ctx context.Context, in *MsgClaimAccountRewards, opts ...grpc.CallOption) (*MsgClaimAccountRewardsResponse, error) { out := new(MsgClaimAccountRewardsResponse) - err := c.cc.Invoke(ctx, "/kyve.team.v1beta1.Msg/ClaimAccountRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/kyve.team.types.Msg/ClaimAccountRewards", in, out, opts...) if err != nil { return nil, err } @@ -732,7 +732,7 @@ func _Msg_ClaimUnlocked_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Msg/ClaimUnlocked", + FullMethod: "/kyve.team.types.Msg/ClaimUnlocked", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimUnlocked(ctx, req.(*MsgClaimUnlocked)) @@ -750,7 +750,7 @@ func _Msg_Clawback_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Msg/Clawback", + FullMethod: "/kyve.team.types.Msg/Clawback", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Clawback(ctx, req.(*MsgClawback)) @@ -768,7 +768,7 @@ func _Msg_CreateTeamVestingAccount_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Msg/CreateTeamVestingAccount", + FullMethod: "/kyve.team.types.Msg/CreateTeamVestingAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateTeamVestingAccount(ctx, req.(*MsgCreateTeamVestingAccount)) @@ -786,7 +786,7 @@ func _Msg_ClaimAuthorityRewards_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Msg/ClaimAuthorityRewards", + FullMethod: "/kyve.team.types.Msg/ClaimAuthorityRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimAuthorityRewards(ctx, req.(*MsgClaimAuthorityRewards)) @@ -804,7 +804,7 @@ func _Msg_ClaimAccountRewards_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/kyve.team.v1beta1.Msg/ClaimAccountRewards", + FullMethod: "/kyve.team.types.Msg/ClaimAccountRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimAccountRewards(ctx, req.(*MsgClaimAccountRewards)) @@ -813,7 +813,7 @@ func _Msg_ClaimAccountRewards_Handler(srv interface{}, ctx context.Context, dec } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "kyve.team.v1beta1.Msg", + ServiceName: "kyve.team.types.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -838,7 +838,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "kyve/team/v1beta1/tx.proto", + Metadata: "kyve/team/types/tx.proto", } func (m *MsgClaimUnlocked) Marshal() (dAtA []byte, err error) {