diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto index 8f2d7b5c1c..d4f4eace11 100644 --- a/proto/interchain_security/ccv/provider/v1/tx.proto +++ b/proto/interchain_security/ccv/provider/v1/tx.proto @@ -44,7 +44,7 @@ service Msg { message MsgAssignConsumerKey { - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "submitter"; option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; @@ -58,8 +58,7 @@ message MsgAssignConsumerKey { // `{"@type":"/cosmos.crypto.ed25519.PubKey","key":"Ui5Gf1+mtWUdH8u3xlmzdKID+F3PK0sfXZ73GZ6q6is="}` string consumer_key = 3; - // Tx signer address - string signer = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string submitter = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the consumer id of the consumer chain to assign a consensus public key to string consumer_id = 5; @@ -109,7 +108,7 @@ message MsgSubmitConsumerDoubleVotingResponse {} message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; - // signer is the address of the governance account. + // authority is the address of the governance account. string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // params defines the x/provider parameters to update. @@ -224,11 +223,12 @@ message MsgConsumerRemovalResponse {} // MsgRemoveConsumer defines the message used to remove (and stop) a consumer chain. // If it passes, all the consumer chain's state is eventually removed from the provider chain. message MsgRemoveConsumer { - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "owner"; // the consumer id of the consumer chain to be stopped string consumer_id = 1; - string signer = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // the address of the owner of the consumer chain to be stopped + string owner = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgRemoveConsumerResponse defines response type for MsgRemoveConsumer messages @@ -245,7 +245,7 @@ message MsgChangeRewardDenoms { repeated string denoms_to_add = 1; // the list of consumer reward denoms to remove repeated string denoms_to_remove = 2; - // signer address + // authority is the address of the governance account string authority = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } @@ -256,7 +256,7 @@ message MsgChangeRewardDenomsResponse {} message MsgOptIn { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "submitter"; // [DEPRECATED] use `consumer_id` instead string chain_id = 1 [deprecated = true]; // the validator address on the provider @@ -266,8 +266,8 @@ message MsgOptIn { // This field is optional and can remain empty (i.e., `consumer_key = ""`). A validator can always change the // consumer public key at a later stage by issuing a `MsgAssignConsumerKey` message. string consumer_key = 3; - // signer address - string signer = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // submitter address + string submitter = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the consumer id of the consumer chain to opt in to string consumer_id = 5; } @@ -277,13 +277,13 @@ message MsgOptInResponse {} message MsgOptOut { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "submitter"; // [DEPRECATED] use `consumer_id` instead string chain_id = 1 [deprecated = true]; // the validator address on the provider string provider_addr = 2 [ (gogoproto.moretags) = "yaml:\"address\"" ]; - // signer address - string signer = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // submitter address + string submitter = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the consumer id of the consumer chain to opt out from string consumer_id = 4; } @@ -295,7 +295,7 @@ message MsgOptOutResponse {} message MsgSetConsumerCommissionRate { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "submitter"; // The validator address on the provider string provider_addr = 1 [ (gogoproto.moretags) = "yaml:\"address\"" ]; @@ -308,8 +308,8 @@ message MsgSetConsumerCommissionRate { (gogoproto.customtype) = "cosmossdk.io/math.LegacyDec", (gogoproto.nullable) = false ]; - // signer address - string signer = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // submitter address + string submitter = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the consumer id of the consumer chain to set the commission rate string consumer_id = 5; } @@ -358,10 +358,11 @@ message MsgConsumerModificationResponse {} // MsgCreateConsumer defines the message that creates a consumer chain message MsgCreateConsumer { - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "submitter"; - // signer address - string signer = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // Submitter address. If the message is successfully handled, the ownership of + // the consumer chain will given to this address. + string submitter = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the chain id of the new consumer chain string chain_id = 2; @@ -380,10 +381,10 @@ message MsgCreateConsumerResponse { // MsgUpdateConsumer defines the message used to modify a consumer chain. message MsgUpdateConsumer { - option (cosmos.msg.v1.signer) = "signer"; + option (cosmos.msg.v1.signer) = "owner"; - // signer address - string signer = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + // the address of the owner of the consumer chain to be updated + string owner = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // the consumer id of the consumer chain to be updated string consumer_id = 2; diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index b1356814eb..18f1c6de4a 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -591,7 +591,7 @@ func (tr Chain) submitConsumerAdditionProposal( // - set PowerShaping params TopN > 0 for consumer chain update.PowerShapingParameters.Top_N = action.TopN - update.Signer = authority + update.Owner = authority update.NewOwnerAddress = "" update.InitializationParameters = &initializationParameters update.InitializationParameters.SpawnTime = spawnTime @@ -761,7 +761,7 @@ func (tr Chain) submitConsumerRemovalProposal( msg := types.MsgRemoveConsumer{ ConsumerId: consumerId, - Signer: authority, + Owner: authority, } jsonStr := e2e.GenerateGovProposalContent(title, summary, metadata, deposit, description, expedited, &msg) @@ -881,7 +881,7 @@ func (tr Chain) submitConsumerModificationProposal( authority := "cosmos10d07y265gmmuvt4z0w9aw880jnsr700j6zn9kn" msg := types.MsgUpdateConsumer{ - Signer: authority, + Owner: authority, ConsumerId: consumerId, PowerShapingParameters: &types.PowerShapingParameters{ Top_N: action.TopN, diff --git a/testutil/keeper/unit_test_helpers.go b/testutil/keeper/unit_test_helpers.go index a35670d955..1c11c2c7e9 100644 --- a/testutil/keeper/unit_test_helpers.go +++ b/testutil/keeper/unit_test_helpers.go @@ -317,7 +317,7 @@ func GetTestPowerShapingParameters() providertypes.PowerShapingParameters { func GetTestMsgUpdateConsumer() providertypes.MsgUpdateConsumer { return providertypes.MsgUpdateConsumer{ - Signer: "signer", + Owner: "owner", ConsumerId: "consumerId", NewOwnerAddress: "newOwnerAddress", } diff --git a/x/ccv/provider/client/cli/tx.go b/x/ccv/provider/client/cli/tx.go index 03080fc8b3..d8fe3f973c 100644 --- a/x/ccv/provider/client/cli/tx.go +++ b/x/ccv/provider/client/cli/tx.go @@ -424,10 +424,6 @@ Example: signer := clientCtx.GetFromAddress().String() consumerId := args[0] - if err != nil { - return err - } - msg, err := types.NewMsgRemoveConsumer(signer, consumerId) if err != nil { return err diff --git a/x/ccv/provider/keeper/msg_server.go b/x/ccv/provider/keeper/msg_server.go index 088be381e4..bf4d7c93d5 100644 --- a/x/ccv/provider/keeper/msg_server.go +++ b/x/ccv/provider/keeper/msg_server.go @@ -289,7 +289,7 @@ func (k msgServer) CreateConsumer(goCtx context.Context, msg *types.MsgCreateCon consumerId := k.Keeper.FetchAndIncrementConsumerId(ctx) - k.Keeper.SetConsumerOwnerAddress(ctx, consumerId, msg.Signer) + k.Keeper.SetConsumerOwnerAddress(ctx, consumerId, msg.Submitter) k.Keeper.SetConsumerChainId(ctx, consumerId, msg.ChainId) k.Keeper.SetConsumerPhase(ctx, consumerId, types.CONSUMER_PHASE_REGISTERED) @@ -360,8 +360,8 @@ func (k msgServer) UpdateConsumer(goCtx context.Context, msg *types.MsgUpdateCon return &resp, errorsmod.Wrapf(types.ErrNoOwnerAddress, "cannot retrieve owner address %s", ownerAddress) } - if msg.Signer != ownerAddress { - return &resp, errorsmod.Wrapf(types.ErrUnauthorized, "expected owner address %s, got %s", ownerAddress, msg.Signer) + if msg.Owner != ownerAddress { + return &resp, errorsmod.Wrapf(types.ErrUnauthorized, "expected owner address %s, got %s", ownerAddress, msg.Owner) } // The new owner address can be empty, in which case the consumer chain does not change its owner. @@ -463,8 +463,8 @@ func (k msgServer) RemoveConsumer(goCtx context.Context, msg *types.MsgRemoveCon return &resp, errorsmod.Wrapf(types.ErrNoOwnerAddress, "cannot retrieve owner address %s", ownerAddress) } - if msg.Signer != ownerAddress { - return &resp, errorsmod.Wrapf(types.ErrUnauthorized, "expected owner address %s, got %s", ownerAddress, msg.Signer) + if msg.Owner != ownerAddress { + return &resp, errorsmod.Wrapf(types.ErrUnauthorized, "expected owner address %s, got %s", ownerAddress, msg.Owner) } phase := k.Keeper.GetConsumerPhase(ctx, consumerId) diff --git a/x/ccv/provider/keeper/msg_server_test.go b/x/ccv/provider/keeper/msg_server_test.go index 994c4a6fd0..66ddaefff9 100644 --- a/x/ccv/provider/keeper/msg_server_test.go +++ b/x/ccv/provider/keeper/msg_server_test.go @@ -22,7 +22,7 @@ func TestCreateConsumer(t *testing.T) { Description: "description", } response, err := msgServer.CreateConsumer(ctx, - &providertypes.MsgCreateConsumer{Signer: "signer", ChainId: "chainId", Metadata: consumerMetadata, + &providertypes.MsgCreateConsumer{Submitter: "submitter", ChainId: "chainId", Metadata: consumerMetadata, InitializationParameters: &providertypes.ConsumerInitializationParameters{}, PowerShapingParameters: &providertypes.PowerShapingParameters{}}) require.NoError(t, err) @@ -32,7 +32,7 @@ func TestCreateConsumer(t *testing.T) { require.Equal(t, consumerMetadata, actualMetadata) ownerAddress, err := providerKeeper.GetConsumerOwnerAddress(ctx, "0") require.NoError(t, err) - require.Equal(t, "signer", ownerAddress) + require.Equal(t, "submitter", ownerAddress) phase := providerKeeper.GetConsumerPhase(ctx, "0") require.Equal(t, providertypes.CONSUMER_PHASE_REGISTERED, phase) @@ -41,7 +41,7 @@ func TestCreateConsumer(t *testing.T) { Description: "description2", } response, err = msgServer.CreateConsumer(ctx, - &providertypes.MsgCreateConsumer{Signer: "signer2", ChainId: "chainId", Metadata: consumerMetadata, + &providertypes.MsgCreateConsumer{Submitter: "submitter2", ChainId: "chainId", Metadata: consumerMetadata, InitializationParameters: &providertypes.ConsumerInitializationParameters{}, PowerShapingParameters: &providertypes.PowerShapingParameters{}}) require.NoError(t, err) @@ -52,7 +52,7 @@ func TestCreateConsumer(t *testing.T) { require.Equal(t, consumerMetadata, actualMetadata) ownerAddress, err = providerKeeper.GetConsumerOwnerAddress(ctx, "1") require.NoError(t, err) - require.Equal(t, "signer2", ownerAddress) + require.Equal(t, "submitter2", ownerAddress) phase = providerKeeper.GetConsumerPhase(ctx, "1") require.Equal(t, providertypes.CONSUMER_PHASE_REGISTERED, phase) } @@ -65,7 +65,7 @@ func TestUpdateConsumer(t *testing.T) { // try to update a non-existing (i.e., no consumer id exists) _, err := msgServer.UpdateConsumer(ctx, - &providertypes.MsgUpdateConsumer{Signer: "signer", ConsumerId: "0", NewOwnerAddress: "cosmos1dkas8mu4kyhl5jrh4nzvm65qz588hy9qcz08la", + &providertypes.MsgUpdateConsumer{Owner: "owner", ConsumerId: "0", NewOwnerAddress: "cosmos1dkas8mu4kyhl5jrh4nzvm65qz588hy9qcz08la", Metadata: nil, InitializationParameters: nil, PowerShapingParameters: nil, @@ -74,7 +74,7 @@ func TestUpdateConsumer(t *testing.T) { // create a chain before updating it createConsumerResponse, err := msgServer.CreateConsumer(ctx, - &providertypes.MsgCreateConsumer{Signer: "signer", ChainId: "chainId", + &providertypes.MsgCreateConsumer{Submitter: "submitter", ChainId: "chainId", Metadata: providertypes.ConsumerMetadata{ Name: "name", Description: "description", @@ -88,7 +88,7 @@ func TestUpdateConsumer(t *testing.T) { mocks.MockAccountKeeper.EXPECT().AddressCodec().Return(address.NewBech32Codec("cosmos")).AnyTimes() _, err = msgServer.UpdateConsumer(ctx, - &providertypes.MsgUpdateConsumer{Signer: "wrong signer", ConsumerId: consumerId, NewOwnerAddress: "cosmos1dkas8mu4kyhl5jrh4nzvm65qz588hy9qcz08la", + &providertypes.MsgUpdateConsumer{Owner: "wrong owner", ConsumerId: consumerId, NewOwnerAddress: "cosmos1dkas8mu4kyhl5jrh4nzvm65qz588hy9qcz08la", Metadata: nil, InitializationParameters: nil, PowerShapingParameters: nil, @@ -106,7 +106,7 @@ func TestUpdateConsumer(t *testing.T) { expectedOwnerAddress := "cosmos1dkas8mu4kyhl5jrh4nzvm65qz588hy9qcz08la" _, err = msgServer.UpdateConsumer(ctx, - &providertypes.MsgUpdateConsumer{Signer: "signer", ConsumerId: consumerId, NewOwnerAddress: expectedOwnerAddress, + &providertypes.MsgUpdateConsumer{Owner: "submitter", ConsumerId: consumerId, NewOwnerAddress: expectedOwnerAddress, Metadata: &expectedConsumerMetadata, InitializationParameters: &expectedInitializationParameters, PowerShapingParameters: &expectedPowerShapingParameters}) @@ -148,7 +148,7 @@ func TestUpdateConsumer(t *testing.T) { updatedSpawnTime := expectedInitializationParameters.SpawnTime.Add(time.Hour) expectedInitializationParameters.SpawnTime = updatedSpawnTime _, err = msgServer.UpdateConsumer(ctx, - &providertypes.MsgUpdateConsumer{Signer: expectedOwnerAddress, ConsumerId: consumerId, + &providertypes.MsgUpdateConsumer{Owner: expectedOwnerAddress, ConsumerId: consumerId, Metadata: &expectedConsumerMetadata, InitializationParameters: &expectedInitializationParameters, PowerShapingParameters: &expectedPowerShapingParameters}) diff --git a/x/ccv/provider/keeper/relay.go b/x/ccv/provider/keeper/relay.go index 5abb074c22..8fc0c08500 100644 --- a/x/ccv/provider/keeper/relay.go +++ b/x/ccv/provider/keeper/relay.go @@ -140,7 +140,7 @@ func (k Keeper) BlocksUntilNextEpoch(ctx sdk.Context) int64 { // If the CCV channel is not established for a consumer chain, // the updates will remain queued until the channel is established // -// TODO (mpoke): iterate only over consumers with established channel +// TODO (mpoke): iterate only over consumers with established channel -- GetAllChannelToConsumers func (k Keeper) SendVSCPackets(ctx sdk.Context) error { for _, consumerId := range k.GetAllConsumersWithIBCClients(ctx) { if k.GetConsumerPhase(ctx, consumerId) != providertypes.CONSUMER_PHASE_LAUNCHED { @@ -202,7 +202,7 @@ func (k Keeper) SendVSCPacketsToChain(ctx sdk.Context, consumerId, channelId str // QueueVSCPackets queues latest validator updates for every consumer chain // with the IBC client created. // -// TODO (mpoke): iterate only over consumers with established channel +// TODO (mpoke): iterate only over consumers with established channel -- GetAllChannelToConsumers func (k Keeper) QueueVSCPackets(ctx sdk.Context) error { valUpdateID := k.GetValidatorSetUpdateId(ctx) // current valset update ID diff --git a/x/ccv/provider/types/msg.go b/x/ccv/provider/types/msg.go index 07fdb18b04..66517ca773 100644 --- a/x/ccv/provider/types/msg.go +++ b/x/ccv/provider/types/msg.go @@ -60,13 +60,13 @@ var ( // NewMsgAssignConsumerKey creates a new MsgAssignConsumerKey instance. // Delegator address and validator address are the same. func NewMsgAssignConsumerKey(consumerId string, providerValidatorAddress sdk.ValAddress, - consumerConsensusPubKey, signer string, + consumerConsensusPubKey, submitter string, ) (*MsgAssignConsumerKey, error) { return &MsgAssignConsumerKey{ ConsumerId: consumerId, ProviderAddr: providerValidatorAddress.String(), ConsumerKey: consumerConsensusPubKey, - Signer: signer, + Submitter: submitter, }, nil } @@ -80,7 +80,7 @@ func (msg MsgAssignConsumerKey) ValidateBasic() error { return errorsmod.Wrapf(ErrInvalidMsgAssignConsumerKey, "ConsumerId: %s", err.Error()) } - if err := validateProviderAddress(msg.ProviderAddr, msg.Signer); err != nil { + if err := validateProviderAddress(msg.ProviderAddr, msg.Submitter); err != nil { return errorsmod.Wrapf(ErrInvalidMsgAssignConsumerKey, "ProviderAddr: %s", err.Error()) } @@ -186,12 +186,12 @@ func (msg MsgSubmitConsumerDoubleVoting) ValidateBasic() error { } // NewMsgOptIn creates a new NewMsgOptIn instance. -func NewMsgOptIn(consumerId string, providerValidatorAddress sdk.ValAddress, consumerConsensusPubKey, signer string) (*MsgOptIn, error) { +func NewMsgOptIn(consumerId string, providerValidatorAddress sdk.ValAddress, consumerConsensusPubKey, submitter string) (*MsgOptIn, error) { return &MsgOptIn{ ConsumerId: consumerId, ProviderAddr: providerValidatorAddress.String(), ConsumerKey: consumerConsensusPubKey, - Signer: signer, + Submitter: submitter, }, nil } @@ -205,7 +205,7 @@ func (msg MsgOptIn) ValidateBasic() error { return errorsmod.Wrapf(ErrInvalidMsgOptIn, "ConsumerId: %s", err.Error()) } - if err := validateProviderAddress(msg.ProviderAddr, msg.Signer); err != nil { + if err := validateProviderAddress(msg.ProviderAddr, msg.Submitter); err != nil { return errorsmod.Wrapf(ErrInvalidMsgOptIn, "ProviderAddr: %s", err.Error()) } @@ -218,11 +218,11 @@ func (msg MsgOptIn) ValidateBasic() error { } // NewMsgOptOut creates a new NewMsgOptIn instance. -func NewMsgOptOut(consumerId string, providerValidatorAddress sdk.ValAddress, signer string) (*MsgOptOut, error) { +func NewMsgOptOut(consumerId string, providerValidatorAddress sdk.ValAddress, submitter string) (*MsgOptOut, error) { return &MsgOptOut{ ConsumerId: consumerId, ProviderAddr: providerValidatorAddress.String(), - Signer: signer, + Submitter: submitter, }, nil } @@ -236,7 +236,7 @@ func (msg MsgOptOut) ValidateBasic() error { return errorsmod.Wrapf(ErrInvalidMsgOptOut, "ConsumerId: %s", err.Error()) } - if err := validateProviderAddress(msg.ProviderAddr, msg.Signer); err != nil { + if err := validateProviderAddress(msg.ProviderAddr, msg.Submitter); err != nil { return errorsmod.Wrapf(ErrInvalidMsgOptOut, "ProviderAddr: %s", err.Error()) } @@ -248,13 +248,13 @@ func NewMsgSetConsumerCommissionRate( consumerId string, commission math.LegacyDec, providerValidatorAddress sdk.ValAddress, - signer string, + submitter string, ) *MsgSetConsumerCommissionRate { return &MsgSetConsumerCommissionRate{ ConsumerId: consumerId, Rate: commission, ProviderAddr: providerValidatorAddress.String(), - Signer: signer, + Submitter: submitter, } } @@ -268,7 +268,7 @@ func (msg MsgSetConsumerCommissionRate) ValidateBasic() error { return errorsmod.Wrapf(ErrInvalidMsgSetConsumerCommissionRate, "ConsumerId: %s", err.Error()) } - if err := validateProviderAddress(msg.ProviderAddr, msg.Signer); err != nil { + if err := validateProviderAddress(msg.ProviderAddr, msg.Submitter); err != nil { return errorsmod.Wrapf(ErrInvalidMsgSetConsumerCommissionRate, "ProviderAddr: %s", err.Error()) } @@ -280,10 +280,10 @@ func (msg MsgSetConsumerCommissionRate) ValidateBasic() error { } // NewMsgCreateConsumer creates a new MsgCreateConsumer instance -func NewMsgCreateConsumer(signer string, chainId string, metadata ConsumerMetadata, +func NewMsgCreateConsumer(submitter string, chainId string, metadata ConsumerMetadata, initializationParameters *ConsumerInitializationParameters, powerShapingParameters *PowerShapingParameters) (*MsgCreateConsumer, error) { return &MsgCreateConsumer{ - Signer: signer, + Submitter: submitter, ChainId: chainId, Metadata: metadata, InitializationParameters: initializationParameters, @@ -321,10 +321,10 @@ func (msg MsgCreateConsumer) ValidateBasic() error { } // NewMsgUpdateConsumer creates a new MsgUpdateConsumer instance -func NewMsgUpdateConsumer(signer string, consumerId string, ownerAddress string, metadata *ConsumerMetadata, +func NewMsgUpdateConsumer(owner string, consumerId string, ownerAddress string, metadata *ConsumerMetadata, initializationParameters *ConsumerInitializationParameters, powerShapingParameters *PowerShapingParameters) (*MsgUpdateConsumer, error) { return &MsgUpdateConsumer{ - Signer: signer, + Owner: owner, ConsumerId: consumerId, NewOwnerAddress: ownerAddress, Metadata: metadata, @@ -363,9 +363,9 @@ func (msg MsgUpdateConsumer) ValidateBasic() error { } // NewMsgRemoveConsumer creates a new MsgRemoveConsumer instance -func NewMsgRemoveConsumer(signer string, consumerId string) (*MsgRemoveConsumer, error) { +func NewMsgRemoveConsumer(owner string, consumerId string) (*MsgRemoveConsumer, error) { return &MsgRemoveConsumer{ - Signer: signer, + Owner: owner, ConsumerId: consumerId, }, nil } diff --git a/x/ccv/provider/types/msg_test.go b/x/ccv/provider/types/msg_test.go index e7c8ebb85d..72e4712f59 100644 --- a/x/ccv/provider/types/msg_test.go +++ b/x/ccv/provider/types/msg_test.go @@ -456,7 +456,7 @@ func TestMsgAssignConsumerKeyValidateBasic(t *testing.T) { name string chainId string providerAddr string - signer string + submitter string consumerKey string consumerId string expErr bool @@ -488,24 +488,24 @@ func TestMsgAssignConsumerKeyValidateBasic(t *testing.T) { expErr: true, }, { - name: "invalid: provider address != signer address", + name: "invalid: provider address != submitter address", consumerId: "1", providerAddr: valOpAddr1.String(), - signer: acc2, + submitter: acc2, expErr: true, }, { name: "invalid: consumer pubkey empty", consumerId: "1", providerAddr: valOpAddr1.String(), - signer: acc1, + submitter: acc1, expErr: true, }, { name: "valid", consumerId: "1", providerAddr: valOpAddr1.String(), - signer: acc1, + submitter: acc1, consumerKey: "{\"@type\": \"/cosmos.crypto.ed25519.PubKey\", \"key\": \"e3BehnEIlGUAnJYn9V8gBXuMh4tXO8xxlxyXD1APGyk=\"}", expErr: false, }, @@ -518,7 +518,7 @@ func TestMsgAssignConsumerKeyValidateBasic(t *testing.T) { ChainId: tc.chainId, ConsumerKey: tc.consumerKey, ProviderAddr: tc.providerAddr, - Signer: tc.signer, + Submitter: tc.submitter, ConsumerId: tc.consumerId, } diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go index a656dd8f7d..999fffef8a 100644 --- a/x/ccv/provider/types/tx.pb.go +++ b/x/ccv/provider/types/tx.pb.go @@ -51,8 +51,7 @@ type MsgAssignConsumerKey struct { // in json string format corresponding to proto-any, ex: // `{"@type":"/cosmos.crypto.ed25519.PubKey","key":"Ui5Gf1+mtWUdH8u3xlmzdKID+F3PK0sfXZ73GZ6q6is="}` ConsumerKey string `protobuf:"bytes,3,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` - // Tx signer address - Signer string `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"` + Submitter string `protobuf:"bytes,4,opt,name=submitter,proto3" json:"submitter,omitempty"` // the consumer id of the consumer chain to assign a consensus public key to ConsumerId string `protobuf:"bytes,5,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` } @@ -290,7 +289,7 @@ var xxx_messageInfo_MsgSubmitConsumerDoubleVotingResponse proto.InternalMessageI // MsgUpdateParams is the Msg/UpdateParams request type type MsgUpdateParams struct { - // signer is the address of the governance account. + // authority is the address of the governance account. Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"` // params defines the x/provider parameters to update. Params Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params"` @@ -771,7 +770,8 @@ var xxx_messageInfo_MsgConsumerRemovalResponse proto.InternalMessageInfo type MsgRemoveConsumer struct { // the consumer id of the consumer chain to be stopped ConsumerId string `protobuf:"bytes,1,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` - Signer string `protobuf:"bytes,2,opt,name=signer,proto3" json:"signer,omitempty"` + // the address of the owner of the consumer chain to be stopped + Owner string `protobuf:"bytes,2,opt,name=owner,proto3" json:"owner,omitempty"` } func (m *MsgRemoveConsumer) Reset() { *m = MsgRemoveConsumer{} } @@ -814,9 +814,9 @@ func (m *MsgRemoveConsumer) GetConsumerId() string { return "" } -func (m *MsgRemoveConsumer) GetSigner() string { +func (m *MsgRemoveConsumer) GetOwner() string { if m != nil { - return m.Signer + return m.Owner } return "" } @@ -867,7 +867,7 @@ type MsgChangeRewardDenoms struct { DenomsToAdd []string `protobuf:"bytes,1,rep,name=denoms_to_add,json=denomsToAdd,proto3" json:"denoms_to_add,omitempty"` // the list of consumer reward denoms to remove DenomsToRemove []string `protobuf:"bytes,2,rep,name=denoms_to_remove,json=denomsToRemove,proto3" json:"denoms_to_remove,omitempty"` - // signer address + // authority is the address of the governance account Authority string `protobuf:"bytes,3,opt,name=authority,proto3" json:"authority,omitempty"` } @@ -972,8 +972,8 @@ type MsgOptIn struct { // This field is optional and can remain empty (i.e., `consumer_key = ""`). A validator can always change the // consumer public key at a later stage by issuing a `MsgAssignConsumerKey` message. ConsumerKey string `protobuf:"bytes,3,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` - // signer address - Signer string `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"` + // submitter address + Submitter string `protobuf:"bytes,4,opt,name=submitter,proto3" json:"submitter,omitempty"` // the consumer id of the consumer chain to opt in to ConsumerId string `protobuf:"bytes,5,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` } @@ -1052,8 +1052,8 @@ type MsgOptOut struct { ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` // Deprecated: Do not use. // the validator address on the provider ProviderAddr string `protobuf:"bytes,2,opt,name=provider_addr,json=providerAddr,proto3" json:"provider_addr,omitempty" yaml:"address"` - // signer address - Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"` + // submitter address + Submitter string `protobuf:"bytes,3,opt,name=submitter,proto3" json:"submitter,omitempty"` // the consumer id of the consumer chain to opt out from ConsumerId string `protobuf:"bytes,4,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` } @@ -1137,8 +1137,8 @@ type MsgSetConsumerCommissionRate struct { // The rate to charge delegators on the consumer chain, as a fraction // TODO: migrate rate from sdk.Dec to math.LegacyDec Rate cosmossdk_io_math.LegacyDec `protobuf:"bytes,3,opt,name=rate,proto3,customtype=cosmossdk.io/math.LegacyDec" json:"rate"` - // signer address - Signer string `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"` + // submitter address + Submitter string `protobuf:"bytes,4,opt,name=submitter,proto3" json:"submitter,omitempty"` // the consumer id of the consumer chain to set the commission rate ConsumerId string `protobuf:"bytes,5,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` } @@ -1395,8 +1395,9 @@ var xxx_messageInfo_MsgConsumerModificationResponse proto.InternalMessageInfo // MsgCreateConsumer defines the message that creates a consumer chain type MsgCreateConsumer struct { - // signer address - Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"` + // Submitter address. If the message is successfully handled, the ownership of + // the consumer chain will given to this address. + Submitter string `protobuf:"bytes,1,opt,name=submitter,proto3" json:"submitter,omitempty"` // the chain id of the new consumer chain ChainId string `protobuf:"bytes,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` Metadata ConsumerMetadata `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata"` @@ -1437,9 +1438,9 @@ func (m *MsgCreateConsumer) XXX_DiscardUnknown() { var xxx_messageInfo_MsgCreateConsumer proto.InternalMessageInfo -func (m *MsgCreateConsumer) GetSigner() string { +func (m *MsgCreateConsumer) GetSubmitter() string { if m != nil { - return m.Signer + return m.Submitter } return "" } @@ -1519,8 +1520,8 @@ func (m *MsgCreateConsumerResponse) GetConsumerId() string { // MsgUpdateConsumer defines the message used to modify a consumer chain. type MsgUpdateConsumer struct { - // signer address - Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"` + // the address of the owner of the consumer chain to be updated + Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` // the consumer id of the consumer chain to be updated ConsumerId string `protobuf:"bytes,2,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"` // the new owner of the consumer when updated @@ -1566,9 +1567,9 @@ func (m *MsgUpdateConsumer) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateConsumer proto.InternalMessageInfo -func (m *MsgUpdateConsumer) GetSigner() string { +func (m *MsgUpdateConsumer) GetOwner() string { if m != nil { - return m.Signer + return m.Owner } return "" } @@ -1681,138 +1682,137 @@ func init() { } var fileDescriptor_43221a4391e9fbf4 = []byte{ - // 2081 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4d, 0x70, 0x1c, 0x47, - 0x15, 0xd6, 0xec, 0xae, 0xe4, 0xdd, 0x5e, 0x59, 0x3f, 0x2d, 0x39, 0x1a, 0xad, 0x6d, 0xad, 0x2c, - 0x42, 0xa2, 0x32, 0xd1, 0x6c, 0x2c, 0xb0, 0x03, 0xc2, 0xfc, 0xe8, 0xc7, 0x60, 0x05, 0x64, 0x29, - 0x23, 0xe3, 0x54, 0x41, 0x15, 0x53, 0xbd, 0x33, 0xed, 0xd9, 0x2e, 0xef, 0x4c, 0x4f, 0x4d, 0xf7, - 0xae, 0x22, 0x4e, 0x54, 0x4e, 0x3e, 0x9a, 0x0a, 0x07, 0x6e, 0xe4, 0x00, 0x07, 0xaa, 0x80, 0xca, - 0x21, 0x27, 0x8e, 0x9c, 0x52, 0xc5, 0x25, 0xe4, 0x44, 0xe5, 0x60, 0x28, 0xfb, 0x10, 0x2e, 0x5c, - 0xb8, 0x71, 0xa3, 0xba, 0xa7, 0x67, 0x76, 0x66, 0x77, 0x25, 0x8f, 0x56, 0x10, 0x0e, 0x5c, 0x54, - 0x9a, 0x7e, 0xef, 0x7d, 0xef, 0xa7, 0x5f, 0xbf, 0xd7, 0xaf, 0x17, 0xbc, 0x46, 0x7c, 0x8e, 0x43, - 0xbb, 0x85, 0x88, 0x6f, 0x31, 0x6c, 0x77, 0x42, 0xc2, 0x8f, 0x1b, 0xb6, 0xdd, 0x6d, 0x04, 0x21, - 0xed, 0x12, 0x07, 0x87, 0x8d, 0xee, 0x8d, 0x06, 0x7f, 0xc7, 0x08, 0x42, 0xca, 0x29, 0xfc, 0xc2, - 0x10, 0x6e, 0xc3, 0xb6, 0xbb, 0x46, 0xcc, 0x6d, 0x74, 0x6f, 0xd4, 0x66, 0x91, 0x47, 0x7c, 0xda, - 0x90, 0x7f, 0x23, 0xb9, 0xda, 0x15, 0x97, 0x52, 0xb7, 0x8d, 0x1b, 0x28, 0x20, 0x0d, 0xe4, 0xfb, - 0x94, 0x23, 0x4e, 0xa8, 0xcf, 0x14, 0xb5, 0xae, 0xa8, 0xf2, 0xab, 0xd9, 0x79, 0xd8, 0xe0, 0xc4, - 0xc3, 0x8c, 0x23, 0x2f, 0x50, 0x0c, 0x4b, 0xfd, 0x0c, 0x4e, 0x27, 0x94, 0x08, 0x8a, 0xbe, 0xd8, - 0x4f, 0x47, 0xfe, 0xb1, 0x22, 0xcd, 0xbb, 0xd4, 0xa5, 0xf2, 0xdf, 0x86, 0xf8, 0x2f, 0x16, 0xb0, - 0x29, 0xf3, 0x28, 0xb3, 0x22, 0x42, 0xf4, 0xa1, 0x48, 0x0b, 0xd1, 0x57, 0xc3, 0x63, 0xae, 0x70, - 0xdd, 0x63, 0x6e, 0x6c, 0x25, 0x69, 0xda, 0x0d, 0x9b, 0x86, 0xb8, 0x61, 0xb7, 0x09, 0xf6, 0xb9, - 0xa0, 0x46, 0xff, 0x29, 0x86, 0xf5, 0x3c, 0xa1, 0x4c, 0x02, 0x15, 0xc9, 0x34, 0x04, 0x68, 0x9b, - 0xb8, 0x2d, 0x1e, 0x41, 0xb1, 0x06, 0xc7, 0xbe, 0x83, 0x43, 0x8f, 0x44, 0x0a, 0x7a, 0x5f, 0xb1, - 0x15, 0x29, 0x3a, 0x3f, 0x0e, 0x30, 0x6b, 0x60, 0x81, 0xe7, 0xdb, 0x38, 0x62, 0x58, 0xf9, 0x97, - 0x06, 0xe6, 0xf7, 0x98, 0xbb, 0xc9, 0x18, 0x71, 0xfd, 0x6d, 0xea, 0xb3, 0x8e, 0x87, 0xc3, 0xef, - 0xe1, 0x63, 0x78, 0x15, 0x94, 0x23, 0xdb, 0x88, 0xa3, 0x6b, 0xcb, 0xda, 0x6a, 0x65, 0xab, 0xa0, - 0x6b, 0xe6, 0x05, 0xb9, 0xb6, 0xeb, 0xc0, 0x37, 0xc0, 0xc5, 0xd8, 0x36, 0x0b, 0x39, 0x4e, 0xa8, - 0x17, 0x24, 0x0f, 0xfc, 0xe7, 0xd3, 0xfa, 0xd4, 0x31, 0xf2, 0xda, 0x1b, 0x2b, 0x62, 0x15, 0x33, - 0xb6, 0x62, 0x4e, 0xc6, 0x8c, 0x9b, 0x8e, 0x13, 0xc2, 0x6b, 0x60, 0xd2, 0x56, 0x6a, 0xac, 0x47, - 0xf8, 0x58, 0x2f, 0x0a, 0x39, 0xb3, 0x6a, 0xa7, 0x54, 0xbf, 0x0e, 0x26, 0x84, 0x35, 0x38, 0xd4, - 0x4b, 0x12, 0x54, 0xff, 0xe4, 0xc3, 0xb5, 0x79, 0x15, 0xf5, 0xcd, 0x08, 0xf5, 0x90, 0x87, 0xc4, - 0x77, 0x4d, 0xc5, 0x07, 0xeb, 0x20, 0x01, 0x10, 0xf6, 0x8e, 0x4b, 0x4c, 0x10, 0x2f, 0xed, 0x3a, - 0x1b, 0x73, 0x8f, 0xdf, 0xaf, 0x8f, 0xfd, 0xfd, 0xfd, 0xfa, 0xd8, 0xbb, 0x9f, 0x7d, 0x70, 0x5d, - 0x49, 0xad, 0x2c, 0x81, 0x2b, 0xc3, 0x5c, 0x37, 0x31, 0x0b, 0xa8, 0xcf, 0xf0, 0xca, 0x33, 0x0d, - 0x5c, 0xdd, 0x63, 0xee, 0x61, 0xa7, 0xe9, 0x11, 0x1e, 0x33, 0xec, 0x11, 0xd6, 0xc4, 0x2d, 0xd4, - 0x25, 0xb4, 0x13, 0xc2, 0x5b, 0xa0, 0xc2, 0x24, 0x95, 0xe3, 0x50, 0x45, 0xe9, 0x64, 0x63, 0x7b, - 0xac, 0xf0, 0x00, 0x4c, 0x7a, 0x29, 0x1c, 0x19, 0xbc, 0xea, 0xfa, 0x6b, 0x06, 0x69, 0xda, 0x46, - 0x7a, 0x7b, 0x8d, 0xd4, 0x86, 0x76, 0x6f, 0x18, 0x69, 0xdd, 0x66, 0x06, 0xa1, 0x3f, 0x02, 0xc5, - 0x81, 0x08, 0xbc, 0x94, 0x8e, 0x40, 0xcf, 0x94, 0x95, 0x57, 0xc1, 0x17, 0x4f, 0xf5, 0x31, 0x89, - 0xc6, 0x9f, 0x0b, 0x43, 0xa2, 0xb1, 0x43, 0x3b, 0xcd, 0x36, 0x7e, 0x40, 0x39, 0xf1, 0xdd, 0x91, - 0xa3, 0x61, 0x81, 0x05, 0xa7, 0x13, 0xb4, 0x89, 0x8d, 0x38, 0xb6, 0xba, 0x94, 0x63, 0x2b, 0x4e, - 0x52, 0x15, 0x98, 0x57, 0xd3, 0x71, 0x90, 0x69, 0x6c, 0xec, 0xc4, 0x02, 0x0f, 0x28, 0xc7, 0x77, - 0x14, 0xbb, 0x79, 0xc9, 0x19, 0xb6, 0x0c, 0x7f, 0x0c, 0x16, 0x88, 0xff, 0x30, 0x44, 0xb6, 0x28, - 0x02, 0x56, 0xb3, 0x4d, 0xed, 0x47, 0x56, 0x0b, 0x23, 0x07, 0x87, 0x32, 0x50, 0xd5, 0xf5, 0x57, - 0x5e, 0x14, 0xf9, 0xbb, 0x92, 0xdb, 0xbc, 0xd4, 0x83, 0xd9, 0x12, 0x28, 0xd1, 0x72, 0x7f, 0xf0, - 0x4b, 0xe7, 0x0a, 0x7e, 0x3a, 0xa4, 0x49, 0xf0, 0x7f, 0xa5, 0x81, 0xe9, 0x3d, 0xe6, 0xfe, 0x20, - 0x70, 0x10, 0xc7, 0x07, 0x28, 0x44, 0x1e, 0x13, 0xe1, 0x46, 0x1d, 0xde, 0xa2, 0xa2, 0x70, 0xbc, - 0x38, 0xdc, 0x09, 0x2b, 0xdc, 0x05, 0x13, 0x81, 0x44, 0x50, 0xd1, 0xfd, 0x92, 0x91, 0xa3, 0x4c, - 0x1b, 0x91, 0xd2, 0xad, 0xd2, 0x47, 0x4f, 0xeb, 0x63, 0xa6, 0x02, 0xd8, 0x98, 0x92, 0xfe, 0x24, - 0xd0, 0x2b, 0x8b, 0x60, 0xa1, 0xcf, 0xca, 0xc4, 0x83, 0x4f, 0xcb, 0x60, 0x6e, 0x8f, 0xb9, 0xb1, - 0x97, 0x9b, 0x8e, 0x43, 0x44, 0x18, 0xe1, 0x62, 0x7f, 0x9d, 0xe9, 0xd5, 0x98, 0xef, 0x82, 0x29, - 0xe2, 0x13, 0x4e, 0x50, 0xdb, 0x6a, 0x61, 0xb1, 0x37, 0xca, 0xe0, 0x9a, 0xdc, 0x2d, 0x51, 0x5b, - 0x0d, 0x55, 0x51, 0xe5, 0x0e, 0x09, 0x0e, 0x65, 0xdf, 0x45, 0x25, 0x17, 0x2d, 0x8a, 0x9a, 0xe3, - 0x62, 0x1f, 0x33, 0xc2, 0xac, 0x16, 0x62, 0x2d, 0xb9, 0xe9, 0x93, 0x66, 0x55, 0xad, 0xdd, 0x45, - 0xac, 0x25, 0xb6, 0xb0, 0x49, 0x7c, 0x14, 0x1e, 0x47, 0x1c, 0x25, 0xc9, 0x01, 0xa2, 0x25, 0xc9, - 0xb0, 0x0d, 0x00, 0x0b, 0xd0, 0x91, 0x6f, 0x89, 0x6e, 0x23, 0x2b, 0x8c, 0x30, 0x24, 0xea, 0x24, - 0x46, 0xdc, 0x49, 0x8c, 0xfb, 0x71, 0x2b, 0xda, 0x2a, 0x0b, 0x43, 0x9e, 0xfc, 0xb5, 0xae, 0x99, - 0x15, 0x29, 0x27, 0x28, 0xf0, 0x1e, 0x98, 0xe9, 0xf8, 0x4d, 0xea, 0x3b, 0xc4, 0x77, 0xad, 0x00, - 0x87, 0x84, 0x3a, 0xfa, 0x84, 0x84, 0x5a, 0x1c, 0x80, 0xda, 0x51, 0x4d, 0x2b, 0x42, 0xfa, 0x85, - 0x40, 0x9a, 0x4e, 0x84, 0x0f, 0xa4, 0x2c, 0x7c, 0x0b, 0x40, 0xdb, 0xee, 0x4a, 0x93, 0x68, 0x87, - 0xc7, 0x88, 0x17, 0xf2, 0x23, 0xce, 0xd8, 0x76, 0xf7, 0x7e, 0x24, 0xad, 0x20, 0x7f, 0x04, 0x16, - 0x78, 0x88, 0x7c, 0xf6, 0x10, 0x87, 0xfd, 0xb8, 0xe5, 0xfc, 0xb8, 0x97, 0x62, 0x8c, 0x2c, 0xf8, - 0x5d, 0xb0, 0x9c, 0x1c, 0x94, 0x10, 0x3b, 0x84, 0xf1, 0x90, 0x34, 0x3b, 0xf2, 0x54, 0xc6, 0xe7, - 0x4a, 0xaf, 0xc8, 0x24, 0x58, 0x8a, 0xf9, 0xcc, 0x0c, 0xdb, 0x77, 0x14, 0x17, 0xdc, 0x07, 0x2f, - 0xcb, 0x73, 0xcc, 0x84, 0x71, 0x56, 0x06, 0x49, 0xaa, 0xf6, 0x08, 0x63, 0x02, 0x0d, 0x2c, 0x6b, - 0xab, 0x45, 0xf3, 0x5a, 0xc4, 0x7b, 0x80, 0xc3, 0x9d, 0x14, 0xe7, 0xfd, 0x14, 0x23, 0x5c, 0x03, - 0xb0, 0x45, 0x18, 0xa7, 0x21, 0xb1, 0x51, 0xdb, 0xc2, 0x3e, 0x0f, 0x09, 0x66, 0x7a, 0x55, 0x8a, - 0xcf, 0xf6, 0x28, 0x77, 0x22, 0x02, 0x7c, 0x13, 0x5c, 0x3b, 0x51, 0xa9, 0x65, 0xb7, 0x90, 0xef, - 0xe3, 0xb6, 0x3e, 0x29, 0x5d, 0xa9, 0x3b, 0x27, 0xe8, 0xdc, 0x8e, 0xd8, 0xe0, 0x1c, 0x18, 0xe7, - 0x34, 0xb0, 0xee, 0xe9, 0x17, 0x97, 0xb5, 0xd5, 0x8b, 0x66, 0x89, 0xd3, 0xe0, 0x1e, 0x7c, 0x1d, - 0xcc, 0x77, 0x51, 0x9b, 0x38, 0x88, 0xd3, 0x90, 0x59, 0x01, 0x3d, 0xc2, 0xa1, 0x65, 0xa3, 0x40, - 0x9f, 0x92, 0x3c, 0xb0, 0x47, 0x3b, 0x10, 0xa4, 0x6d, 0x14, 0xc0, 0xeb, 0x60, 0x36, 0x59, 0xb5, - 0x18, 0xe6, 0x92, 0x7d, 0x5a, 0xb2, 0x4f, 0x27, 0x84, 0x43, 0xcc, 0x05, 0xef, 0x15, 0x50, 0x41, - 0xed, 0x36, 0x3d, 0x6a, 0x13, 0xc6, 0xf5, 0x99, 0xe5, 0xe2, 0x6a, 0xc5, 0xec, 0x2d, 0xc0, 0x1a, - 0x28, 0x3b, 0xd8, 0x3f, 0x96, 0xc4, 0x59, 0x49, 0x4c, 0xbe, 0xb3, 0x55, 0x07, 0xe6, 0xaf, 0x3a, - 0x97, 0x41, 0xc5, 0x13, 0xf5, 0x85, 0xa3, 0x47, 0x58, 0x9f, 0x5b, 0xd6, 0x56, 0x4b, 0x66, 0xd9, - 0x23, 0xfe, 0xa1, 0xf8, 0x86, 0x06, 0x98, 0x93, 0xda, 0x2d, 0xe2, 0x8b, 0xfd, 0xed, 0x62, 0xab, - 0x8b, 0xda, 0x4c, 0x9f, 0x5f, 0xd6, 0x56, 0xcb, 0xe6, 0xac, 0x24, 0xed, 0x2a, 0xca, 0x03, 0xd4, - 0x1e, 0xac, 0x3b, 0x57, 0xc1, 0xe5, 0x21, 0xb5, 0x25, 0xa9, 0x3d, 0x7f, 0xd0, 0x00, 0x4c, 0xd1, - 0x4d, 0xec, 0xd1, 0x2e, 0x6a, 0x9f, 0x56, 0x7a, 0x36, 0x41, 0x85, 0x89, 0x3d, 0x91, 0x87, 0xbd, - 0x70, 0x86, 0xc3, 0x5e, 0x16, 0x62, 0xf2, 0xac, 0x67, 0x02, 0x55, 0xcc, 0x1d, 0xa8, 0x01, 0xdf, - 0xae, 0x80, 0xda, 0xa0, 0xed, 0x89, 0x6b, 0x0c, 0xcc, 0xee, 0x31, 0x57, 0xae, 0xe2, 0x98, 0xa7, - 0xbf, 0x1f, 0x69, 0xfd, 0xfd, 0x28, 0x75, 0xc3, 0x2a, 0xe4, 0xbb, 0x61, 0x6d, 0x54, 0xd3, 0x17, - 0xa7, 0xcb, 0x60, 0x71, 0x40, 0x69, 0x62, 0xd1, 0xef, 0x34, 0x70, 0x49, 0x18, 0xdc, 0x42, 0xbe, - 0x8b, 0x4d, 0x7c, 0x84, 0x42, 0x67, 0x07, 0xfb, 0xd4, 0x63, 0x70, 0x05, 0x5c, 0x74, 0xe4, 0x7f, - 0x16, 0xa7, 0xe2, 0xd2, 0xa8, 0x6b, 0x32, 0xb7, 0xaa, 0xd1, 0xe2, 0x7d, 0xba, 0xe9, 0x38, 0x70, - 0x15, 0xcc, 0xf4, 0x78, 0x42, 0xa9, 0x41, 0x2f, 0x48, 0xb6, 0xa9, 0x98, 0x2d, 0xd2, 0xfb, 0x1f, - 0x8b, 0x6f, 0x5d, 0x5e, 0x6b, 0x06, 0xcd, 0x4d, 0x1c, 0xfa, 0x87, 0x06, 0xca, 0x7b, 0xcc, 0xdd, - 0x0f, 0xf8, 0xae, 0xff, 0xff, 0x70, 0x2d, 0x86, 0x60, 0x26, 0x76, 0x37, 0x89, 0xc1, 0x9f, 0x34, - 0x50, 0x89, 0x16, 0xf7, 0x3b, 0xfc, 0xbf, 0x16, 0x84, 0x9e, 0x87, 0xc5, 0xd1, 0x3c, 0x2c, 0xe5, - 0xf3, 0x70, 0x4e, 0x1e, 0x9a, 0xc8, 0x99, 0xc4, 0xc5, 0x5f, 0x17, 0xe4, 0x38, 0x20, 0x0a, 0xa4, - 0x12, 0xdf, 0xa6, 0x9e, 0xaa, 0xd4, 0x26, 0xe2, 0x78, 0xd0, 0x2d, 0x2d, 0xa7, 0x5b, 0xe9, 0x70, - 0x15, 0x06, 0xc3, 0x75, 0x07, 0x94, 0x42, 0xc4, 0xb1, 0xf2, 0xf9, 0x86, 0x28, 0x25, 0x9f, 0x3e, - 0xad, 0x5f, 0x8e, 0xfc, 0x66, 0xce, 0x23, 0x83, 0xd0, 0x86, 0x87, 0x78, 0xcb, 0xf8, 0x3e, 0x76, - 0x91, 0x7d, 0xbc, 0x83, 0xed, 0x4f, 0x3e, 0x5c, 0x03, 0x2a, 0x2c, 0x3b, 0xd8, 0x36, 0xa5, 0xf8, - 0xe7, 0x96, 0x1e, 0xaf, 0x80, 0x97, 0x4f, 0x0b, 0x53, 0x12, 0xcf, 0xdf, 0x17, 0xe5, 0x65, 0x30, - 0x99, 0x29, 0xa8, 0x43, 0x1e, 0x8a, 0xab, 0xb9, 0x68, 0xb6, 0xf3, 0x60, 0x9c, 0x13, 0xde, 0xc6, - 0xaa, 0x34, 0x45, 0x1f, 0x70, 0x19, 0x54, 0x1d, 0xcc, 0xec, 0x90, 0x04, 0xf2, 0x22, 0x50, 0x88, - 0x8e, 0x40, 0x6a, 0x29, 0x53, 0xb1, 0x8b, 0xd9, 0x8a, 0x9d, 0x34, 0xd1, 0x52, 0x8e, 0x26, 0x3a, - 0x7e, 0xb6, 0x26, 0x3a, 0x91, 0xa3, 0x89, 0x5e, 0x38, 0xad, 0x89, 0x96, 0x4f, 0x6b, 0xa2, 0x95, - 0x11, 0x9b, 0x28, 0xc8, 0xd7, 0x44, 0xab, 0x79, 0x9b, 0xe8, 0x35, 0x50, 0x3f, 0x61, 0xbf, 0x92, - 0x3d, 0xfd, 0x63, 0x51, 0x9e, 0x9c, 0xed, 0x10, 0x23, 0xde, 0x6b, 0x37, 0xbd, 0xcc, 0xd3, 0x72, - 0x66, 0xde, 0x62, 0xff, 0x89, 0xe8, 0xed, 0xe3, 0xdb, 0xa0, 0xec, 0x61, 0x8e, 0x1c, 0xc4, 0x91, - 0x1a, 0xce, 0x6e, 0xe6, 0x9a, 0x4f, 0x12, 0xbb, 0x95, 0xb0, 0x9a, 0x04, 0x12, 0x30, 0xf8, 0xae, - 0x06, 0x16, 0xd5, 0x58, 0x40, 0x7e, 0x22, 0xdd, 0xb2, 0xe4, 0x14, 0x83, 0x39, 0x0e, 0x99, 0xcc, - 0x9a, 0xea, 0xfa, 0x9d, 0x33, 0xa9, 0xda, 0xcd, 0xa0, 0x1d, 0x24, 0x60, 0xa6, 0x4e, 0x4e, 0xa0, - 0xc0, 0x0e, 0xd0, 0xa3, 0x2c, 0x64, 0x2d, 0x14, 0xc8, 0x21, 0xa0, 0x67, 0x42, 0x34, 0x53, 0x7c, - 0x3d, 0xdf, 0x34, 0x26, 0x40, 0x0e, 0x23, 0x8c, 0x94, 0xe2, 0x97, 0x82, 0xa1, 0xeb, 0xd9, 0xee, - 0x7d, 0x5b, 0x76, 0xef, 0xec, 0x1e, 0xc6, 0x3b, 0xfc, 0xc2, 0xab, 0xc3, 0xca, 0xe3, 0x92, 0x4c, - 0x81, 0x68, 0xc6, 0x3b, 0x47, 0x0a, 0xf4, 0x29, 0x2a, 0x0c, 0xdc, 0x51, 0x76, 0xc0, 0xac, 0x8f, - 0x8f, 0x2c, 0x7a, 0xe4, 0xab, 0x7a, 0x8b, 0x19, 0x7b, 0x61, 0x5f, 0x98, 0xf6, 0xf1, 0xd1, 0xbe, - 0x90, 0x50, 0xcb, 0xf0, 0xad, 0x54, 0x3a, 0x95, 0xce, 0x91, 0x4e, 0xb9, 0x13, 0x69, 0xfc, 0x7f, - 0x9f, 0x48, 0x13, 0x9f, 0x53, 0x22, 0x45, 0xd7, 0xc0, 0x6c, 0x26, 0xc4, 0x89, 0xb4, 0xfe, 0xde, - 0x0c, 0x28, 0xee, 0x31, 0x17, 0xfe, 0x4c, 0x03, 0xb3, 0x83, 0xaf, 0x8b, 0x5f, 0xcb, 0x65, 0xdc, - 0xb0, 0xd7, 0xb9, 0xda, 0xe6, 0xc8, 0xa2, 0x49, 0x92, 0xff, 0x56, 0x03, 0xb5, 0x53, 0x5e, 0xf5, - 0xb6, 0xf2, 0x6a, 0x38, 0x19, 0xa3, 0xf6, 0xe6, 0xf9, 0x31, 0x4e, 0x31, 0x37, 0xf3, 0xec, 0x36, - 0xa2, 0xb9, 0x69, 0x8c, 0x51, 0xcd, 0x1d, 0xf6, 0x56, 0x05, 0xdf, 0xd3, 0xc0, 0xcc, 0xc0, 0x33, - 0xcf, 0x57, 0xf3, 0x2a, 0xe8, 0x97, 0xac, 0x7d, 0x7b, 0x54, 0xc9, 0xa4, 0x6b, 0x15, 0x1f, 0x17, - 0x34, 0xf8, 0x44, 0x03, 0xd3, 0xfd, 0x03, 0xe0, 0x1b, 0x67, 0x85, 0x56, 0x82, 0xb5, 0x6f, 0x8d, - 0x28, 0x98, 0x35, 0xe9, 0xb1, 0x06, 0xa6, 0xfa, 0x5a, 0xe9, 0xad, 0xdc, 0xc0, 0x19, 0xb9, 0xda, - 0x37, 0x47, 0x93, 0x4b, 0xf6, 0x4c, 0x98, 0xd2, 0x57, 0xd2, 0x73, 0x9b, 0x92, 0x95, 0xcb, 0x6f, - 0xca, 0xf0, 0xc2, 0x21, 0x4d, 0xe9, 0x9b, 0x67, 0x73, 0x9b, 0x92, 0x95, 0xcb, 0x6f, 0xca, 0xf0, - 0x51, 0x56, 0x54, 0xfa, 0xc9, 0xcc, 0x93, 0xeb, 0x57, 0xce, 0xe6, 0x5b, 0x24, 0x55, 0xbb, 0x3d, - 0x8a, 0x54, 0x62, 0x84, 0x07, 0xc6, 0xa3, 0xd1, 0x73, 0x2d, 0x2f, 0x8c, 0x64, 0xaf, 0xdd, 0x3c, - 0x13, 0x7b, 0xa2, 0x2e, 0x00, 0x13, 0x6a, 0xca, 0x33, 0xce, 0x00, 0xb0, 0xdf, 0xe1, 0xb5, 0x5b, - 0x67, 0xe3, 0x4f, 0x34, 0xfe, 0x46, 0x03, 0x8b, 0x27, 0x4f, 0x5d, 0xb9, 0xcb, 0xfd, 0x89, 0x10, - 0xb5, 0xdd, 0x73, 0x43, 0x24, 0xb6, 0xfe, 0x52, 0x03, 0xf3, 0x43, 0x27, 0x9a, 0xdb, 0x67, 0xad, - 0x08, 0x69, 0xe9, 0xda, 0xce, 0x79, 0xa4, 0xb3, 0x45, 0xe5, 0xe7, 0x1a, 0x80, 0x43, 0xde, 0x5e, - 0x36, 0x72, 0x6b, 0x18, 0x90, 0xad, 0x6d, 0x8d, 0x2e, 0x1b, 0xdb, 0x56, 0x1b, 0xff, 0xe9, 0x67, - 0x1f, 0x5c, 0xd7, 0xb6, 0xde, 0xfe, 0xe8, 0xd9, 0x92, 0xf6, 0xf1, 0xb3, 0x25, 0xed, 0x6f, 0xcf, - 0x96, 0xb4, 0x27, 0xcf, 0x97, 0xc6, 0x3e, 0x7e, 0xbe, 0x34, 0xf6, 0x97, 0xe7, 0x4b, 0x63, 0x3f, - 0xfc, 0x86, 0x4b, 0x78, 0xab, 0xd3, 0x34, 0x6c, 0xea, 0xa9, 0x5f, 0x58, 0x1b, 0x3d, 0xad, 0x6b, - 0xc9, 0x0f, 0xa4, 0xdd, 0x9b, 0x8d, 0x77, 0xb2, 0xbf, 0x92, 0xca, 0xdf, 0x83, 0x9a, 0x13, 0xf2, - 0x55, 0xee, 0xcb, 0xff, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x02, 0xb5, 0x16, 0xbc, 0xa1, 0x1e, 0x00, - 0x00, + // 2075 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcb, 0x6f, 0x1c, 0x49, + 0x19, 0x77, 0xcf, 0x8c, 0xbd, 0x33, 0xe5, 0x77, 0xdb, 0x59, 0xb7, 0x27, 0x89, 0xc7, 0x31, 0xcb, + 0xae, 0x15, 0xd6, 0x3d, 0xc4, 0x90, 0x5d, 0x30, 0xe1, 0xe1, 0x47, 0x20, 0x5e, 0x70, 0xec, 0x6d, + 0x87, 0xac, 0x04, 0x12, 0xad, 0x9a, 0xee, 0x4a, 0x4f, 0x29, 0xdd, 0x5d, 0xad, 0xae, 0x9a, 0xf1, + 0x9a, 0x13, 0x8a, 0x84, 0x94, 0x63, 0xd0, 0x72, 0xe0, 0xc6, 0x1e, 0xb8, 0x20, 0x01, 0xda, 0xc3, + 0x9e, 0xf8, 0x0b, 0x56, 0xe2, 0xb2, 0xac, 0x38, 0xa0, 0x3d, 0x04, 0x94, 0x1c, 0x96, 0x33, 0x07, + 0xce, 0xa8, 0x1e, 0xdd, 0x33, 0x3d, 0x33, 0x76, 0x7a, 0xc6, 0x2c, 0x1c, 0xb8, 0x8c, 0xba, 0xeb, + 0xfb, 0x7d, 0xbf, 0xef, 0x51, 0x55, 0xdf, 0x57, 0xd5, 0x03, 0x5e, 0xc7, 0x21, 0x43, 0xb1, 0xd3, + 0x84, 0x38, 0xb4, 0x29, 0x72, 0x5a, 0x31, 0x66, 0xa7, 0x75, 0xc7, 0x69, 0xd7, 0xa3, 0x98, 0xb4, + 0xb1, 0x8b, 0xe2, 0x7a, 0xfb, 0x46, 0x9d, 0xbd, 0x6b, 0x46, 0x31, 0x61, 0x44, 0xff, 0xc2, 0x00, + 0xb4, 0xe9, 0x38, 0x6d, 0x33, 0x41, 0x9b, 0xed, 0x1b, 0xd5, 0x79, 0x18, 0xe0, 0x90, 0xd4, 0xc5, + 0xaf, 0xd4, 0xab, 0x5e, 0xf1, 0x08, 0xf1, 0x7c, 0x54, 0x87, 0x11, 0xae, 0xc3, 0x30, 0x24, 0x0c, + 0x32, 0x4c, 0x42, 0xaa, 0xa4, 0x35, 0x25, 0x15, 0x6f, 0x8d, 0xd6, 0x83, 0x3a, 0xc3, 0x01, 0xa2, + 0x0c, 0x06, 0x91, 0x02, 0xac, 0xf4, 0x02, 0xdc, 0x56, 0x2c, 0x18, 0x94, 0x7c, 0xb9, 0x57, 0x0e, + 0xc3, 0x53, 0x25, 0x5a, 0xf4, 0x88, 0x47, 0xc4, 0x63, 0x9d, 0x3f, 0x25, 0x0a, 0x0e, 0xa1, 0x01, + 0xa1, 0xb6, 0x14, 0xc8, 0x17, 0x25, 0x5a, 0x92, 0x6f, 0xf5, 0x80, 0x7a, 0x3c, 0xf4, 0x80, 0x7a, + 0x89, 0x97, 0xb8, 0xe1, 0xd4, 0x1d, 0x12, 0xa3, 0xba, 0xe3, 0x63, 0x14, 0x32, 0x2e, 0x95, 0x4f, + 0x0a, 0xb0, 0x99, 0x27, 0x95, 0x69, 0xa2, 0xa4, 0x4e, 0x9d, 0x93, 0xfa, 0xd8, 0x6b, 0x32, 0x49, + 0x45, 0xeb, 0x0c, 0x85, 0x2e, 0x8a, 0x03, 0x2c, 0x0d, 0x74, 0xde, 0x12, 0x2f, 0xba, 0xe4, 0xec, + 0x34, 0x42, 0xb4, 0x8e, 0x38, 0x5f, 0xe8, 0x20, 0x09, 0x58, 0x7b, 0x54, 0x00, 0x8b, 0x07, 0xd4, + 0xdb, 0xa6, 0x14, 0x7b, 0xe1, 0x2e, 0x09, 0x69, 0x2b, 0x40, 0xf1, 0xf7, 0xd1, 0xa9, 0x7e, 0x15, + 0x94, 0xa5, 0x6f, 0xd8, 0x35, 0xb4, 0x55, 0x6d, 0xbd, 0xb2, 0x53, 0x30, 0x34, 0xeb, 0x25, 0x31, + 0xb6, 0xef, 0xea, 0x6f, 0x82, 0xe9, 0xc4, 0x37, 0x1b, 0xba, 0x6e, 0x6c, 0x14, 0x04, 0x46, 0xff, + 0xe7, 0xd3, 0xda, 0xcc, 0x29, 0x0c, 0xfc, 0xad, 0x35, 0x3e, 0x8a, 0x28, 0x5d, 0xb3, 0xa6, 0x12, + 0xe0, 0xb6, 0xeb, 0xc6, 0xfa, 0x35, 0x30, 0xe5, 0x28, 0x33, 0xf6, 0x43, 0x74, 0x6a, 0x14, 0xb9, + 0x9e, 0x35, 0xe9, 0x74, 0x99, 0x7e, 0x03, 0x54, 0x68, 0xab, 0x11, 0x60, 0xc6, 0x50, 0x6c, 0x94, + 0x04, 0xaf, 0xf1, 0xc9, 0x87, 0x1b, 0x8b, 0x2a, 0xf1, 0xdb, 0x92, 0xf8, 0x98, 0xc5, 0x38, 0xf4, + 0xac, 0x0e, 0x54, 0xaf, 0x81, 0x94, 0x86, 0x7b, 0x3d, 0x2e, 0x98, 0x41, 0x32, 0xb4, 0xef, 0x6e, + 0xbd, 0xfc, 0xf8, 0xfd, 0xda, 0xd8, 0x3f, 0xde, 0xaf, 0x8d, 0x3d, 0xfa, 0xec, 0x83, 0xeb, 0x1d, + 0xc5, 0xb5, 0x15, 0x70, 0x65, 0x50, 0x0e, 0x2c, 0x44, 0x23, 0x12, 0x52, 0xb4, 0xf6, 0x4c, 0x03, + 0x57, 0x0f, 0xa8, 0x77, 0x2c, 0x14, 0x12, 0xc0, 0x01, 0xa6, 0x0d, 0xd4, 0x84, 0x6d, 0x4c, 0x5a, + 0x71, 0xd6, 0x65, 0x2d, 0xbf, 0xcb, 0x47, 0x60, 0x2a, 0xe8, 0xe2, 0x11, 0x59, 0x9c, 0xdc, 0x7c, + 0xdd, 0xc4, 0x0d, 0xc7, 0xec, 0x9e, 0x67, 0xb3, 0x6b, 0x66, 0xdb, 0x37, 0xcc, 0x6e, 0xdb, 0x56, + 0x86, 0xa1, 0x37, 0x09, 0xc5, 0xdc, 0x49, 0x78, 0x0d, 0x7c, 0xf1, 0xdc, 0x18, 0xd3, 0x6c, 0xfc, + 0xb9, 0x30, 0x20, 0x1b, 0x7b, 0xa4, 0xd5, 0xf0, 0xd1, 0x7d, 0xc2, 0x70, 0xe8, 0x8d, 0x9c, 0x0d, + 0x1b, 0x2c, 0xb9, 0xad, 0xc8, 0xc7, 0x0e, 0x64, 0xc8, 0x6e, 0x13, 0x86, 0xec, 0x64, 0xb5, 0xaa, + 0xc4, 0xbc, 0xd6, 0x9d, 0x07, 0xb1, 0x9e, 0xcd, 0xbd, 0x44, 0xe1, 0x3e, 0x61, 0xe8, 0xb6, 0x82, + 0x5b, 0x97, 0xdc, 0x41, 0xc3, 0xfa, 0x4f, 0xc0, 0x12, 0x0e, 0x1f, 0xc4, 0xd0, 0xe1, 0xd5, 0xc0, + 0x6e, 0xf8, 0xc4, 0x79, 0x68, 0x37, 0x11, 0x74, 0x51, 0x2c, 0x12, 0x35, 0xb9, 0xf9, 0xea, 0x8b, + 0x32, 0x7f, 0x47, 0xa0, 0xad, 0x4b, 0x1d, 0x9a, 0x1d, 0xce, 0x22, 0x87, 0x7b, 0x93, 0x5f, 0xba, + 0x50, 0xf2, 0xbb, 0x53, 0x9a, 0x26, 0xff, 0x37, 0x1a, 0x98, 0x3d, 0xa0, 0xde, 0x0f, 0x23, 0x17, + 0x32, 0x74, 0x04, 0x63, 0x18, 0x50, 0x9e, 0x6e, 0xd8, 0x62, 0x4d, 0xc2, 0x2b, 0xc8, 0x8b, 0xd3, + 0x9d, 0x42, 0xf5, 0x7d, 0x30, 0x11, 0x09, 0x06, 0x95, 0xdd, 0x2f, 0x99, 0x39, 0xea, 0xb5, 0x29, + 0x8d, 0xee, 0x94, 0x3e, 0x7a, 0x5a, 0x1b, 0xb3, 0x14, 0xc1, 0xd6, 0x8c, 0x88, 0x27, 0xa5, 0x5e, + 0x5b, 0x06, 0x4b, 0x3d, 0x5e, 0xa6, 0x11, 0x7c, 0x5a, 0x06, 0x0b, 0x07, 0xd4, 0x4b, 0xa2, 0xdc, + 0x76, 0x5d, 0xcc, 0xd3, 0xa8, 0x2f, 0xf7, 0x16, 0x9c, 0x4e, 0xb1, 0xf9, 0x1e, 0x98, 0xc1, 0x21, + 0x66, 0x18, 0xfa, 0x76, 0x13, 0xf1, 0xb9, 0x51, 0x0e, 0x57, 0xc5, 0x6c, 0xf1, 0x22, 0x6b, 0xaa, + 0xd2, 0x2a, 0x66, 0x88, 0x23, 0x94, 0x7f, 0xd3, 0x4a, 0x4f, 0x0e, 0xf2, 0xe2, 0xe3, 0xa1, 0x10, + 0x51, 0x4c, 0xed, 0x26, 0xa4, 0x4d, 0x31, 0xe9, 0x53, 0xd6, 0xa4, 0x1a, 0xbb, 0x03, 0x69, 0x93, + 0x4f, 0x61, 0x03, 0x87, 0x30, 0x3e, 0x95, 0x88, 0x92, 0x40, 0x00, 0x39, 0x24, 0x00, 0xbb, 0x00, + 0xd0, 0x08, 0x9e, 0x84, 0x36, 0x6f, 0x3b, 0xa2, 0xc8, 0x70, 0x47, 0x64, 0x4b, 0x31, 0x93, 0x96, + 0x62, 0xde, 0x4b, 0x7a, 0xd2, 0x4e, 0x99, 0x3b, 0xf2, 0xe4, 0x6f, 0x35, 0xcd, 0xaa, 0x08, 0x3d, + 0x2e, 0xd1, 0xef, 0x82, 0xb9, 0x56, 0xd8, 0x20, 0xa1, 0x8b, 0x43, 0xcf, 0x8e, 0x50, 0x8c, 0x89, + 0x6b, 0x4c, 0x08, 0xaa, 0xe5, 0x3e, 0xaa, 0x3d, 0xd5, 0xbd, 0x24, 0xd3, 0xaf, 0x38, 0xd3, 0x6c, + 0xaa, 0x7c, 0x24, 0x74, 0xf5, 0xb7, 0x81, 0xee, 0x38, 0x6d, 0xe1, 0x12, 0x69, 0xb1, 0x84, 0xf1, + 0xa5, 0xfc, 0x8c, 0x73, 0x8e, 0xd3, 0xbe, 0x27, 0xb5, 0x15, 0xe5, 0x8f, 0xc1, 0x12, 0x8b, 0x61, + 0x48, 0x1f, 0xa0, 0xb8, 0x97, 0xb7, 0x9c, 0x9f, 0xf7, 0x52, 0xc2, 0x91, 0x25, 0xbf, 0x03, 0x56, + 0xd3, 0x8d, 0x12, 0x23, 0x17, 0x53, 0x16, 0xe3, 0x46, 0x4b, 0xec, 0xca, 0x64, 0x5f, 0x19, 0x15, + 0xb1, 0x08, 0x56, 0x12, 0x9c, 0x95, 0x81, 0x7d, 0x57, 0xa1, 0xf4, 0x43, 0xf0, 0x8a, 0xd8, 0xc7, + 0x94, 0x3b, 0x67, 0x67, 0x98, 0x84, 0xe9, 0x00, 0x53, 0xca, 0xd9, 0xc0, 0xaa, 0xb6, 0x5e, 0xb4, + 0xae, 0x49, 0xec, 0x11, 0x8a, 0xf7, 0xba, 0x90, 0xf7, 0xba, 0x80, 0xfa, 0x06, 0xd0, 0x9b, 0x98, + 0x32, 0x12, 0x63, 0x07, 0xfa, 0x36, 0x0a, 0x59, 0x8c, 0x11, 0x35, 0x26, 0x85, 0xfa, 0x7c, 0x47, + 0x72, 0x5b, 0x0a, 0xf4, 0xb7, 0xc0, 0xb5, 0x33, 0x8d, 0xda, 0x4e, 0x13, 0x86, 0x21, 0xf2, 0x8d, + 0x29, 0x11, 0x4a, 0xcd, 0x3d, 0xc3, 0xe6, 0xae, 0x84, 0xe9, 0x0b, 0x60, 0x9c, 0x91, 0xc8, 0xbe, + 0x6b, 0x4c, 0xaf, 0x6a, 0xeb, 0xd3, 0x56, 0x89, 0x91, 0xe8, 0xae, 0xfe, 0x65, 0xb0, 0xd8, 0x86, + 0x3e, 0x76, 0x21, 0x23, 0x31, 0xb5, 0x23, 0x72, 0x82, 0x62, 0xdb, 0x81, 0x91, 0x31, 0x23, 0x30, + 0x7a, 0x47, 0x76, 0xc4, 0x45, 0xbb, 0x30, 0xd2, 0xaf, 0x83, 0xf9, 0x74, 0xd4, 0xa6, 0x88, 0x09, + 0xf8, 0xac, 0x80, 0xcf, 0xa6, 0x82, 0x63, 0xc4, 0x38, 0xf6, 0x0a, 0xa8, 0x40, 0xdf, 0x27, 0x27, + 0x3e, 0xa6, 0xcc, 0x98, 0x5b, 0x2d, 0xae, 0x57, 0xac, 0xce, 0x80, 0x5e, 0x05, 0x65, 0x17, 0x85, + 0xa7, 0x42, 0x38, 0x2f, 0x84, 0xe9, 0x7b, 0xb6, 0xea, 0xe8, 0xf9, 0xab, 0xce, 0x65, 0x50, 0x09, + 0x78, 0x7d, 0x61, 0xf0, 0x21, 0x32, 0x16, 0x56, 0xb5, 0xf5, 0x92, 0x55, 0x0e, 0x70, 0x78, 0xcc, + 0xdf, 0x75, 0x13, 0x2c, 0x08, 0xeb, 0x36, 0x0e, 0xf9, 0xfc, 0xb6, 0x91, 0xdd, 0x86, 0x3e, 0x35, + 0x16, 0x57, 0xb5, 0xf5, 0xb2, 0x35, 0x2f, 0x44, 0xfb, 0x4a, 0x72, 0x1f, 0xfa, 0xfd, 0x75, 0xe7, + 0x2a, 0xb8, 0x3c, 0xa0, 0xb6, 0xa4, 0xb5, 0xe7, 0x8f, 0x1a, 0xd0, 0xbb, 0xe4, 0x16, 0x0a, 0x48, + 0x1b, 0xfa, 0xe7, 0x95, 0x9e, 0x6d, 0x50, 0xa1, 0x7c, 0x4e, 0xc4, 0x66, 0x2f, 0x0c, 0xb1, 0xd9, + 0xcb, 0x5c, 0x4d, 0xec, 0xf5, 0x4c, 0xa2, 0x8a, 0xb9, 0x13, 0xd5, 0x17, 0xdb, 0x15, 0x50, 0xed, + 0xf7, 0x3d, 0x0d, 0x2d, 0x02, 0xf3, 0x07, 0xd4, 0x13, 0xa3, 0x28, 0xc1, 0xf4, 0xf6, 0x23, 0xad, + 0xb7, 0x1f, 0xe9, 0x26, 0x18, 0x27, 0x27, 0x21, 0x4a, 0x8e, 0x6f, 0x67, 0xfb, 0x25, 0x61, 0x5b, + 0x80, 0xfb, 0x24, 0x9f, 0xd7, 0x2e, 0x83, 0xe5, 0x3e, 0x8b, 0xa9, 0x3b, 0xbf, 0xd7, 0xc0, 0x25, + 0xee, 0x6d, 0x13, 0x86, 0x1e, 0xb2, 0xd0, 0x09, 0x8c, 0xdd, 0x3d, 0x14, 0x92, 0x80, 0xea, 0x6b, + 0x60, 0xda, 0x15, 0x4f, 0x36, 0x23, 0xfc, 0xe8, 0x68, 0x68, 0x62, 0x61, 0x4d, 0xca, 0xc1, 0x7b, + 0x64, 0xdb, 0x75, 0xf5, 0x75, 0x30, 0xd7, 0xc1, 0xc4, 0xc2, 0x82, 0x51, 0x10, 0xb0, 0x99, 0x04, + 0x26, 0xed, 0xfe, 0xc7, 0x92, 0x5b, 0x13, 0x67, 0x9a, 0x7e, 0x77, 0xd3, 0x80, 0xfe, 0xa5, 0x81, + 0xf2, 0x01, 0xf5, 0x0e, 0x23, 0xb6, 0x1f, 0xfe, 0x5f, 0x1d, 0x8e, 0x75, 0x30, 0x97, 0xc4, 0x9d, + 0x26, 0xe3, 0x2f, 0x1a, 0xa8, 0xc8, 0xc1, 0xc3, 0x16, 0xfb, 0xdc, 0xb2, 0x91, 0x09, 0xb5, 0x38, + 0x72, 0xa8, 0xf9, 0x4f, 0x61, 0x0b, 0x62, 0x0f, 0xc9, 0xa8, 0xd2, 0x58, 0xff, 0x50, 0x10, 0xb7, + 0x03, 0x5e, 0x2f, 0x15, 0xc3, 0x2e, 0x09, 0x54, 0xe1, 0xb6, 0x20, 0x43, 0xfd, 0xf1, 0x69, 0x39, + 0xe3, 0xeb, 0xce, 0x5b, 0xa1, 0x3f, 0x6f, 0xb7, 0x41, 0x29, 0x86, 0x0c, 0xa9, 0xc8, 0x6f, 0xf0, + 0xca, 0xf2, 0xe9, 0xd3, 0xda, 0x65, 0x19, 0x3d, 0x75, 0x1f, 0x9a, 0x98, 0xd4, 0x03, 0xc8, 0x9a, + 0xe6, 0x0f, 0x90, 0x07, 0x9d, 0xd3, 0x3d, 0xe4, 0x7c, 0xf2, 0xe1, 0x06, 0x50, 0xc9, 0xd9, 0x43, + 0x8e, 0x25, 0xd4, 0xff, 0xfb, 0x0b, 0xe6, 0x55, 0xf0, 0xca, 0x79, 0xf9, 0xea, 0x24, 0xb6, 0x28, + 0x0e, 0x89, 0xe9, 0x5d, 0x83, 0xb8, 0xf8, 0x01, 0x3f, 0xb2, 0xf3, 0x26, 0xbc, 0x08, 0xc6, 0x19, + 0x66, 0x3e, 0x52, 0x25, 0x4b, 0xbe, 0xe8, 0xab, 0x60, 0xd2, 0x45, 0xd4, 0x89, 0x71, 0x24, 0x0e, + 0x08, 0x05, 0xb9, 0x3b, 0xba, 0x86, 0x32, 0x95, 0xbc, 0x98, 0xad, 0xe4, 0x69, 0x73, 0x2d, 0xe5, + 0x68, 0xae, 0xe3, 0xc3, 0x35, 0xd7, 0x89, 0x1c, 0xcd, 0xf5, 0xa5, 0xf3, 0x9a, 0x6b, 0xf9, 0xbc, + 0xe6, 0x5a, 0x19, 0xb1, 0xb9, 0x82, 0x7c, 0xcd, 0x75, 0x32, 0x6f, 0x73, 0xbd, 0x06, 0x6a, 0x67, + 0xcc, 0x57, 0x3a, 0xa7, 0x7f, 0x2a, 0x8a, 0x2d, 0xb4, 0x1b, 0x23, 0xc8, 0x3a, 0x6d, 0x68, 0xd4, + 0xfb, 0xe0, 0x72, 0xef, 0x06, 0xe9, 0xcc, 0xe6, 0x3b, 0xa0, 0x1c, 0x20, 0x06, 0x5d, 0xc8, 0xa0, + 0xba, 0xba, 0xdd, 0xcc, 0x75, 0x7b, 0x49, 0xbd, 0x57, 0xca, 0xea, 0x9e, 0x90, 0x92, 0xe9, 0x8f, + 0x34, 0xb0, 0xac, 0x2e, 0x0d, 0xf8, 0xa7, 0x22, 0x38, 0x5b, 0xdc, 0x71, 0x10, 0x43, 0x31, 0x15, + 0x6b, 0x67, 0x72, 0xf3, 0xf6, 0x50, 0xa6, 0xf6, 0x33, 0x6c, 0x47, 0x29, 0x99, 0x65, 0xe0, 0x33, + 0x24, 0x7a, 0x0b, 0x18, 0x72, 0x2d, 0xd2, 0x26, 0x8c, 0xc4, 0x15, 0xa1, 0xe3, 0x82, 0xbc, 0x71, + 0x7c, 0x23, 0xdf, 0x5d, 0x8d, 0x93, 0x1c, 0x4b, 0x8e, 0x2e, 0xc3, 0x2f, 0x47, 0x03, 0xc7, 0xd5, + 0x84, 0x77, 0x76, 0xf2, 0x2d, 0xd1, 0xe1, 0xb3, 0x93, 0x99, 0x4c, 0xf5, 0x0b, 0xcf, 0x16, 0x6b, + 0x3f, 0x2f, 0x89, 0xb5, 0x20, 0x2f, 0x81, 0xe9, 0x5a, 0x48, 0x4f, 0x1c, 0x5a, 0xae, 0x13, 0x47, + 0xaf, 0x99, 0x42, 0xdf, 0x11, 0x66, 0x0f, 0xcc, 0x87, 0xe8, 0xc4, 0x16, 0x68, 0x5b, 0x55, 0xda, + 0x17, 0x76, 0x8b, 0xd9, 0x10, 0x9d, 0x1c, 0x72, 0x0d, 0x35, 0xac, 0xbf, 0xdd, 0xb5, 0x9e, 0x4a, + 0x17, 0x58, 0x4f, 0xb9, 0x57, 0xd2, 0xf8, 0xff, 0x7e, 0x25, 0x4d, 0x7c, 0x7e, 0x2b, 0xa9, 0xff, + 0x9c, 0x98, 0x5d, 0x06, 0xc9, 0x2a, 0xda, 0x7c, 0x6f, 0x0e, 0x14, 0x0f, 0xa8, 0xa7, 0xff, 0x42, + 0x03, 0xf3, 0xfd, 0x1f, 0x21, 0xbf, 0x9e, 0xcb, 0xb7, 0x41, 0xdf, 0xee, 0xaa, 0xdb, 0x23, 0xab, + 0xa6, 0x2b, 0xfc, 0x77, 0x1a, 0xa8, 0x9e, 0xf3, 0xcd, 0x6f, 0x27, 0xaf, 0x85, 0xb3, 0x39, 0xaa, + 0x6f, 0x5d, 0x9c, 0xe3, 0x1c, 0x77, 0x33, 0x1f, 0xe5, 0x46, 0x74, 0xb7, 0x9b, 0x63, 0x54, 0x77, + 0x07, 0x7d, 0xc9, 0xd2, 0xdf, 0xd3, 0xc0, 0x5c, 0xdf, 0x47, 0xa0, 0xaf, 0xe5, 0x35, 0xd0, 0xab, + 0x59, 0xfd, 0xce, 0xa8, 0x9a, 0x69, 0xef, 0x2a, 0x3e, 0x2e, 0x68, 0xfa, 0x13, 0x0d, 0xcc, 0xf6, + 0x5e, 0x0f, 0xdf, 0x1c, 0x96, 0x5a, 0x29, 0x56, 0xbf, 0x3d, 0xa2, 0x62, 0xd6, 0xa5, 0xc7, 0x1a, + 0x98, 0xe9, 0x6d, 0xa8, 0xb9, 0x89, 0x33, 0x7a, 0xd5, 0x6f, 0x8d, 0xa6, 0x97, 0xce, 0x19, 0x77, + 0xa5, 0xa7, 0x9e, 0xe7, 0x76, 0x25, 0xab, 0x97, 0xdf, 0x95, 0xc1, 0x85, 0x43, 0xb8, 0xd2, 0x73, + 0xdb, 0xcd, 0xed, 0x4a, 0x56, 0x2f, 0xbf, 0x2b, 0x83, 0xef, 0xba, 0xbc, 0xd0, 0x4f, 0x65, 0x3e, + 0xc8, 0x7e, 0x75, 0xb8, 0xd8, 0xa4, 0x56, 0xf5, 0xd6, 0x28, 0x5a, 0xa9, 0x13, 0x01, 0x18, 0x97, + 0x77, 0xd3, 0x8d, 0xbc, 0x34, 0x02, 0x5e, 0xbd, 0x39, 0x14, 0x3c, 0x35, 0x17, 0x81, 0x09, 0x75, + 0xfb, 0x33, 0x87, 0x20, 0x38, 0x6c, 0xb1, 0xea, 0x1b, 0xc3, 0xe1, 0x53, 0x8b, 0xbf, 0xd5, 0xc0, + 0xf2, 0xd9, 0x97, 0xb0, 0xdc, 0xe5, 0xfe, 0x4c, 0x8a, 0xea, 0xfe, 0x85, 0x29, 0x52, 0x5f, 0x7f, + 0xad, 0x81, 0xc5, 0x81, 0xf7, 0x9a, 0x5b, 0xc3, 0x56, 0x84, 0x6e, 0xed, 0xea, 0xde, 0x45, 0xb4, + 0xb3, 0x45, 0xe5, 0x97, 0x1a, 0xd0, 0x07, 0x7c, 0x9c, 0xd9, 0xca, 0x6d, 0xa1, 0x4f, 0xb7, 0xba, + 0x33, 0xba, 0x6e, 0xe2, 0x5b, 0x75, 0xfc, 0x67, 0x9f, 0x7d, 0x70, 0x5d, 0xdb, 0x79, 0xe7, 0xa3, + 0x67, 0x2b, 0xda, 0xc7, 0xcf, 0x56, 0xb4, 0xbf, 0x3f, 0x5b, 0xd1, 0x9e, 0x3c, 0x5f, 0x19, 0xfb, + 0xf8, 0xf9, 0xca, 0xd8, 0x5f, 0x9f, 0xaf, 0x8c, 0xfd, 0xe8, 0x9b, 0x1e, 0x66, 0xcd, 0x56, 0xc3, + 0x74, 0x48, 0xa0, 0xfe, 0x88, 0xad, 0x77, 0xac, 0x6e, 0xa4, 0xff, 0xa3, 0xb6, 0x6f, 0xd6, 0xdf, + 0xcd, 0xfe, 0x99, 0x2a, 0xfe, 0x2d, 0x6a, 0x4c, 0x88, 0x6f, 0x76, 0x5f, 0xf9, 0x77, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x72, 0x99, 0x09, 0x26, 0xc8, 0x1e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2393,10 +2393,10 @@ func (m *MsgAssignConsumerKey) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) i-- dAtA[i] = 0x22 } @@ -2952,10 +2952,10 @@ func (m *MsgRemoveConsumer) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Owner) > 0 { + i -= len(m.Owner) + copy(dAtA[i:], m.Owner) + i = encodeVarintTx(dAtA, i, uint64(len(m.Owner))) i-- dAtA[i] = 0x12 } @@ -3090,10 +3090,10 @@ func (m *MsgOptIn) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) i-- dAtA[i] = 0x22 } @@ -3171,10 +3171,10 @@ func (m *MsgOptOut) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x22 } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) i-- dAtA[i] = 0x1a } @@ -3245,10 +3245,10 @@ func (m *MsgSetConsumerCommissionRate) MarshalToSizedBuffer(dAtA []byte) (int, e i-- dAtA[i] = 0x2a } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) i-- dAtA[i] = 0x22 } @@ -3485,10 +3485,10 @@ func (m *MsgCreateConsumer) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) i-- dAtA[i] = 0xa } @@ -3595,10 +3595,10 @@ func (m *MsgUpdateConsumer) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - if len(m.Signer) > 0 { - i -= len(m.Signer) - copy(dAtA[i:], m.Signer) - i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + if len(m.Owner) > 0 { + i -= len(m.Owner) + copy(dAtA[i:], m.Owner) + i = encodeVarintTx(dAtA, i, uint64(len(m.Owner))) i-- dAtA[i] = 0xa } @@ -3657,7 +3657,7 @@ func (m *MsgAssignConsumerKey) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } - l = len(m.Signer) + l = len(m.Submitter) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -3888,7 +3888,7 @@ func (m *MsgRemoveConsumer) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } - l = len(m.Signer) + l = len(m.Owner) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -3956,7 +3956,7 @@ func (m *MsgOptIn) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } - l = len(m.Signer) + l = len(m.Submitter) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -3990,7 +3990,7 @@ func (m *MsgOptOut) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } - l = len(m.Signer) + l = len(m.Submitter) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -4026,7 +4026,7 @@ func (m *MsgSetConsumerCommissionRate) Size() (n int) { } l = m.Rate.Size() n += 1 + l + sovTx(uint64(l)) - l = len(m.Signer) + l = len(m.Submitter) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -4113,7 +4113,7 @@ func (m *MsgCreateConsumer) Size() (n int) { } var l int _ = l - l = len(m.Signer) + l = len(m.Submitter) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -4153,7 +4153,7 @@ func (m *MsgUpdateConsumer) Size() (n int) { } var l int _ = l - l = len(m.Signer) + l = len(m.Owner) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -4322,7 +4322,7 @@ func (m *MsgAssignConsumerKey) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -4350,7 +4350,7 @@ func (m *MsgAssignConsumerKey) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Submitter = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 5: if wireType != 2 { @@ -5975,7 +5975,7 @@ func (m *MsgRemoveConsumer) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Owner", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -6003,7 +6003,7 @@ func (m *MsgRemoveConsumer) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Owner = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex @@ -6399,7 +6399,7 @@ func (m *MsgOptIn) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -6427,7 +6427,7 @@ func (m *MsgOptIn) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Submitter = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 5: if wireType != 2 { @@ -6627,7 +6627,7 @@ func (m *MsgOptOut) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -6655,7 +6655,7 @@ func (m *MsgOptOut) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Submitter = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 4: if wireType != 2 { @@ -6889,7 +6889,7 @@ func (m *MsgSetConsumerCommissionRate) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 4: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -6917,7 +6917,7 @@ func (m *MsgSetConsumerCommissionRate) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Submitter = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 5: if wireType != 2 { @@ -7441,7 +7441,7 @@ func (m *MsgCreateConsumer) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -7469,7 +7469,7 @@ func (m *MsgCreateConsumer) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Submitter = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 { @@ -7742,7 +7742,7 @@ func (m *MsgUpdateConsumer) Unmarshal(dAtA []byte) error { switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Owner", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -7770,7 +7770,7 @@ func (m *MsgUpdateConsumer) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Signer = string(dAtA[iNdEx:postIndex]) + m.Owner = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: if wireType != 2 {