diff --git a/proto/mint/v1beta1/genesis.proto b/proto/mint/v1beta1/genesis.proto index 7170107d..f35499bb 100644 --- a/proto/mint/v1beta1/genesis.proto +++ b/proto/mint/v1beta1/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package mint.v1beta1; -import "gogoproto/gogo.proto"; import "amino/amino.proto"; +import "gogoproto/gogo.proto"; import "mint/v1beta1/mint.proto"; option go_package = "github.com/okp4/okp4d/x/mint/types"; @@ -11,8 +11,14 @@ option go_package = "github.com/okp4/okp4d/x/mint/types"; // GenesisState defines the mint module's genesis state. message GenesisState { // minter is a space for holding current inflation information. - Minter minter = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + Minter minter = 1 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; // params defines all the parameters of the module. - Params params = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + Params params = 2 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; } diff --git a/proto/mint/v1beta1/mint.proto b/proto/mint/v1beta1/mint.proto index 4e947ae8..4a3729da 100644 --- a/proto/mint/v1beta1/mint.proto +++ b/proto/mint/v1beta1/mint.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package mint.v1beta1; -import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; option go_package = "github.com/okp4/okp4d/x/mint/types"; @@ -16,13 +16,13 @@ option go_package = "github.com/okp4/okp4d/x/mint/types"; message Minter { // current annual inflation rate string inflation = 1 [ - (cosmos_proto.scalar) = "cosmos.Dec", + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; // current annual expected provisions string annual_provisions = 2 [ - (cosmos_proto.scalar) = "cosmos.Dec", + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; @@ -46,7 +46,7 @@ message Params { string mint_denom = 1; // annual reduction factor inflation rate change string annual_reduction_factor = 2 [ - (cosmos_proto.scalar) = "cosmos.Dec", + (cosmos_proto.scalar) = "cosmos.Dec", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; diff --git a/proto/mint/v1beta1/query.proto b/proto/mint/v1beta1/query.proto index bfe4b96b..2e69c627 100644 --- a/proto/mint/v1beta1/query.proto +++ b/proto/mint/v1beta1/query.proto @@ -2,10 +2,10 @@ syntax = "proto3"; package mint.v1beta1; +import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "mint/v1beta1/mint.proto"; -import "amino/amino.proto"; option go_package = "github.com/okp4/okp4d/x/mint/types"; @@ -33,7 +33,10 @@ message QueryParamsRequest {} // QueryParamsResponse is the response type for the Query/Params RPC method. message QueryParamsResponse { // params defines the parameters of the module. - Params params = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + Params params = 1 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; } // QueryInflationRequest is the request type for the Query/Inflation RPC method. @@ -45,7 +48,7 @@ message QueryInflationResponse { // inflation is the current minting inflation value. bytes inflation = 1 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false, + (gogoproto.nullable) = false, (amino.dont_omitempty) = true ]; } @@ -60,7 +63,7 @@ message QueryAnnualProvisionsResponse { // annual_provisions is the current minting annual provisions value. bytes annual_provisions = 1 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false, + (gogoproto.nullable) = false, (amino.dont_omitempty) = true ]; } diff --git a/proto/mint/v1beta1/tx.proto b/proto/mint/v1beta1/tx.proto index 7806cb29..2654ddb5 100644 --- a/proto/mint/v1beta1/tx.proto +++ b/proto/mint/v1beta1/tx.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package mint.v1beta1; -import "cosmos/msg/v1/msg.proto"; import "amino/amino.proto"; +import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "mint/v1beta1/mint.proto"; @@ -26,7 +26,7 @@ service Msg { // Since: cosmos-sdk 0.47 message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; - option (amino.name) = "cosmos-sdk/x/mint/MsgUpdateParams"; + option (amino.name) = "cosmos-sdk/x/mint/MsgUpdateParams"; // authority is the address that controls the module (defaults to x/gov unless overwritten). string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; @@ -34,7 +34,10 @@ message MsgUpdateParams { // params defines the x/mint parameters to update. // // NOTE: All parameters must be supplied. - Params params = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + Params params = 2 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; } // MsgUpdateParamsResponse defines the response structure for executing a diff --git a/proto/vesting/v1beta1/tx.proto b/proto/vesting/v1beta1/tx.proto index 2a89c3b4..0e9e33d4 100644 --- a/proto/vesting/v1beta1/tx.proto +++ b/proto/vesting/v1beta1/tx.proto @@ -2,12 +2,12 @@ syntax = "proto3"; package vesting.v1beta1; +import "amino/amino.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/msg/v1/msg.proto"; +import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "vesting/v1beta1/vesting.proto"; -import "cosmos_proto/cosmos.proto"; -import "amino/amino.proto"; option go_package = "github.com/okp4/okp4d/x/vesting/types"; @@ -37,15 +37,15 @@ service Msg { // account. message MsgCreateVestingAccount { option (cosmos.msg.v1.signer) = "from_address"; - option (amino.name) = "cosmos-sdk/MsgCreateVestingAccount"; + option (amino.name) = "cosmos-sdk/MsgCreateVestingAccount"; option (gogoproto.equal) = true; string from_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; string to_address = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; repeated cosmos.base.v1beta1.Coin amount = 3 [ - (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; @@ -62,14 +62,14 @@ message MsgCreateVestingAccountResponse {} // Since: cosmos-sdk 0.46 message MsgCreatePermanentLockedAccount { option (cosmos.msg.v1.signer) = "from_address"; - option (amino.name) = "cosmos-sdk/MsgCreatePermLockedAccount"; - option (gogoproto.equal) = true; + option (amino.name) = "cosmos-sdk/MsgCreatePermLockedAccount"; + option (gogoproto.equal) = true; - string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; - string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; + string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; + string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; repeated cosmos.base.v1beta1.Coin amount = 3 [ - (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; } @@ -85,15 +85,18 @@ message MsgCreatePermanentLockedAccountResponse {} // Since: cosmos-sdk 0.46 message MsgCreatePeriodicVestingAccount { option (cosmos.msg.v1.signer) = "from_address"; - option (amino.name) = "cosmos-sdk/MsgCreatePeriodicVestingAccount"; + option (amino.name) = "cosmos-sdk/MsgCreatePeriodicVestingAccount"; option (gogoproto.equal) = false; - string from_address = 1; - string to_address = 2; + string from_address = 1; + string to_address = 2; // start of vesting as unix time (in seconds). - int64 start_time = 3; - repeated Period vesting_periods = 4 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + int64 start_time = 3; + repeated Period vesting_periods = 4 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; } // MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount @@ -106,15 +109,15 @@ message MsgCreatePeriodicVestingAccountResponse {} // account. message MsgCreateCliffVestingAccount { option (cosmos.msg.v1.signer) = "from_address"; - option (amino.name) = "cosmos-sdk/MsgCreateCliffVestingAccount"; + option (amino.name) = "cosmos-sdk/MsgCreateCliffVestingAccount"; option (gogoproto.equal) = true; - string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; - string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; + string from_address = 1 [(gogoproto.moretags) = "yaml:\"from_address\""]; + string to_address = 2 [(gogoproto.moretags) = "yaml:\"to_address\""]; repeated cosmos.base.v1beta1.Coin amount = 3 [ (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; diff --git a/proto/vesting/v1beta1/vesting.proto b/proto/vesting/v1beta1/vesting.proto index b0c3b1bb..635d2e69 100644 --- a/proto/vesting/v1beta1/vesting.proto +++ b/proto/vesting/v1beta1/vesting.proto @@ -6,31 +6,30 @@ import "amino/amino.proto"; import "cosmos/auth/v1beta1/auth.proto"; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -import "cosmos_proto/cosmos.proto"; option go_package = "github.com/okp4/okp4d/x/vesting/types"; // BaseVestingAccount implements the VestingAccount interface. It contains all // the necessary fields needed for any vesting account implementation. message BaseVestingAccount { - option (amino.name) = "cosmos-sdk/BaseVestingAccount"; + option (amino.name) = "cosmos-sdk/BaseVestingAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true]; repeated cosmos.base.v1beta1.Coin original_vesting = 2 [ (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; repeated cosmos.base.v1beta1.Coin delegated_free = 3 [ (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; repeated cosmos.base.v1beta1.Coin delegated_vesting = 4 [ (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; // Vesting end time, as unix timestamp (in seconds). @@ -40,7 +39,7 @@ message BaseVestingAccount { // ContinuousVestingAccount implements the VestingAccount interface. It // continuously vests by unlocking coins linearly with respect to time. message ContinuousVestingAccount { - option (amino.name) = "cosmos-sdk/ContinuousVestingAccount"; + option (amino.name) = "cosmos-sdk/ContinuousVestingAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; @@ -53,7 +52,7 @@ message ContinuousVestingAccount { // coins after a specific time, but non prior. In other words, it keeps them // locked until a specified time. message DelayedVestingAccount { - option (amino.name) = "cosmos-sdk/DelayedVestingAccount"; + option (amino.name) = "cosmos-sdk/DelayedVestingAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; @@ -67,7 +66,7 @@ message Period { int64 length = 1; repeated cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.nullable) = false, - (amino.dont_omitempty) = true, + (amino.dont_omitempty) = true, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; } @@ -75,13 +74,16 @@ message Period { // PeriodicVestingAccount implements the VestingAccount interface. It // periodically vests by unlocking coins during each specified period. message PeriodicVestingAccount { - option (amino.name) = "cosmos-sdk/PeriodicVestingAccount"; + option (amino.name) = "cosmos-sdk/PeriodicVestingAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; BaseVestingAccount base_vesting_account = 1 [(gogoproto.embed) = true]; int64 start_time = 2; - repeated Period vesting_periods = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; + repeated Period vesting_periods = 3 [ + (gogoproto.nullable) = false, + (amino.dont_omitempty) = true + ]; } // PermanentLockedAccount implements the VestingAccount interface. It does @@ -90,7 +92,7 @@ message PeriodicVestingAccount { // // Since: cosmos-sdk 0.43 message PermanentLockedAccount { - option (amino.name) = "cosmos-sdk/PermanentLockedAccount"; + option (amino.name) = "cosmos-sdk/PermanentLockedAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; @@ -100,7 +102,7 @@ message PermanentLockedAccount { // CliffVestingAccount implements the VestingAccount interface. It // continuously vests by unlocking coins after a cliff period linearly with respect to time. message CliffVestingAccount { - option (amino.name) = "cosmos-sdk/CliffVestingAccount"; + option (amino.name) = "cosmos-sdk/CliffVestingAccount"; option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index 936c78cf..0fba23d2 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -89,18 +89,18 @@ var fileDescriptor_1dfa75836a5d5f23 = []byte{ // 223 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, - 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe9, 0x41, 0xe5, 0xa4, 0x44, 0xd2, - 0xf3, 0xd3, 0xf3, 0xc1, 0x12, 0xfa, 0x20, 0x16, 0x44, 0x8d, 0x94, 0x60, 0x62, 0x6e, 0x66, 0x5e, - 0xbe, 0x3e, 0x98, 0x84, 0x0a, 0x89, 0xa3, 0x18, 0x09, 0x36, 0x03, 0x2c, 0xa1, 0xd4, 0xc0, 0xc8, - 0xc5, 0xe3, 0x0e, 0xb1, 0x21, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x9c, 0x8b, 0x0d, 0x24, 0x9d, - 0x5a, 0x24, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa2, 0x87, 0x6c, 0xa3, 0x9e, 0x2f, 0x58, - 0xce, 0x89, 0xf3, 0xc4, 0x3d, 0x79, 0x86, 0x15, 0xcf, 0x37, 0x68, 0x31, 0x06, 0x41, 0x95, 0x83, - 0x34, 0x16, 0x24, 0x16, 0x25, 0xe6, 0x16, 0x4b, 0x30, 0x61, 0xd3, 0x18, 0x00, 0x96, 0x43, 0xd1, - 0x08, 0x51, 0xee, 0x64, 0x73, 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, 0x4a, - 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xf9, 0xd9, 0x05, 0x26, 0x60, - 0x22, 0x45, 0xbf, 0x02, 0xec, 0x01, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x3f, - 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xfa, 0xe8, 0x88, 0xe2, 0x35, 0x01, 0x00, 0x00, + 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe9, 0x41, 0xe5, 0xa4, 0x04, 0x13, + 0x73, 0x33, 0xf3, 0xf2, 0xf5, 0xc1, 0x24, 0x44, 0x81, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, 0x98, + 0xa9, 0x0f, 0x62, 0x41, 0x45, 0xc5, 0x51, 0x8c, 0x04, 0x9b, 0x01, 0x96, 0x50, 0x6a, 0x60, 0xe4, + 0xe2, 0x71, 0x87, 0xd8, 0x10, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xce, 0xc5, 0x06, 0x92, 0x4e, + 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0xd1, 0x43, 0xb6, 0x51, 0xcf, 0x17, 0x2c, + 0xe7, 0xc4, 0x79, 0xe2, 0x9e, 0x3c, 0xc3, 0x8a, 0xe7, 0x1b, 0xb4, 0x18, 0x83, 0xa0, 0xca, 0x41, + 0x1a, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0x25, 0x98, 0xb0, 0x69, 0x0c, 0x00, 0xcb, 0xa1, 0x68, + 0x84, 0x28, 0x77, 0xb2, 0x39, 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, 0xa5, + 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xfc, 0xec, 0x02, 0x13, 0x30, + 0x91, 0xa2, 0x5f, 0x01, 0xf6, 0x80, 0x7e, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x1f, + 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0x2e, 0xed, 0xe5, 0x35, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 6a5cc301..14252479 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -148,25 +148,25 @@ var fileDescriptor_06339c129491fd39 = []byte{ 0x1b, 0x13, 0xa4, 0x5d, 0x15, 0x57, 0x22, 0x85, 0x2e, 0x0a, 0x12, 0x57, 0x75, 0x13, 0x26, 0xc9, 0x98, 0x0e, 0x26, 0x33, 0x61, 0x66, 0x22, 0xf5, 0x2d, 0xba, 0xec, 0xb2, 0x8b, 0x3e, 0x42, 0x1f, 0x42, 0xe8, 0x46, 0xba, 0x2a, 0x5d, 0x48, 0xd1, 0x17, 0x29, 0x33, 0x93, 0xfe, 0xd9, 0x16, 0xdc, - 0x24, 0xe7, 0x9c, 0x2f, 0xf9, 0x9d, 0xf3, 0x1d, 0x0e, 0x68, 0xa4, 0x98, 0x08, 0x77, 0xd1, 0x0f, - 0x90, 0x80, 0x7d, 0x57, 0x26, 0x4e, 0xc6, 0xa8, 0xa0, 0x56, 0x4d, 0xc5, 0x85, 0xd0, 0xfa, 0x17, - 0xd3, 0x98, 0x2a, 0xc1, 0x95, 0x91, 0xfe, 0xa6, 0x75, 0x10, 0x52, 0x9e, 0x52, 0xee, 0x6b, 0x41, - 0x27, 0x5a, 0xea, 0x3c, 0x94, 0x40, 0xe5, 0x12, 0x13, 0x81, 0x98, 0x35, 0x05, 0x55, 0x4c, 0x66, - 0x09, 0x14, 0x98, 0x92, 0xa6, 0x79, 0x64, 0x1e, 0x57, 0x87, 0x83, 0xd5, 0xa6, 0x6d, 0xbc, 0x6e, - 0xda, 0xdd, 0x18, 0x8b, 0xeb, 0x3c, 0x70, 0x42, 0x9a, 0x16, 0xbf, 0x17, 0xaf, 0x1e, 0x8f, 0xe6, - 0xae, 0x58, 0x66, 0x88, 0x3b, 0x23, 0x14, 0x3e, 0x3f, 0xf6, 0x40, 0x41, 0x1f, 0xa1, 0xd0, 0xfb, - 0xc2, 0x59, 0x18, 0xfc, 0x85, 0x84, 0xe4, 0x30, 0x91, 0x33, 0x2c, 0x30, 0xc7, 0x94, 0xf0, 0x66, - 0x69, 0x0f, 0x3d, 0xfe, 0x68, 0xec, 0xf8, 0x93, 0x6a, 0x4d, 0x40, 0x5d, 0x40, 0x16, 0x23, 0xe1, - 0xf3, 0x3c, 0xcb, 0x92, 0x65, 0xf3, 0x97, 0x6a, 0xe3, 0xfc, 0xa0, 0xcd, 0x05, 0x11, 0x5e, 0x4d, - 0x43, 0x26, 0x8a, 0xd1, 0x79, 0x32, 0x41, 0x65, 0x0c, 0x19, 0x4c, 0xb9, 0x75, 0x08, 0x80, 0x5c, - 0xb9, 0x1f, 0x21, 0x42, 0x53, 0xbd, 0x27, 0xaf, 0x2a, 0x2b, 0x23, 0x59, 0xb0, 0x04, 0x68, 0x14, - 0x4e, 0x19, 0x8a, 0xf2, 0x50, 0xba, 0xf7, 0x67, 0x30, 0x14, 0x94, 0xed, 0xc5, 0xef, 0x7f, 0x0d, - 0xf7, 0x3e, 0xd8, 0xe7, 0x0a, 0x6d, 0x75, 0xc1, 0xef, 0x20, 0xa1, 0xe1, 0x9c, 0xfb, 0x19, 0x62, - 0xfe, 0x12, 0x41, 0xa6, 0x6c, 0x97, 0xbd, 0xba, 0x2e, 0x8f, 0x11, 0xbb, 0x42, 0x90, 0x9d, 0x95, - 0xef, 0xee, 0xdb, 0xc6, 0x70, 0xb0, 0xda, 0xda, 0xe6, 0x7a, 0x6b, 0x9b, 0x6f, 0x5b, 0xdb, 0xbc, - 0xdd, 0xd9, 0xc6, 0x7a, 0x67, 0x1b, 0x2f, 0x3b, 0xdb, 0x98, 0x76, 0xbe, 0x0d, 0x45, 0xe7, 0xd9, - 0xa9, 0x7a, 0x44, 0xee, 0x8d, 0xba, 0x38, 0x3d, 0x54, 0x50, 0x51, 0x97, 0x73, 0xf2, 0x1e, 0x00, - 0x00, 0xff, 0xff, 0x14, 0x5f, 0x26, 0x39, 0x93, 0x02, 0x00, 0x00, + 0x24, 0x33, 0xdf, 0x19, 0x7e, 0xdf, 0xf9, 0x0e, 0x07, 0x34, 0x52, 0x4c, 0x84, 0xbb, 0xe8, 0x07, + 0x48, 0xc0, 0xbe, 0x2b, 0x2f, 0x4e, 0xc6, 0xa8, 0xa0, 0x56, 0x4d, 0x9d, 0x8b, 0x42, 0xeb, 0x20, + 0xa4, 0x3c, 0xa5, 0xdc, 0x57, 0x35, 0x57, 0x5f, 0xf4, 0xc3, 0xd6, 0xbf, 0x98, 0xc6, 0x54, 0xeb, + 0xf2, 0xa4, 0xd5, 0xce, 0x43, 0x09, 0x54, 0x2e, 0x31, 0x11, 0x88, 0x59, 0x53, 0x50, 0xc5, 0x64, + 0x96, 0x40, 0x81, 0x29, 0x69, 0x9a, 0x47, 0xe6, 0x71, 0x75, 0x38, 0x58, 0x6d, 0xda, 0xc6, 0xeb, + 0xa6, 0xdd, 0x8d, 0xb1, 0xb8, 0xce, 0x03, 0x27, 0xa4, 0x69, 0x01, 0x2d, 0x7e, 0x3d, 0x1e, 0xcd, + 0x5d, 0xb1, 0xcc, 0x10, 0x77, 0x46, 0x28, 0x7c, 0x7e, 0xec, 0x81, 0xc2, 0x73, 0x84, 0x42, 0xef, + 0x0b, 0x67, 0x61, 0xf0, 0x17, 0x12, 0x92, 0xc3, 0x44, 0x76, 0xb6, 0xc0, 0x1c, 0x53, 0xc2, 0x9b, + 0xa5, 0x3d, 0x78, 0xfc, 0xd1, 0xd8, 0xf1, 0x27, 0xd5, 0x9a, 0x80, 0xba, 0x80, 0x2c, 0x46, 0xc2, + 0xe7, 0x79, 0x96, 0x25, 0xcb, 0xe6, 0x2f, 0x65, 0xe3, 0xfc, 0xc0, 0xe6, 0x82, 0x08, 0xaf, 0xa6, + 0x21, 0x13, 0xc5, 0xe8, 0x3c, 0x99, 0xa0, 0x32, 0x86, 0x0c, 0xa6, 0xdc, 0x3a, 0x04, 0x40, 0x8e, + 0xdc, 0x8f, 0x10, 0xa1, 0xa9, 0x9e, 0x93, 0x57, 0x95, 0xca, 0x48, 0x0a, 0x96, 0x00, 0x8d, 0x22, + 0x29, 0x43, 0x51, 0x1e, 0xca, 0xf4, 0xfe, 0x0c, 0x86, 0x82, 0xb2, 0xbd, 0xe4, 0xfd, 0xaf, 0xe1, + 0xde, 0x07, 0xfb, 0x5c, 0xa1, 0xad, 0x2e, 0xf8, 0x1d, 0x24, 0x34, 0x9c, 0x73, 0x3f, 0x43, 0xcc, + 0x5f, 0x22, 0xc8, 0x54, 0xec, 0xb2, 0x57, 0xd7, 0xf2, 0x18, 0xb1, 0x2b, 0x04, 0xd9, 0x59, 0xf9, + 0xee, 0xbe, 0x6d, 0x0c, 0x07, 0xab, 0xad, 0x6d, 0xae, 0xb7, 0xb6, 0xf9, 0xb6, 0xb5, 0xcd, 0xdb, + 0x9d, 0x6d, 0xac, 0x77, 0xb6, 0xf1, 0xb2, 0xb3, 0x8d, 0x69, 0xe7, 0x5b, 0x53, 0x74, 0x9e, 0x9d, + 0xaa, 0x4f, 0xe4, 0xde, 0xa8, 0x8d, 0xd3, 0x4d, 0x05, 0x15, 0xb5, 0x39, 0x27, 0xef, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x71, 0x98, 0x4c, 0x41, 0x93, 0x02, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index 792dcbda..2aea3bc9 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -284,33 +284,33 @@ var fileDescriptor_b0718dda172d2cb4 = []byte{ // 463 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc8, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe8, 0x41, 0x65, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, - 0xf3, 0xc1, 0x12, 0xfa, 0x20, 0x16, 0x44, 0x8d, 0x94, 0x4c, 0x7a, 0x7e, 0x7e, 0x7a, 0x4e, 0xaa, - 0x7e, 0x62, 0x41, 0xa6, 0x7e, 0x62, 0x5e, 0x5e, 0x7e, 0x49, 0x62, 0x49, 0x66, 0x7e, 0x5e, 0x31, - 0x54, 0x56, 0x1c, 0xc5, 0x6c, 0xb0, 0x71, 0x10, 0x09, 0xc1, 0xc4, 0xdc, 0xcc, 0xbc, 0x7c, 0x7d, - 0x30, 0x09, 0x11, 0x52, 0x12, 0xe1, 0x12, 0x0a, 0x04, 0x59, 0x1e, 0x90, 0x58, 0x94, 0x98, 0x5b, - 0x1c, 0x94, 0x5a, 0x58, 0x9a, 0x5a, 0x5c, 0xa2, 0xe4, 0xc7, 0x25, 0x8c, 0x22, 0x5a, 0x5c, 0x90, - 0x9f, 0x57, 0x9c, 0x2a, 0x64, 0xce, 0xc5, 0x56, 0x00, 0x16, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, - 0x36, 0x12, 0xd1, 0x43, 0x76, 0xab, 0x1e, 0x44, 0xb5, 0x13, 0xe7, 0x89, 0x7b, 0xf2, 0x0c, 0x2b, - 0x9e, 0x6f, 0xd0, 0x62, 0x0c, 0x82, 0x2a, 0x57, 0x12, 0xe7, 0x12, 0x05, 0x9b, 0xe7, 0x99, 0x97, - 0x96, 0x03, 0x76, 0x2a, 0xcc, 0xa2, 0x6c, 0x2e, 0x31, 0x74, 0x09, 0xa8, 0x5d, 0x81, 0x5c, 0x9c, - 0x99, 0x30, 0x41, 0xb0, 0x75, 0x3c, 0x4e, 0xc6, 0x20, 0x83, 0x6f, 0xdd, 0x93, 0x57, 0x4b, 0xcf, - 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0xce, 0x2f, 0xce, 0xcd, 0x2f, 0x86, - 0x52, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x7a, 0x2e, 0xa9, 0xc9, 0x10, - 0x27, 0x20, 0x4c, 0x51, 0x92, 0xe3, 0x92, 0x01, 0x5b, 0xe6, 0x98, 0x97, 0x57, 0x9a, 0x98, 0x13, - 0x50, 0x94, 0x5f, 0x96, 0x59, 0x0c, 0x0a, 0x36, 0x98, 0x63, 0x1a, 0x19, 0xb9, 0x64, 0x71, 0x28, - 0x80, 0x3a, 0x2a, 0x81, 0x4b, 0x30, 0x11, 0x2c, 0x17, 0x5f, 0x00, 0x97, 0xa4, 0xc4, 0x71, 0x02, - 0x89, 0x68, 0x36, 0x19, 0xcd, 0x64, 0xe6, 0x62, 0x05, 0xbb, 0x41, 0xa8, 0x88, 0x8b, 0x0d, 0x12, - 0xa0, 0x42, 0x0a, 0xa8, 0xc1, 0x8c, 0x19, 0x5f, 0x52, 0x8a, 0x78, 0x54, 0x40, 0x9c, 0xae, 0xa4, - 0xdc, 0x74, 0xf9, 0xc9, 0x64, 0x26, 0x59, 0x21, 0x69, 0x98, 0xab, 0x50, 0x12, 0x09, 0x24, 0x9e, - 0x84, 0xea, 0xb8, 0x38, 0xe1, 0x31, 0x21, 0xa4, 0x8c, 0xc5, 0x50, 0xf4, 0x08, 0x94, 0x52, 0xc1, - 0xaf, 0x08, 0x6a, 0xb9, 0x1a, 0xd8, 0x72, 0x05, 0x21, 0x39, 0xac, 0x96, 0xc3, 0x63, 0x48, 0x68, - 0x36, 0x23, 0x97, 0x00, 0x7a, 0xe0, 0x0b, 0x69, 0x61, 0xb1, 0x02, 0x47, 0x14, 0x4a, 0x69, 0x13, - 0xa5, 0x16, 0xea, 0x2a, 0x3d, 0xb0, 0xab, 0x34, 0x84, 0xd4, 0xb0, 0xba, 0x0a, 0x23, 0xa2, 0x9d, - 0x6c, 0x4e, 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, 0x09, 0x29, 0xd2, 0xf3, - 0xb3, 0x0b, 0x4c, 0xc0, 0x44, 0x8a, 0x7e, 0x05, 0xc4, 0x44, 0x70, 0xa4, 0x27, 0xb1, 0x81, 0x33, - 0x9c, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x14, 0x7d, 0x1a, 0xfa, 0x03, 0x00, 0x00, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe8, 0x41, 0x65, 0xa4, 0x04, 0x13, 0x73, 0x33, + 0xf3, 0xf2, 0xf5, 0xc1, 0x24, 0x44, 0x81, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, 0x98, 0xa9, 0x0f, + 0x62, 0x41, 0x45, 0x65, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, 0x0b, 0x32, 0xf5, 0x13, + 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, 0xe2, 0x28, 0xd6, 0x81, + 0x6d, 0x00, 0x4b, 0x28, 0x89, 0x70, 0x09, 0x05, 0x82, 0x2c, 0x0f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, + 0x0e, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0xf2, 0xe3, 0x12, 0x46, 0x11, 0x2d, 0x2e, 0xc8, + 0xcf, 0x2b, 0x4e, 0x15, 0x32, 0xe7, 0x62, 0x2b, 0x00, 0x8b, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, + 0x1b, 0x89, 0xe8, 0x21, 0xbb, 0x55, 0x0f, 0xa2, 0xda, 0x89, 0xf3, 0xc4, 0x3d, 0x79, 0x86, 0x15, + 0xcf, 0x37, 0x68, 0x31, 0x06, 0x41, 0x95, 0x2b, 0x89, 0x73, 0x89, 0x82, 0xcd, 0xf3, 0xcc, 0x4b, + 0xcb, 0x01, 0xbb, 0x0b, 0x66, 0x51, 0x36, 0x97, 0x18, 0xba, 0x04, 0xd4, 0xae, 0x40, 0x2e, 0xce, + 0x4c, 0x98, 0x20, 0xd8, 0x3a, 0x1e, 0x27, 0x63, 0x90, 0xc1, 0xb7, 0xee, 0xc9, 0xab, 0xa5, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0xe7, 0x17, 0xe7, 0xe6, 0x17, 0x43, + 0x29, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, 0x97, 0xd4, 0x64, 0x88, + 0x13, 0x10, 0xa6, 0x28, 0xc9, 0x71, 0xc9, 0x80, 0x2d, 0x73, 0xcc, 0xcb, 0x2b, 0x4d, 0xcc, 0x09, + 0x28, 0xca, 0x2f, 0xcb, 0x2c, 0x06, 0x85, 0x11, 0xcc, 0x31, 0x8d, 0x8c, 0x5c, 0xb2, 0x38, 0x14, + 0x40, 0x1d, 0x95, 0xc0, 0x25, 0x98, 0x08, 0x96, 0x8b, 0x2f, 0x80, 0x4b, 0x52, 0xe2, 0x38, 0x81, + 0x44, 0x34, 0x9b, 0x8c, 0x66, 0x32, 0x73, 0xb1, 0x82, 0xdd, 0x20, 0x54, 0xc4, 0xc5, 0x06, 0x09, + 0x50, 0x21, 0x05, 0xd4, 0x60, 0xc6, 0x8c, 0x2f, 0x29, 0x45, 0x3c, 0x2a, 0x20, 0x4e, 0x57, 0x52, + 0x6e, 0xba, 0xfc, 0x64, 0x32, 0x93, 0xac, 0x90, 0x34, 0xcc, 0x55, 0x28, 0x29, 0x02, 0x12, 0x4f, + 0x42, 0x75, 0x5c, 0x9c, 0xf0, 0x98, 0x10, 0x52, 0xc6, 0x62, 0x28, 0x7a, 0x04, 0x4a, 0xa9, 0xe0, + 0x57, 0x04, 0xb5, 0x5c, 0x0d, 0x6c, 0xb9, 0x82, 0x90, 0x1c, 0x56, 0xcb, 0xe1, 0x31, 0x24, 0x34, + 0x9b, 0x91, 0x4b, 0x00, 0x3d, 0xf0, 0x85, 0xb4, 0xb0, 0x58, 0x81, 0x23, 0x0a, 0xa5, 0xb4, 0x89, + 0x52, 0x0b, 0x75, 0x95, 0x1e, 0xd8, 0x55, 0x1a, 0x42, 0x6a, 0x58, 0x5d, 0x85, 0x11, 0xd1, 0x4e, + 0x36, 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, 0x84, 0x14, 0xe9, 0xf9, + 0xd9, 0x05, 0x26, 0x60, 0x22, 0x45, 0xbf, 0x02, 0x62, 0x22, 0x38, 0xd2, 0x93, 0xd8, 0xc0, 0x19, + 0xce, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x69, 0xb4, 0x77, 0x5a, 0xfa, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/mint/types/tx.pb.go b/x/mint/types/tx.pb.go index cb479657..4f00745e 100644 --- a/x/mint/types/tx.pb.go +++ b/x/mint/types/tx.pb.go @@ -141,26 +141,26 @@ var fileDescriptor_79e41a47c726ee2e = []byte{ // 343 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcd, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0xe2, 0x01, 0x09, 0xeb, 0x41, 0x85, 0xa5, 0xc4, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, - 0xf5, 0x73, 0x8b, 0xd3, 0xf5, 0xcb, 0x0c, 0x41, 0x14, 0x44, 0x99, 0x94, 0x60, 0x62, 0x6e, 0x66, - 0x5e, 0xbe, 0x3e, 0x98, 0x84, 0x0a, 0x49, 0x42, 0xd4, 0xc6, 0x83, 0x79, 0xfa, 0x10, 0x0e, 0x54, - 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0x22, 0x0e, 0x62, 0x41, 0x45, 0xc5, 0x51, 0x5c, 0x00, 0xb6, - 0x17, 0x2c, 0xa1, 0xb4, 0x83, 0x91, 0x8b, 0xdf, 0xb7, 0x38, 0x3d, 0xb4, 0x20, 0x25, 0xb1, 0x24, - 0x35, 0x20, 0xb1, 0x28, 0x31, 0xb7, 0x58, 0xc8, 0x8c, 0x8b, 0x33, 0xb1, 0xb4, 0x24, 0x23, 0xbf, - 0x28, 0xb3, 0xa4, 0x52, 0x82, 0x51, 0x81, 0x51, 0x83, 0xd3, 0x49, 0xe2, 0xd2, 0x16, 0x5d, 0x11, - 0xa8, 0x3d, 0x8e, 0x29, 0x29, 0x45, 0xa9, 0xc5, 0xc5, 0xc1, 0x25, 0x45, 0x99, 0x79, 0xe9, 0x41, - 0x08, 0xa5, 0x42, 0xe6, 0x5c, 0x6c, 0x05, 0x60, 0x13, 0x24, 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, - 0x44, 0xf4, 0x90, 0x3d, 0xa8, 0x07, 0x31, 0xdd, 0x89, 0xf3, 0xc4, 0x3d, 0x79, 0x86, 0x15, 0xcf, - 0x37, 0x68, 0x31, 0x06, 0x41, 0x95, 0x5b, 0x99, 0x34, 0x3d, 0xdf, 0xa0, 0x85, 0x30, 0xa8, 0xeb, - 0xf9, 0x06, 0x2d, 0x45, 0x88, 0x65, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x15, 0x60, 0x07, 0xeb, 0xa3, - 0x39, 0x53, 0x49, 0x92, 0x4b, 0x1c, 0x4d, 0x28, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0xd5, - 0x28, 0x89, 0x8b, 0xd9, 0xb7, 0x38, 0x5d, 0x28, 0x84, 0x8b, 0x07, 0xc5, 0x63, 0xb2, 0xa8, 0x0e, - 0x42, 0xd3, 0x2d, 0xa5, 0x8a, 0x57, 0x1a, 0x66, 0xb8, 0x14, 0x6b, 0x03, 0xc8, 0xf1, 0x4e, 0x36, - 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, 0x94, 0x9e, 0x59, 0x92, 0x51, - 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x9f, 0x5d, 0x60, 0x02, 0x26, 0x52, 0x60, 0xde, 0x28, - 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x07, 0xbf, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x03, - 0x48, 0xf5, 0xfc, 0x1b, 0x02, 0x00, 0x00, + 0xc9, 0x17, 0xe2, 0x01, 0x09, 0xeb, 0x41, 0x85, 0xa5, 0x04, 0x13, 0x73, 0x33, 0xf3, 0xf2, 0xf5, + 0xc1, 0x24, 0x44, 0x81, 0x94, 0x78, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0xb1, 0x7e, 0x6e, 0x71, 0xba, + 0x7e, 0x99, 0x21, 0x88, 0x82, 0x4a, 0x48, 0x42, 0x24, 0xe2, 0xc1, 0x3c, 0x7d, 0x08, 0x07, 0x2a, + 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x11, 0x07, 0xb1, 0x60, 0x26, 0xa1, 0xb8, 0x00, 0x6c, 0x2f, + 0x58, 0x42, 0x69, 0x07, 0x23, 0x17, 0xbf, 0x6f, 0x71, 0x7a, 0x68, 0x41, 0x4a, 0x62, 0x49, 0x6a, + 0x40, 0x62, 0x51, 0x62, 0x6e, 0xb1, 0x90, 0x19, 0x17, 0x67, 0x62, 0x69, 0x49, 0x46, 0x7e, 0x51, + 0x66, 0x49, 0xa5, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xa7, 0x93, 0xc4, 0xa5, 0x2d, 0xba, 0x22, 0x50, + 0x7b, 0x1c, 0x53, 0x52, 0x8a, 0x52, 0x8b, 0x8b, 0x83, 0x4b, 0x8a, 0x32, 0xf3, 0xd2, 0x83, 0x10, + 0x4a, 0x85, 0xcc, 0xb9, 0xd8, 0x0a, 0xc0, 0x26, 0x48, 0x30, 0x29, 0x30, 0x6a, 0x70, 0x1b, 0x89, + 0xe8, 0x21, 0x7b, 0x50, 0x0f, 0x62, 0xba, 0x13, 0xe7, 0x89, 0x7b, 0xf2, 0x0c, 0x2b, 0x9e, 0x6f, + 0xd0, 0x62, 0x0c, 0x82, 0x2a, 0xb7, 0x32, 0x69, 0x7a, 0xbe, 0x41, 0x0b, 0x61, 0x50, 0xd7, 0xf3, + 0x0d, 0x5a, 0x8a, 0x10, 0xcb, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0xc0, 0x0e, 0xd6, 0x47, 0x73, + 0xa6, 0x92, 0x24, 0x97, 0x38, 0x9a, 0x50, 0x50, 0x6a, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x51, + 0x12, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0x50, 0x08, 0x17, 0x0f, 0x8a, 0xc7, 0x64, 0x51, 0x1d, 0x84, + 0xa6, 0x5b, 0x4a, 0x15, 0xaf, 0x34, 0xcc, 0x70, 0x29, 0xd6, 0x06, 0x90, 0xe3, 0x9d, 0x6c, 0x4e, + 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, 0x29, 0x3d, 0xb3, 0x24, 0xa3, 0x34, + 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, 0x3f, 0xbb, 0xc0, 0x04, 0x4c, 0xa4, 0xc0, 0xbc, 0x51, 0x52, + 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x7e, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd3, + 0x34, 0xd5, 0xa4, 0x1b, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/vesting/types/tx.pb.go b/x/vesting/types/tx.pb.go index a9a90519..f3e8c57c 100644 --- a/x/vesting/types/tx.pb.go +++ b/x/vesting/types/tx.pb.go @@ -497,53 +497,53 @@ func init() { func init() { proto.RegisterFile("vesting/v1beta1/tx.proto", fileDescriptor_c66d8e2aee35e411) } var fileDescriptor_c66d8e2aee35e411 = []byte{ - // 726 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x96, 0x3d, 0x6c, 0xd3, 0x4c, - 0x18, 0xc7, 0xe3, 0xa4, 0x5f, 0xb9, 0xbe, 0x7a, 0x51, 0x4d, 0x51, 0x9c, 0xa8, 0xb1, 0x53, 0x8b, - 0xd2, 0x10, 0xa9, 0x36, 0x2d, 0xad, 0x40, 0x01, 0xa9, 0x6a, 0xca, 0x06, 0x95, 0x50, 0x40, 0x0c, - 0x2c, 0x91, 0x63, 0x5f, 0x5d, 0xab, 0xb5, 0x2f, 0xf2, 0x5d, 0xab, 0x76, 0x03, 0xc6, 0x4e, 0x2c, - 0xac, 0xa8, 0x23, 0x62, 0xea, 0xc0, 0xcc, 0xdc, 0xb1, 0x62, 0x62, 0x2a, 0xa8, 0x1d, 0xda, 0x81, - 0xa9, 0x0b, 0x2b, 0xb2, 0xef, 0x1c, 0x12, 0xf7, 0xec, 0xd2, 0x09, 0x89, 0xc5, 0x1f, 0xf7, 0x7f, - 0x9e, 0xe7, 0xce, 0xbf, 0xe7, 0x43, 0x06, 0xd2, 0x16, 0xc4, 0xc4, 0xf1, 0x6c, 0x7d, 0x6b, 0xb6, - 0x0d, 0x89, 0x31, 0xab, 0x93, 0x6d, 0xad, 0xe3, 0x23, 0x82, 0xc4, 0x6b, 0x4c, 0xd1, 0x98, 0x52, - 0x92, 0x4d, 0x84, 0x5d, 0x84, 0xf5, 0xb6, 0x81, 0x61, 0xd7, 0xdc, 0x44, 0x8e, 0x47, 0x1d, 0x4a, - 0x05, 0xa6, 0xbb, 0x38, 0x88, 0x16, 0xdc, 0x98, 0x30, 0x6e, 0x23, 0x1b, 0x85, 0x8f, 0x7a, 0xf0, - 0xc4, 0x56, 0xcb, 0xf1, 0x9d, 0xa3, 0xfd, 0xa8, 0x5c, 0xa4, 0xd1, 0x5a, 0xd4, 0x8f, 0xbe, 0x30, - 0x69, 0xcc, 0x70, 0x1d, 0x0f, 0xe9, 0xe1, 0x95, 0x2e, 0xa9, 0x3f, 0xb2, 0xa0, 0xb0, 0x82, 0xed, - 0x65, 0x1f, 0x1a, 0x04, 0xbe, 0xa0, 0x81, 0x96, 0x4c, 0x13, 0x6d, 0x7a, 0x44, 0x7c, 0x00, 0xfe, - 0x5b, 0xf5, 0x91, 0xdb, 0x32, 0x2c, 0xcb, 0x87, 0x18, 0x4b, 0x42, 0x45, 0xa8, 0xe6, 0x1b, 0xd2, - 0x97, 0x4f, 0x33, 0xe3, 0x2c, 0xec, 0x12, 0x55, 0x9e, 0x11, 0xdf, 0xf1, 0xec, 0xe6, 0x68, 0x60, - 0xcd, 0x96, 0xc4, 0x7b, 0x00, 0x10, 0xd4, 0x75, 0xcd, 0x5e, 0xe2, 0x9a, 0x27, 0x28, 0x72, 0x5c, - 0x03, 0x43, 0x86, 0x1b, 0xec, 0x2f, 0xe5, 0x2a, 0xb9, 0xea, 0xe8, 0x5c, 0x51, 0x63, 0x1e, 0x01, - 0xbe, 0x88, 0xa9, 0xb6, 0x8c, 0x1c, 0xaf, 0xb1, 0x70, 0x70, 0xa4, 0x64, 0x3e, 0x7e, 0x53, 0xaa, - 0xb6, 0x43, 0xd6, 0x36, 0xdb, 0x9a, 0x89, 0x5c, 0xf6, 0xc1, 0xec, 0x36, 0x83, 0xad, 0x75, 0x9d, - 0xec, 0x74, 0x20, 0x0e, 0x1d, 0xf0, 0x87, 0xd3, 0xfd, 0x9a, 0xd0, 0x64, 0xf1, 0xc5, 0x22, 0x18, - 0x81, 0x9e, 0xd5, 0x22, 0x8e, 0x0b, 0xa5, 0x81, 0x8a, 0x50, 0xcd, 0x35, 0x87, 0xa1, 0x67, 0x3d, - 0x77, 0x5c, 0x28, 0x4a, 0x60, 0xd8, 0x82, 0x1b, 0xc6, 0x0e, 0xb4, 0xa4, 0xa1, 0x8a, 0x50, 0x1d, - 0x69, 0x46, 0xaf, 0xf5, 0x87, 0x67, 0x7b, 0x8a, 0xf0, 0xe6, 0x74, 0xbf, 0xd6, 0xc7, 0x66, 0xf7, - 0x74, 0xbf, 0xa6, 0xf6, 0xec, 0x99, 0x80, 0x54, 0x9d, 0x04, 0x4a, 0x82, 0xd4, 0x84, 0xb8, 0x83, - 0x3c, 0x0c, 0xd5, 0xcf, 0xd9, 0x1e, 0x9b, 0xa7, 0xd0, 0x77, 0x0d, 0x0f, 0x7a, 0xe4, 0x09, 0x32, - 0xd7, 0xa1, 0x15, 0x65, 0xa6, 0xce, 0xcd, 0x4c, 0xe1, 0xfc, 0x48, 0xb9, 0xbe, 0x63, 0xb8, 0x1b, - 0x75, 0xb5, 0x57, 0x55, 0xfb, 0x13, 0x33, 0xcf, 0x49, 0xcc, 0x8d, 0xf3, 0x23, 0x65, 0x8c, 0x7a, - 0xfe, 0xd6, 0xd4, 0xbf, 0x92, 0x95, 0xfa, 0x62, 0x22, 0xe0, 0x29, 0x1e, 0xe0, 0x80, 0x50, 0x1f, - 0x1c, 0xf5, 0x36, 0x98, 0xbe, 0x84, 0x5f, 0x97, 0xf5, 0xbb, 0x18, 0x6b, 0x07, 0x59, 0x8e, 0x19, - 0xeb, 0x82, 0x49, 0x1e, 0xeb, 0x7e, 0xa4, 0xe5, 0x8b, 0x48, 0x7b, 0xd9, 0x95, 0x01, 0xc0, 0xc4, - 0xf0, 0x09, 0xad, 0xb4, 0x5c, 0x58, 0x69, 0xf9, 0x70, 0x25, 0xac, 0xb5, 0xc7, 0x20, 0x9a, 0x18, - 0xad, 0x4e, 0x78, 0x04, 0x2c, 0x0d, 0x84, 0x8c, 0x0b, 0x5a, 0x6c, 0x92, 0x68, 0xf4, 0x88, 0x8d, - 0x7c, 0x40, 0x98, 0x52, 0xfb, 0x9f, 0x99, 0x50, 0x05, 0xd7, 0x1f, 0x9d, 0xed, 0x29, 0x19, 0x2e, - 0xbd, 0x5a, 0x02, 0x3d, 0xce, 0x37, 0xc7, 0x11, 0x72, 0x4c, 0xba, 0x08, 0x7f, 0x66, 0xc1, 0x44, - 0xd7, 0x76, 0x79, 0xc3, 0x59, 0x5d, 0x8d, 0xf1, 0xfb, 0x87, 0x6b, 0x35, 0x6d, 0x82, 0x94, 0x01, - 0x30, 0x03, 0x1a, 0x54, 0x1c, 0xa4, 0x49, 0x0f, 0x57, 0x02, 0xb9, 0xbe, 0x94, 0x58, 0xe5, 0xd3, - 0xbc, 0x3c, 0x71, 0xc0, 0xaa, 0xb7, 0xc0, 0xcd, 0x34, 0x3d, 0xca, 0xd0, 0xdc, 0xfb, 0x01, 0x90, - 0x5b, 0xc1, 0xb6, 0xe8, 0x83, 0x71, 0xee, 0x98, 0xaf, 0x5e, 0x28, 0xb3, 0x84, 0x11, 0x55, 0xba, - 0xf3, 0xa7, 0x96, 0xd1, 0xde, 0xe2, 0xae, 0x00, 0x26, 0x52, 0x27, 0x59, 0x4a, 0x48, 0xbe, 0x47, - 0xe9, 0xfe, 0x55, 0x3d, 0xf8, 0x87, 0xe1, 0xb5, 0x7a, 0xfa, 0x61, 0x38, 0x1e, 0x97, 0x1c, 0x26, - 0xa5, 0x6f, 0xc4, 0xd7, 0x02, 0x28, 0x26, 0x37, 0xcd, 0x4c, 0x72, 0x5c, 0x8e, 0x79, 0x69, 0xe1, - 0x4a, 0xe6, 0xd1, 0x19, 0x4a, 0x83, 0xaf, 0x82, 0x6a, 0x6e, 0x2c, 0x1e, 0x1c, 0xcb, 0xc2, 0xe1, - 0xb1, 0x2c, 0x7c, 0x3f, 0x96, 0x85, 0xb7, 0x27, 0x72, 0xe6, 0xf0, 0x44, 0xce, 0x7c, 0x3d, 0x91, - 0x33, 0x2f, 0xa7, 0x7a, 0xda, 0x02, 0xad, 0x77, 0xe6, 0xc3, 0x8b, 0xa5, 0x6f, 0x47, 0xbf, 0x1c, - 0xb4, 0x33, 0xda, 0x43, 0xe1, 0xbf, 0xc4, 0xdd, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x01, 0xb3, - 0x8e, 0x0a, 0x14, 0x09, 0x00, 0x00, + // 725 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x96, 0x3f, 0x6c, 0xd3, 0x4e, + 0x14, 0xc7, 0xe3, 0xa4, 0xff, 0x72, 0xfd, 0xe9, 0x87, 0x6a, 0x8a, 0xe2, 0x44, 0x8d, 0x9d, 0x5a, + 0x94, 0x86, 0x48, 0xb5, 0x69, 0x69, 0x05, 0x0a, 0x48, 0x55, 0x53, 0x36, 0xa8, 0x84, 0x02, 0x62, + 0x60, 0x89, 0x1c, 0xfb, 0xea, 0x5a, 0xad, 0x7d, 0x91, 0xef, 0x5a, 0xb5, 0x1b, 0x30, 0x76, 0x62, + 0x61, 0x45, 0x1d, 0x11, 0x53, 0x07, 0x66, 0xe6, 0x8e, 0x15, 0x13, 0x53, 0x41, 0xed, 0xd0, 0x0e, + 0x4c, 0x5d, 0x58, 0x91, 0xef, 0xce, 0x21, 0x49, 0xcf, 0x29, 0x9d, 0x90, 0x58, 0xec, 0xdc, 0x7d, + 0xdf, 0xbb, 0x7b, 0xf9, 0xbc, 0x3f, 0x32, 0x50, 0xb6, 0x20, 0x26, 0x5e, 0xe0, 0x9a, 0x5b, 0xb3, + 0x4d, 0x48, 0xac, 0x59, 0x93, 0x6c, 0x1b, 0xad, 0x10, 0x11, 0x24, 0x5f, 0xe3, 0x8a, 0xc1, 0x95, + 0xc2, 0x98, 0xe5, 0x7b, 0x01, 0x32, 0xe9, 0x93, 0xd9, 0x14, 0x54, 0x1b, 0x61, 0x1f, 0x61, 0xb3, + 0x69, 0x61, 0xd8, 0x3e, 0xc1, 0x46, 0x5e, 0xc0, 0xf5, 0x1c, 0xd7, 0x7d, 0x1c, 0x5d, 0x10, 0xbd, + 0xb8, 0x90, 0x67, 0x42, 0x83, 0xae, 0x4c, 0xb6, 0xe0, 0xd2, 0xb8, 0x8b, 0x5c, 0xc4, 0xf6, 0xa3, + 0x5f, 0x7c, 0xb7, 0xd8, 0x1b, 0x67, 0x1c, 0x1d, 0x95, 0xf5, 0x1f, 0x69, 0x90, 0x5b, 0xc1, 0xee, + 0x72, 0x08, 0x2d, 0x02, 0x5f, 0x30, 0x69, 0xc9, 0xb6, 0xd1, 0x66, 0x40, 0xe4, 0x07, 0xe0, 0xbf, + 0xd5, 0x10, 0xf9, 0x0d, 0xcb, 0x71, 0x42, 0x88, 0xb1, 0x22, 0x95, 0xa4, 0x72, 0xb6, 0xa6, 0x7c, + 0xf9, 0x34, 0x33, 0xce, 0x2f, 0x5e, 0x62, 0xca, 0x33, 0x12, 0x7a, 0x81, 0x5b, 0x1f, 0x8d, 0xac, + 0xf9, 0x96, 0x7c, 0x0f, 0x00, 0x82, 0xda, 0xae, 0xe9, 0x4b, 0x5c, 0xb3, 0x04, 0xc5, 0x8e, 0x6b, + 0x60, 0xc8, 0xf2, 0xa3, 0xfb, 0x95, 0x4c, 0x29, 0x53, 0x1e, 0x9d, 0xcb, 0x1b, 0xdc, 0x23, 0x62, + 0x15, 0x33, 0x35, 0x96, 0x91, 0x17, 0xd4, 0x16, 0x0e, 0x8e, 0xb4, 0xd4, 0xc7, 0x6f, 0x5a, 0xd9, + 0xf5, 0xc8, 0xda, 0x66, 0xd3, 0xb0, 0x91, 0xcf, 0x91, 0xf0, 0xd7, 0x0c, 0x76, 0xd6, 0x4d, 0xb2, + 0xd3, 0x82, 0x98, 0x3a, 0xe0, 0x0f, 0xa7, 0xfb, 0x15, 0xa9, 0xce, 0xcf, 0x97, 0xf3, 0x60, 0x04, + 0x06, 0x4e, 0x83, 0x78, 0x3e, 0x54, 0x06, 0x4a, 0x52, 0x39, 0x53, 0x1f, 0x86, 0x81, 0xf3, 0xdc, + 0xf3, 0xa1, 0xac, 0x80, 0x61, 0x07, 0x6e, 0x58, 0x3b, 0xd0, 0x51, 0x86, 0x4a, 0x52, 0x79, 0xa4, + 0x1e, 0x2f, 0xab, 0x0f, 0xcf, 0xf6, 0x34, 0xe9, 0xcd, 0xe9, 0x7e, 0xa5, 0x8b, 0xcd, 0xee, 0xe9, + 0x7e, 0x45, 0xef, 0xb8, 0x33, 0x01, 0xa9, 0x3e, 0x09, 0xb4, 0x04, 0xa9, 0x0e, 0x71, 0x0b, 0x05, + 0x18, 0xea, 0x9f, 0xd3, 0x1d, 0x36, 0x4f, 0x61, 0xe8, 0x5b, 0x01, 0x0c, 0xc8, 0x13, 0x64, 0xaf, + 0x43, 0x27, 0xce, 0x4c, 0x55, 0x98, 0x99, 0xdc, 0xf9, 0x91, 0x76, 0x7d, 0xc7, 0xf2, 0x37, 0xaa, + 0x7a, 0xa7, 0xaa, 0x77, 0x27, 0x66, 0x5e, 0x90, 0x98, 0x1b, 0xe7, 0x47, 0xda, 0x18, 0xf3, 0xfc, + 0xad, 0xe9, 0x7f, 0x25, 0x2b, 0xd5, 0xc5, 0x44, 0xc0, 0x53, 0x22, 0xc0, 0x11, 0xa1, 0x2e, 0x38, + 0xfa, 0x6d, 0x30, 0x7d, 0x09, 0xbf, 0x36, 0xeb, 0x77, 0x3d, 0xac, 0x3d, 0xe4, 0x78, 0x76, 0x4f, + 0x17, 0x4c, 0x8a, 0x58, 0x77, 0x23, 0x2d, 0x5e, 0x44, 0xda, 0xc9, 0xae, 0x08, 0x00, 0x26, 0x56, + 0x48, 0x58, 0xa5, 0x65, 0x68, 0xa5, 0x65, 0xe9, 0x0e, 0xad, 0xb5, 0xc7, 0x20, 0x9e, 0x18, 0x8d, + 0x16, 0x0d, 0x01, 0x2b, 0x03, 0x94, 0x71, 0xce, 0xe8, 0x99, 0x24, 0x06, 0x0b, 0xb1, 0x96, 0x8d, + 0x08, 0x33, 0x6a, 0xff, 0x73, 0x13, 0xa6, 0xe0, 0xea, 0xa3, 0xb3, 0x3d, 0x2d, 0x25, 0xa4, 0x57, + 0x49, 0xa0, 0x27, 0xf8, 0xcf, 0xbd, 0x08, 0x05, 0x26, 0x6d, 0x84, 0x3f, 0xd3, 0x60, 0xa2, 0x6d, + 0xbb, 0xbc, 0xe1, 0xad, 0xae, 0xf6, 0xf0, 0xfb, 0x87, 0x6b, 0xb5, 0xdf, 0x04, 0x29, 0x02, 0x60, + 0x47, 0x34, 0x98, 0x38, 0xc8, 0x92, 0x4e, 0x77, 0x22, 0xb9, 0xba, 0x94, 0x58, 0xe5, 0xd3, 0xa2, + 0x3c, 0x09, 0xc0, 0xea, 0xb7, 0xc0, 0xcd, 0x7e, 0x7a, 0x9c, 0xa1, 0xb9, 0xf7, 0x03, 0x20, 0xb3, + 0x82, 0x5d, 0x39, 0x04, 0xe3, 0xc2, 0x31, 0x5f, 0xbe, 0x50, 0x66, 0x09, 0x23, 0xaa, 0x70, 0xe7, + 0x4f, 0x2d, 0xe3, 0xbb, 0xe5, 0x5d, 0x09, 0x4c, 0xf4, 0x9d, 0x64, 0x7d, 0x8e, 0x14, 0x7b, 0x14, + 0xee, 0x5f, 0xd5, 0x43, 0x1c, 0x8c, 0xa8, 0xd5, 0xfb, 0x07, 0x23, 0xf0, 0xb8, 0x24, 0x98, 0x3e, + 0x7d, 0x23, 0xbf, 0x96, 0x40, 0x3e, 0xb9, 0x69, 0x66, 0x92, 0xcf, 0x15, 0x98, 0x17, 0x16, 0xae, + 0x64, 0x1e, 0xc7, 0x50, 0x18, 0x7c, 0x15, 0x55, 0x73, 0x6d, 0xf1, 0xe0, 0x58, 0x95, 0x0e, 0x8f, + 0x55, 0xe9, 0xfb, 0xb1, 0x2a, 0xbd, 0x3d, 0x51, 0x53, 0x87, 0x27, 0x6a, 0xea, 0xeb, 0x89, 0x9a, + 0x7a, 0x39, 0xd5, 0xd1, 0x16, 0x68, 0xbd, 0x35, 0x4f, 0x1f, 0x8e, 0xb9, 0x1d, 0x7f, 0x44, 0xb0, + 0xce, 0x68, 0x0e, 0xd1, 0x6f, 0x89, 0xbb, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xcb, 0xc7, 0xec, + 0xdc, 0x14, 0x09, 0x00, 0x00, } func (this *MsgCreateVestingAccount) Equal(that interface{}) bool { diff --git a/x/vesting/types/vesting.pb.go b/x/vesting/types/vesting.pb.go index eaacf35f..c85c68ce 100644 --- a/x/vesting/types/vesting.pb.go +++ b/x/vesting/types/vesting.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/tx/amino" @@ -339,48 +338,47 @@ func init() { func init() { proto.RegisterFile("vesting/v1beta1/vesting.proto", fileDescriptor_eac461ec52018387) } var fileDescriptor_eac461ec52018387 = []byte{ - // 647 bytes of a gzipped FileDescriptorProto + // 640 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x55, 0x3f, 0x6f, 0xd3, 0x4e, 0x18, 0xf6, 0x35, 0xf9, 0xe5, 0x47, 0xaf, 0xd0, 0x3f, 0xa6, 0x94, 0xb4, 0x52, 0x9c, 0xe0, 0x0a, 0x29, 0x2a, 0xaa, 0x4d, 0x0b, 0x2c, 0x59, 0x10, 0x29, 0x42, 0x42, 0x30, 0xa0, 0x08, 0x31, 0xc0, - 0x60, 0x9d, 0xed, 0xab, 0x73, 0x6a, 0x7c, 0x17, 0xf9, 0x2e, 0x85, 0x0a, 0xb1, 0x23, 0xa6, 0xb2, + 0x10, 0x9d, 0xed, 0xab, 0x73, 0x6a, 0x7c, 0x17, 0xf9, 0x2e, 0x85, 0x0a, 0xb1, 0x23, 0xa6, 0xb2, 0x21, 0xb1, 0x54, 0x42, 0x48, 0x88, 0xa9, 0x1f, 0xa3, 0x63, 0x47, 0x16, 0x0a, 0x6a, 0x87, 0x7e, - 0x0d, 0xe4, 0xbb, 0xb3, 0x6b, 0x25, 0x85, 0xad, 0x55, 0x17, 0xc7, 0xef, 0xbd, 0xf7, 0xbe, 0xcf, - 0xf3, 0xbc, 0x7e, 0x2e, 0x07, 0x6b, 0x9b, 0x98, 0x0b, 0x42, 0x23, 0x77, 0x73, 0xc5, 0xc7, 0x02, - 0xad, 0xb8, 0x3a, 0x76, 0xfa, 0x09, 0x13, 0xcc, 0x9c, 0xca, 0x42, 0x9d, 0x5e, 0x98, 0x41, 0x31, - 0xa1, 0xcc, 0x95, 0x4f, 0xb5, 0x67, 0xc1, 0x0a, 0x18, 0x8f, 0x19, 0x77, 0xd1, 0x40, 0x74, 0xf3, - 0x36, 0x69, 0x30, 0x94, 0xf7, 0x11, 0xc7, 0x79, 0x3e, 0x60, 0x84, 0xea, 0xfc, 0x6c, 0xc4, 0x22, - 0x26, 0x5f, 0xdd, 0xf4, 0x4d, 0xaf, 0xce, 0xab, 0x2a, 0x4f, 0x25, 0x54, 0xa0, 0x52, 0xf6, 0xe7, - 0x32, 0x34, 0xdb, 0x88, 0xe3, 0x17, 0x8a, 0xdb, 0x83, 0x20, 0x60, 0x03, 0x2a, 0xcc, 0xc7, 0xf0, - 0x72, 0x0a, 0xe1, 0x21, 0x15, 0x57, 0x41, 0x03, 0x34, 0x27, 0x56, 0x1b, 0x8e, 0xae, 0x95, 0x8c, - 0x34, 0xbc, 0x93, 0x96, 0xeb, 0xba, 0x76, 0x79, 0xff, 0xa0, 0x0e, 0x3a, 0x13, 0xfe, 0xc9, 0x92, - 0xf9, 0x16, 0x4e, 0xb3, 0x84, 0x44, 0x84, 0xa2, 0x9e, 0xa7, 0x27, 0x50, 0x1d, 0x6b, 0x94, 0x9a, - 0x13, 0xab, 0xf3, 0x59, 0xbb, 0x74, 0x7b, 0xde, 0x6e, 0x8d, 0x11, 0xda, 0xbe, 0xb7, 0x77, 0x50, - 0x37, 0xbe, 0xff, 0xaa, 0x37, 0x23, 0x22, 0xba, 0x03, 0xdf, 0x09, 0x58, 0xac, 0x79, 0xeb, 0x9f, - 0x65, 0x1e, 0x6e, 0xb8, 0x62, 0xab, 0x8f, 0xb9, 0x2c, 0xe0, 0xdf, 0x8e, 0x77, 0x97, 0x40, 0x67, - 0x2a, 0x43, 0xd2, 0x72, 0xcc, 0xd7, 0x70, 0x32, 0xc4, 0x3d, 0x1c, 0x21, 0x81, 0x43, 0x6f, 0x3d, - 0xc1, 0xb8, 0x5a, 0x3a, 0x23, 0xe8, 0x2b, 0x39, 0xce, 0xa3, 0x04, 0x63, 0xf3, 0x1d, 0x9c, 0x39, - 0x01, 0xce, 0x64, 0x97, 0xcf, 0x08, 0x7b, 0x3a, 0x87, 0xca, 0x74, 0xcf, 0xc3, 0x4b, 0x98, 0x86, - 0x9e, 0x20, 0x31, 0xae, 0xfe, 0xd7, 0x00, 0xcd, 0x52, 0xe7, 0x7f, 0x4c, 0xc3, 0xe7, 0x24, 0xc6, - 0xad, 0xa5, 0xf7, 0x3b, 0x75, 0xe3, 0xd3, 0x4e, 0xdd, 0xf8, 0x70, 0xbc, 0xbb, 0x54, 0x2b, 0xb4, - 0x1d, 0xb5, 0x81, 0xbd, 0x07, 0x60, 0x75, 0x8d, 0x51, 0x41, 0xe8, 0x80, 0x0d, 0xf8, 0x90, 0x47, - 0x5e, 0xc1, 0x59, 0xe9, 0x11, 0xad, 0x6e, 0xc8, 0x2b, 0x8b, 0xce, 0x90, 0xdd, 0x9d, 0xd1, 0xfe, - 0xda, 0x2e, 0xa6, 0x3f, 0x6a, 0xc0, 0x1a, 0x84, 0x5c, 0xa0, 0x44, 0x28, 0x09, 0x63, 0x52, 0xc2, - 0xb8, 0x5c, 0x91, 0x22, 0x6e, 0x17, 0x45, 0x2c, 0x16, 0x44, 0xfc, 0x8d, 0xad, 0xfd, 0x05, 0xc0, - 0x6b, 0x0f, 0x71, 0x0f, 0x6d, 0xe5, 0x43, 0x3a, 0x0f, 0x1d, 0xad, 0xe5, 0x22, 0xd1, 0x46, 0x81, - 0xe8, 0xa9, 0x5c, 0xec, 0x6d, 0x00, 0x2b, 0xcf, 0x70, 0x42, 0x58, 0x68, 0xce, 0xc1, 0x4a, 0x0f, - 0xd3, 0x48, 0x74, 0x25, 0x91, 0x52, 0x47, 0x47, 0x66, 0x17, 0x56, 0x50, 0x2c, 0x09, 0x9e, 0xd5, - 0x29, 0xd2, 0xfd, 0x5b, 0xe5, 0x94, 0xb7, 0xfd, 0x71, 0x0c, 0xce, 0x29, 0x4a, 0x24, 0xb8, 0x38, - 0x0e, 0x30, 0x9f, 0xc0, 0xec, 0xff, 0xd4, 0xeb, 0x4b, 0x76, 0x5c, 0x1f, 0xed, 0xeb, 0x23, 0xb0, - 0x8a, 0x7d, 0x7b, 0x3c, 0x9d, 0x86, 0x52, 0x38, 0xa9, 0xb7, 0xa8, 0x0c, 0x6f, 0x39, 0xc5, 0xaf, - 0x74, 0xa3, 0x30, 0x9b, 0xd3, 0x85, 0xdb, 0x5f, 0x81, 0x9c, 0x49, 0x8c, 0x28, 0xa6, 0xe2, 0x29, - 0x0b, 0x36, 0x70, 0x78, 0x2e, 0x6e, 0xfa, 0x17, 0xcf, 0x53, 0xc8, 0xd8, 0x3f, 0x01, 0xbc, 0xba, - 0xd6, 0x23, 0xeb, 0xeb, 0x17, 0xe8, 0xc3, 0xd5, 0x20, 0x0c, 0x52, 0x4a, 0x2a, 0x5d, 0x52, 0x69, - 0xb9, 0x22, 0x4f, 0xf6, 0xad, 0xa2, 0x44, 0xab, 0x78, 0xb2, 0x47, 0x75, 0xb4, 0xef, 0xef, 0x1d, - 0x5a, 0x60, 0xff, 0xd0, 0x02, 0xbf, 0x0f, 0x2d, 0xb0, 0x7d, 0x64, 0x19, 0xfb, 0x47, 0x96, 0xf1, - 0xe3, 0xc8, 0x32, 0x5e, 0xde, 0x2c, 0x58, 0x9e, 0x6d, 0xf4, 0xef, 0xca, 0x47, 0xe8, 0xbe, 0xc9, - 0xee, 0x64, 0xe5, 0x7a, 0xbf, 0x22, 0x6f, 0xc1, 0x3b, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd6, - 0xa4, 0x55, 0xae, 0xbb, 0x07, 0x00, 0x00, + 0x0d, 0xe4, 0xbb, 0xb3, 0x6b, 0x25, 0x81, 0x2d, 0x55, 0x17, 0xc7, 0xef, 0xbd, 0x77, 0xef, 0xf3, + 0x3c, 0xaf, 0x9f, 0x37, 0x07, 0x2b, 0xdb, 0x98, 0x0b, 0x42, 0x43, 0x77, 0x7b, 0xcd, 0xc3, 0x02, + 0xad, 0xb9, 0x3a, 0x76, 0x7a, 0x31, 0x13, 0xcc, 0x9c, 0x49, 0x43, 0x9d, 0x5e, 0x9a, 0x43, 0x11, + 0xa1, 0xcc, 0x95, 0x4f, 0xb5, 0x67, 0xc9, 0xf2, 0x19, 0x8f, 0x18, 0x77, 0x51, 0x5f, 0x74, 0xb2, + 0x32, 0x49, 0x30, 0x90, 0xf7, 0x10, 0xc7, 0x59, 0xde, 0x67, 0x84, 0xea, 0xfc, 0x7c, 0xc8, 0x42, + 0x26, 0x5f, 0xdd, 0xe4, 0x4d, 0xad, 0xda, 0x9f, 0x8b, 0xd0, 0x6c, 0x22, 0x8e, 0x5f, 0x28, 0x02, + 0x0f, 0x7c, 0x9f, 0xf5, 0xa9, 0x30, 0x1f, 0xc3, 0xcb, 0x49, 0x9d, 0x36, 0x52, 0x71, 0x19, 0xd4, + 0x40, 0x7d, 0x6a, 0xbd, 0xe6, 0x28, 0x0c, 0x47, 0xc2, 0x6a, 0x0c, 0x27, 0x39, 0xae, 0xcf, 0x35, + 0x8b, 0x87, 0x47, 0x55, 0xd0, 0x9a, 0xf2, 0xce, 0x96, 0xcc, 0xb7, 0x70, 0x96, 0xc5, 0x24, 0x24, + 0x14, 0x75, 0xdb, 0x5a, 0x66, 0x79, 0xa2, 0x56, 0xa8, 0x4f, 0xad, 0x2f, 0xa6, 0xe5, 0x92, 0xed, + 0x59, 0xb9, 0x0d, 0x46, 0x68, 0xf3, 0xde, 0xc1, 0x51, 0xd5, 0xf8, 0xfe, 0xab, 0x5a, 0x0f, 0x89, + 0xe8, 0xf4, 0x3d, 0xc7, 0x67, 0x91, 0xab, 0xf5, 0xa9, 0x9f, 0x55, 0x1e, 0x6c, 0xb9, 0x62, 0xa7, + 0x87, 0xb9, 0x3c, 0xc0, 0xbf, 0x9d, 0xee, 0xaf, 0x80, 0xd6, 0x4c, 0x8a, 0xa4, 0xe5, 0x98, 0xaf, + 0xe1, 0x74, 0x80, 0xbb, 0x38, 0x44, 0x02, 0x07, 0xed, 0xcd, 0x18, 0xe3, 0x72, 0x61, 0x4c, 0xd0, + 0x57, 0x32, 0x9c, 0x47, 0x31, 0xc6, 0xe6, 0x3b, 0x38, 0x77, 0x06, 0x9c, 0xca, 0x2e, 0x8e, 0x09, + 0x7b, 0x36, 0x83, 0x4a, 0x75, 0x2f, 0xc2, 0x4b, 0x98, 0x06, 0x6d, 0x41, 0x22, 0x5c, 0xfe, 0xaf, + 0x06, 0xea, 0x85, 0xd6, 0xff, 0x98, 0x06, 0xcf, 0x49, 0x84, 0x1b, 0x2b, 0xef, 0xf7, 0xaa, 0xc6, + 0xa7, 0xbd, 0xaa, 0xf1, 0xe1, 0x74, 0x7f, 0xa5, 0x92, 0x2b, 0x3b, 0x6c, 0x03, 0xfb, 0x00, 0xc0, + 0xf2, 0x06, 0xa3, 0x82, 0xd0, 0x3e, 0xeb, 0xf3, 0x01, 0x8f, 0xbc, 0x82, 0xf3, 0xd2, 0x23, 0x5a, + 0xdd, 0x80, 0x57, 0x96, 0x9d, 0x01, 0x4f, 0x3b, 0xc3, 0xf5, 0xb5, 0x5d, 0x4c, 0x6f, 0xd8, 0x80, + 0x15, 0x08, 0xb9, 0x40, 0xb1, 0x50, 0x12, 0x26, 0xa4, 0x84, 0x49, 0xb9, 0x22, 0x45, 0xdc, 0xce, + 0x8b, 0x58, 0xce, 0x89, 0xf8, 0x1b, 0x5b, 0xfb, 0x0b, 0x80, 0xd7, 0x1e, 0xe2, 0x2e, 0xda, 0xc9, + 0x9a, 0x74, 0x1e, 0x3a, 0x1a, 0xab, 0x79, 0xa2, 0xb5, 0x1c, 0xd1, 0x91, 0x5c, 0xec, 0x5d, 0x00, + 0x4b, 0xcf, 0x70, 0x4c, 0x58, 0x60, 0x2e, 0xc0, 0x52, 0x17, 0xd3, 0x50, 0x74, 0x24, 0x91, 0x42, + 0x4b, 0x47, 0x66, 0x07, 0x96, 0x50, 0x24, 0x09, 0x8e, 0x6b, 0x8a, 0x74, 0xfd, 0x46, 0x31, 0xe1, + 0x6d, 0x7f, 0x9c, 0x80, 0x0b, 0x8a, 0x12, 0xf1, 0x2f, 0x8e, 0x03, 0xcc, 0x27, 0x30, 0xfd, 0xd3, + 0x6c, 0xf7, 0x24, 0x3b, 0xae, 0x47, 0xfb, 0xfa, 0x10, 0xac, 0x62, 0xdf, 0x9c, 0x4c, 0xba, 0xa1, + 0x14, 0x4e, 0xeb, 0x2d, 0x2a, 0xc3, 0x1b, 0x4e, 0xfe, 0x2b, 0xdd, 0xc8, 0xf5, 0x66, 0xb4, 0x70, + 0xfb, 0x2b, 0x90, 0x3d, 0x89, 0x10, 0xc5, 0x54, 0x3c, 0x65, 0xfe, 0x16, 0x0e, 0xce, 0xc5, 0x4d, + 0xff, 0xe2, 0x39, 0x82, 0x8c, 0xfd, 0x13, 0xc0, 0xab, 0x1b, 0x5d, 0xb2, 0xb9, 0x79, 0x81, 0x3e, + 0x5c, 0x05, 0x42, 0x3f, 0xa1, 0xa4, 0xd2, 0x05, 0x95, 0x96, 0x2b, 0x72, 0xb2, 0x6f, 0xe5, 0x25, + 0x5a, 0xf9, 0xc9, 0x1e, 0xd6, 0xd1, 0xbc, 0x7f, 0x70, 0x6c, 0x81, 0xc3, 0x63, 0x0b, 0xfc, 0x3e, + 0xb6, 0xc0, 0xee, 0x89, 0x65, 0x1c, 0x9e, 0x58, 0xc6, 0x8f, 0x13, 0xcb, 0x78, 0x79, 0x33, 0x67, + 0x79, 0xb6, 0xd5, 0xbb, 0x2b, 0x1f, 0x81, 0xfb, 0x26, 0xbd, 0x78, 0x95, 0xeb, 0xbd, 0x92, 0xbc, + 0x05, 0xef, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xd0, 0xdc, 0xf8, 0xa0, 0x07, 0x00, 0x00, } func (m *BaseVestingAccount) Marshal() (dAtA []byte, err error) {