diff --git a/docs/proto/proto-docs.md b/docs/proto/proto-docs.md
index dd995a0c18..e7e57fa619 100644
--- a/docs/proto/proto-docs.md
+++ b/docs/proto/proto-docs.md
@@ -112,6 +112,8 @@
- [MsgUnpinCodesResponse](#cosmwasm.wasm.v1.MsgUnpinCodesResponse)
- [MsgUpdateAdmin](#cosmwasm.wasm.v1.MsgUpdateAdmin)
- [MsgUpdateAdminResponse](#cosmwasm.wasm.v1.MsgUpdateAdminResponse)
+ - [MsgUpdateContractLabel](#cosmwasm.wasm.v1.MsgUpdateContractLabel)
+ - [MsgUpdateContractLabelResponse](#cosmwasm.wasm.v1.MsgUpdateContractLabelResponse)
- [MsgUpdateInstantiateConfig](#cosmwasm.wasm.v1.MsgUpdateInstantiateConfig)
- [MsgUpdateInstantiateConfigResponse](#cosmwasm.wasm.v1.MsgUpdateInstantiateConfigResponse)
- [MsgUpdateParams](#cosmwasm.wasm.v1.MsgUpdateParams)
@@ -1845,6 +1847,33 @@ MsgUpdateAdminResponse returns empty data
+
+
+### MsgUpdateContractLabel
+MsgUpdateContractLabel sets a new label for a smart contract
+
+
+| Field | Type | Label | Description |
+| ----- | ---- | ----- | ----------- |
+| `sender` | [string](#string) | | Sender is the that actor that signed the messages |
+| `new_label` | [string](#string) | | NewLabel string to be set |
+| `contract` | [string](#string) | | Contract is the address of the smart contract |
+
+
+
+
+
+
+
+
+### MsgUpdateContractLabelResponse
+MsgUpdateContractLabelResponse returns empty data
+
+
+
+
+
+
### MsgUpdateInstantiateConfig
@@ -1946,6 +1975,9 @@ Since: 0.40 | |
| `StoreAndMigrateContract` | [MsgStoreAndMigrateContract](#cosmwasm.wasm.v1.MsgStoreAndMigrateContract) | [MsgStoreAndMigrateContractResponse](#cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse) | StoreAndMigrateContract defines a governance operation for storing and migrating the contract. The authority is defined in the keeper.
Since: 0.42 | |
+| `UpdateContractLabel` | [MsgUpdateContractLabel](#cosmwasm.wasm.v1.MsgUpdateContractLabel) | [MsgUpdateContractLabelResponse](#cosmwasm.wasm.v1.MsgUpdateContractLabelResponse) | UpdateContractLabel sets a new label for a smart contract
+
+Since: 0.43 | |
diff --git a/proto/cosmwasm/wasm/v1/tx.proto b/proto/cosmwasm/wasm/v1/tx.proto
index 98798fe321..199ca37640 100644
--- a/proto/cosmwasm/wasm/v1/tx.proto
+++ b/proto/cosmwasm/wasm/v1/tx.proto
@@ -29,7 +29,7 @@ service Msg {
rpc ExecuteContract(MsgExecuteContract) returns (MsgExecuteContractResponse);
// Migrate runs a code upgrade/ downgrade for a smart contract
rpc MigrateContract(MsgMigrateContract) returns (MsgMigrateContractResponse);
- // UpdateAdmin sets a new admin for a smart contract
+ // UpdateAdmin sets a new admin for a smart contract
rpc UpdateAdmin(MsgUpdateAdmin) returns (MsgUpdateAdminResponse);
// ClearAdmin removes any admin stored for a smart contract
rpc ClearAdmin(MsgClearAdmin) returns (MsgClearAdminResponse);
@@ -78,6 +78,11 @@ service Msg {
// Since: 0.42
rpc StoreAndMigrateContract(MsgStoreAndMigrateContract)
returns (MsgStoreAndMigrateContractResponse);
+ // UpdateContractLabel sets a new label for a smart contract
+ //
+ // Since: 0.43
+ rpc UpdateContractLabel(MsgUpdateContractLabel)
+ returns (MsgUpdateContractLabelResponse);
}
// MsgStoreCode submit Wasm code to the system
@@ -472,4 +477,20 @@ message MsgStoreAndMigrateContractResponse {
bytes checksum = 2;
// Data contains bytes to returned from the contract
bytes data = 3;
-}
\ No newline at end of file
+}
+
+// MsgUpdateContractLabel sets a new label for a smart contract
+message MsgUpdateContractLabel {
+ option (amino.name) = "wasm/MsgUpdateContractLabel";
+ option (cosmos.msg.v1.signer) = "sender";
+
+ // Sender is the that actor that signed the messages
+ string sender = 1 [ (cosmos_proto.scalar) = "cosmos.AddressString" ];
+ // NewLabel string to be set
+ string new_label = 2;
+ // Contract is the address of the smart contract
+ string contract = 3 [ (cosmos_proto.scalar) = "cosmos.AddressString" ];
+}
+
+// MsgUpdateContractLabelResponse returns empty data
+message MsgUpdateContractLabelResponse {}
\ No newline at end of file
diff --git a/x/wasm/client/cli/new_tx.go b/x/wasm/client/cli/new_tx.go
index 18b5e3517c..5d54602aa3 100644
--- a/x/wasm/client/cli/new_tx.go
+++ b/x/wasm/client/cli/new_tx.go
@@ -157,3 +157,31 @@ func UpdateInstantiateConfigCmd() *cobra.Command {
flags.AddTxFlagsToCmd(cmd)
return cmd
}
+
+// UpdateContractLabelCmd sets an new label for a contract
+func UpdateContractLabelCmd() *cobra.Command {
+ cmd := &cobra.Command{
+ Use: "set-contract-label [contract_addr_bech32] [new_label]",
+ Short: "Set new label for a contract",
+ Args: cobra.ExactArgs(2),
+ RunE: func(cmd *cobra.Command, args []string) error {
+ clientCtx, err := client.GetClientTxContext(cmd)
+ if err != nil {
+ return err
+ }
+
+ msg := types.MsgUpdateContractLabel{
+ Sender: clientCtx.GetFromAddress().String(),
+ Contract: args[0],
+ NewLabel: args[1],
+ }
+ if err = msg.ValidateBasic(); err != nil {
+ return err
+ }
+ return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), &msg)
+ },
+ SilenceUsage: true,
+ }
+ flags.AddTxFlagsToCmd(cmd)
+ return cmd
+}
diff --git a/x/wasm/client/cli/tx.go b/x/wasm/client/cli/tx.go
index ec8bd5f569..af5e355d7c 100644
--- a/x/wasm/client/cli/tx.go
+++ b/x/wasm/client/cli/tx.go
@@ -71,6 +71,7 @@ func GetTxCmd() *cobra.Command {
GrantCmd(),
UpdateInstantiateConfigCmd(),
SubmitProposalCmd(),
+ UpdateContractLabelCmd(),
)
return txCmd
}
diff --git a/x/wasm/keeper/keeper.go b/x/wasm/keeper/keeper.go
index 43c72ad9f0..925a7fd6df 100644
--- a/x/wasm/keeper/keeper.go
+++ b/x/wasm/keeper/keeper.go
@@ -653,6 +653,26 @@ func (k Keeper) setContractAdmin(ctx context.Context, contractAddress, caller, n
return nil
}
+func (k Keeper) setContractLabel(ctx context.Context, contractAddress, caller sdk.AccAddress, newLabel string, authZ types.AuthorizationPolicy) error {
+ sdkCtx := sdk.UnwrapSDKContext(ctx)
+ contractInfo := k.GetContractInfo(sdkCtx, contractAddress)
+ if contractInfo == nil {
+ return errorsmod.Wrap(sdkerrors.ErrInvalidRequest, "unknown contract")
+ }
+ if !authZ.CanModifyContract(contractInfo.AdminAddr(), caller) {
+ return errorsmod.Wrap(sdkerrors.ErrUnauthorized, "can not modify contract")
+ }
+ contractInfo.Label = newLabel
+ k.mustStoreContractInfo(sdkCtx, contractAddress, contractInfo)
+ sdkCtx.EventManager().EmitEvent(sdk.NewEvent(
+ types.EventTypeUpdateContractLabel,
+ sdk.NewAttribute(types.AttributeKeyContractAddr, contractAddress.String()),
+ sdk.NewAttribute(types.AttributeKeyNewLabel, newLabel),
+ ))
+
+ return nil
+}
+
func (k Keeper) appendToContractHistory(ctx context.Context, contractAddr sdk.AccAddress, newEntries ...types.ContractCodeHistoryEntry) error {
store := k.storeService.OpenKVStore(ctx)
// find last element position
diff --git a/x/wasm/keeper/keeper_test.go b/x/wasm/keeper/keeper_test.go
index 2ec02394a1..dfb7e3e45c 100644
--- a/x/wasm/keeper/keeper_test.go
+++ b/x/wasm/keeper/keeper_test.go
@@ -2489,6 +2489,69 @@ func TestGasConsumed(t *testing.T) {
}
}
+func TestSetContractLabel(t *testing.T) {
+ parentCtx, keepers := CreateTestInput(t, false, AvailableCapabilities)
+ k := keepers.WasmKeeper
+ example := InstantiateReflectExampleContract(t, parentCtx, keepers)
+
+ specs := map[string]struct {
+ newLabel string
+ caller sdk.AccAddress
+ policy types.AuthorizationPolicy
+ contract sdk.AccAddress
+ expErr bool
+ }{
+ "update label - default policy": {
+ newLabel: "new label",
+ caller: example.CreatorAddr,
+ policy: DefaultAuthorizationPolicy{},
+ contract: example.Contract,
+ },
+ "update label - gov policy": {
+ newLabel: "new label",
+ policy: GovAuthorizationPolicy{},
+ caller: RandomAccountAddress(t),
+ contract: example.Contract,
+ },
+ "update label - unauthorized": {
+ newLabel: "new label",
+ caller: RandomAccountAddress(t),
+ policy: DefaultAuthorizationPolicy{},
+ contract: example.Contract,
+ expErr: true,
+ },
+ "update label - unknown contract": {
+ newLabel: "new label",
+ caller: example.CreatorAddr,
+ policy: DefaultAuthorizationPolicy{},
+ contract: RandomAccountAddress(t),
+ expErr: true,
+ },
+ }
+ for name, spec := range specs {
+ t.Run(name, func(t *testing.T) {
+ ctx, _ := parentCtx.CacheContext()
+ em := sdk.NewEventManager()
+ ctx = ctx.WithEventManager(em)
+ gotErr := k.setContractLabel(ctx, spec.contract, spec.caller, spec.newLabel, spec.policy)
+ if spec.expErr {
+ require.Error(t, gotErr)
+ return
+ }
+ require.NoError(t, gotErr)
+ assert.Equal(t, spec.newLabel, k.GetContractInfo(ctx, spec.contract).Label)
+ // and event emitted
+ require.Len(t, em.Events(), 1)
+ assert.Equal(t, "update_contract_label", em.Events()[0].Type)
+ exp := map[string]string{
+ "_contract_address": spec.contract.String(),
+ "new_label": spec.newLabel,
+ }
+ assert.Equal(t, exp, attrsToStringMap(em.Events()[0].Attributes))
+ })
+ }
+}
+
func attrsToStringMap(attrs []abci.EventAttribute) map[string]string {
r := make(map[string]string, len(attrs))
for _, v := range attrs {
diff --git a/x/wasm/keeper/msg_server.go b/x/wasm/keeper/msg_server.go
index 0cd43165c7..691ffa445c 100644
--- a/x/wasm/keeper/msg_server.go
+++ b/x/wasm/keeper/msg_server.go
@@ -462,3 +462,26 @@ func (m msgServer) StoreAndMigrateContract(goCtx context.Context, req *types.Msg
Data: data,
}, nil
}
+
+func (m msgServer) UpdateContractLabel(ctx context.Context, msg *types.MsgUpdateContractLabel) (*types.MsgUpdateContractLabelResponse, error) {
+ if err := msg.ValidateBasic(); err != nil {
+ return nil, err
+ }
+
+ senderAddr, err := sdk.AccAddressFromBech32(msg.Sender)
+ if err != nil {
+ return nil, errorsmod.Wrap(err, "sender")
+ }
+ contractAddr, err := sdk.AccAddressFromBech32(msg.Contract)
+ if err != nil {
+ return nil, errorsmod.Wrap(err, "contract")
+ }
+
+ policy := m.selectAuthorizationPolicy(ctx, msg.Sender)
+
+ if err := m.keeper.setContractLabel(ctx, contractAddr, senderAddr, msg.NewLabel, policy); err != nil {
+ return nil, err
+ }
+
+ return &types.MsgUpdateContractLabelResponse{}, nil
+}
diff --git a/x/wasm/keeper/msg_server_integration_test.go b/x/wasm/keeper/msg_server_integration_test.go
index da681fd5e9..5d737a93cc 100644
--- a/x/wasm/keeper/msg_server_integration_test.go
+++ b/x/wasm/keeper/msg_server_integration_test.go
@@ -1144,3 +1144,86 @@ func TestStoreAndMigrateContract(t *testing.T) {
})
}
}
+
+func TestUpdateContractLabel(t *testing.T) {
+ wasmApp := app.Setup(t)
+ ctx := wasmApp.BaseApp.NewContextLegacy(false, tmproto.Header{Time: time.Now()})
+
+ var (
+ myAddress sdk.AccAddress = make([]byte, types.ContractAddrLen)
+ authority = wasmApp.WasmKeeper.GetAuthority()
+ _, _, otherAddr = testdata.KeyTestPubAddr()
+ )
+
+ specs := map[string]struct {
+ addr string
+ newLabel string
+ expErr bool
+ }{
+ "authority can update contract label": {
+ addr: authority,
+ newLabel: "new label",
+ expErr: false,
+ },
+ "admin can update contract label": {
+ addr: myAddress.String(),
+ newLabel: "new label",
+ expErr: false,
+ },
+ "other address cannot update contract label": {
+ addr: otherAddr.String(),
+ newLabel: "new label",
+ expErr: true,
+ },
+ "empty new label": {
+ addr: authority,
+ expErr: true,
+ },
+ "invalid new label": {
+ addr: authority,
+ newLabel: " start with space ",
+ expErr: true,
+ },
+ }
+ for name, spec := range specs {
+ t.Run(name, func(t *testing.T) {
+ // setup
+ msg := &types.MsgStoreAndInstantiateContract{
+ Authority: spec.addr,
+ WASMByteCode: wasmContract,
+ InstantiatePermission: &types.AllowEverybody,
+ Admin: myAddress.String(),
+ UnpinCode: false,
+ Label: "old label",
+ Msg: []byte(`{}`),
+ Funds: sdk.Coins{},
+ }
+ rsp, err := wasmApp.MsgServiceRouter().Handler(msg)(ctx, msg)
+ require.NoError(t, err)
+ var storeAndInstantiateResponse types.MsgStoreAndInstantiateContractResponse
+ require.NoError(t, wasmApp.AppCodec().Unmarshal(rsp.Data, &storeAndInstantiateResponse))
+
+ contract := storeAndInstantiateResponse.Address
+ contractAddr, err := sdk.AccAddressFromBech32(contract)
+ require.NoError(t, err)
+ require.Equal(t, "old label", wasmApp.WasmKeeper.GetContractInfo(ctx, contractAddr).Label)
+
+ // when
+ msgUpdateLabel := &types.MsgUpdateContractLabel{
+ Sender: spec.addr,
+ NewLabel: spec.newLabel,
+ Contract: storeAndInstantiateResponse.Address,
+ }
+ _, err = wasmApp.MsgServiceRouter().Handler(msgUpdateLabel)(ctx, msgUpdateLabel)
+
+ // then
+ if spec.expErr {
+ require.Error(t, err)
+ require.Equal(t, "old label", wasmApp.WasmKeeper.GetContractInfo(ctx, contractAddr).Label)
+ } else {
+ require.NoError(t, err)
+ require.Equal(t, spec.newLabel, wasmApp.WasmKeeper.GetContractInfo(ctx, contractAddr).Label)
+ }
+ })
+ }
+}
diff --git a/x/wasm/types/codec.go b/x/wasm/types/codec.go
index 2f3985380e..c13f75191b 100644
--- a/x/wasm/types/codec.go
+++ b/x/wasm/types/codec.go
@@ -27,6 +27,7 @@ func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgAddCodeUploadParamsAddresses{}, "wasm/MsgAddCodeUploadParamsAddresses", nil)
cdc.RegisterConcrete(&MsgRemoveCodeUploadParamsAddresses{}, "wasm/MsgRemoveCodeUploadParamsAddresses", nil)
cdc.RegisterConcrete(&MsgStoreAndMigrateContract{}, "wasm/MsgStoreAndMigrateContract", nil)
+ cdc.RegisterConcrete(&MsgUpdateContractLabel{}, "wasm/MsgUpdateContractLabel", nil)
cdc.RegisterConcrete(&PinCodesProposal{}, "wasm/PinCodesProposal", nil)
cdc.RegisterConcrete(&UnpinCodesProposal{}, "wasm/UnpinCodesProposal", nil)
@@ -79,6 +80,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) {
&MsgAddCodeUploadParamsAddresses{},
&MsgRemoveCodeUploadParamsAddresses{},
&MsgStoreAndMigrateContract{},
+ &MsgUpdateContractLabel{},
)
registry.RegisterImplementations(
(*v1beta1.Content)(nil),
diff --git a/x/wasm/types/events.go b/x/wasm/types/events.go
index e1588d6f36..db44bb4da7 100644
--- a/x/wasm/types/events.go
+++ b/x/wasm/types/events.go
@@ -24,6 +24,7 @@ const (
EventTypeReply = "reply"
EventTypeGovContractResult = "gov_contract_result"
EventTypeUpdateContractAdmin = "update_contract_admin"
+ EventTypeUpdateContractLabel = "update_contract_label"
EventTypeUpdateCodeAccessConfig = "update_code_access_config"
EventTypePacketRecv = "ibc_packet_received"
// add new types to IsAcceptedEventOnRecvPacketErrorAck
@@ -61,6 +62,7 @@ const (
AttributeKeyResultDataHex = "result"
AttributeKeyRequiredCapability = "required_capability"
AttributeKeyNewAdmin = "new_admin_address"
+ AttributeKeyNewLabel = "new_label"
AttributeKeyCodePermission = "code_permission"
AttributeKeyAuthorizedAddresses = "authorized_addresses"
AttributeKeyAckSuccess = "success"
diff --git a/x/wasm/types/tx.go b/x/wasm/types/tx.go
index a50196bd6c..f992b5409b 100644
--- a/x/wasm/types/tx.go
+++ b/x/wasm/types/tx.go
@@ -690,3 +690,32 @@ func hasDuplicates[T comparable](s []T) bool {
}
return false
}
+
+func (msg MsgUpdateContractLabel) Route() string {
+ return RouterKey
+}
+
+func (msg MsgUpdateContractLabel) Type() string {
+ return "update-contract-label"
+}
+
+func (msg MsgUpdateContractLabel) ValidateBasic() error {
+ if _, err := sdk.AccAddressFromBech32(msg.Sender); err != nil {
+ return errorsmod.Wrap(err, "sender")
+ }
+ if err := ValidateLabel(msg.NewLabel); err != nil {
+ return errorsmod.Wrap(err, "label")
+ }
+ if _, err := sdk.AccAddressFromBech32(msg.Contract); err != nil {
+ return errorsmod.Wrap(err, "contract")
+ }
+ return nil
+}
+
+func (msg MsgUpdateContractLabel) GetSigners() []sdk.AccAddress {
+ senderAddr, err := sdk.AccAddressFromBech32(msg.Sender)
+ if err != nil { // should never happen as valid basic rejects invalid addresses
+ panic(err.Error())
+ }
+ return []sdk.AccAddress{senderAddr}
+}
diff --git a/x/wasm/types/tx.pb.go b/x/wasm/types/tx.pb.go
index 4e38b0dc97..966465f78d 100644
--- a/x/wasm/types/tx.pb.go
+++ b/x/wasm/types/tx.pb.go
@@ -1578,6 +1578,95 @@ func (m *MsgStoreAndMigrateContractResponse) XXX_DiscardUnknown() {
var xxx_messageInfo_MsgStoreAndMigrateContractResponse proto.InternalMessageInfo
+// MsgUpdateContractLabel sets a new label for a smart contract
+type MsgUpdateContractLabel struct {
+ // Sender is the that actor that signed the messages
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
+ // NewLabel string to be set
+ NewLabel string `protobuf:"bytes,2,opt,name=new_label,json=newLabel,proto3" json:"new_label,omitempty"`
+ // Contract is the address of the smart contract
+ Contract string `protobuf:"bytes,3,opt,name=contract,proto3" json:"contract,omitempty"`
+}
+
+func (m *MsgUpdateContractLabel) Reset() { *m = MsgUpdateContractLabel{} }
+func (m *MsgUpdateContractLabel) String() string { return proto.CompactTextString(m) }
+func (*MsgUpdateContractLabel) ProtoMessage() {}
+func (*MsgUpdateContractLabel) Descriptor() ([]byte, []int) {
+ return fileDescriptor_4f74d82755520264, []int{32}
+}
+
+func (m *MsgUpdateContractLabel) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+
+func (m *MsgUpdateContractLabel) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ if deterministic {
+ return xxx_messageInfo_MsgUpdateContractLabel.Marshal(b, m, deterministic)
+ } else {
+ b = b[:cap(b)]
+ n, err := m.MarshalToSizedBuffer(b)
+ if err != nil {
+ return nil, err
+ }
+ return b[:n], nil
+ }
+}
+
+func (m *MsgUpdateContractLabel) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MsgUpdateContractLabel.Merge(m, src)
+}
+
+func (m *MsgUpdateContractLabel) XXX_Size() int {
+ return m.Size()
+}
+
+func (m *MsgUpdateContractLabel) XXX_DiscardUnknown() {
+ xxx_messageInfo_MsgUpdateContractLabel.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MsgUpdateContractLabel proto.InternalMessageInfo
+
+// MsgUpdateContractLabelResponse returns empty data
+type MsgUpdateContractLabelResponse struct{}
+
+func (m *MsgUpdateContractLabelResponse) Reset() { *m = MsgUpdateContractLabelResponse{} }
+func (m *MsgUpdateContractLabelResponse) String() string { return proto.CompactTextString(m) }
+func (*MsgUpdateContractLabelResponse) ProtoMessage() {}
+func (*MsgUpdateContractLabelResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_4f74d82755520264, []int{33}
+}
+
+func (m *MsgUpdateContractLabelResponse) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+
+func (m *MsgUpdateContractLabelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ if deterministic {
+ return xxx_messageInfo_MsgUpdateContractLabelResponse.Marshal(b, m, deterministic)
+ } else {
+ b = b[:cap(b)]
+ n, err := m.MarshalToSizedBuffer(b)
+ if err != nil {
+ return nil, err
+ }
+ return b[:n], nil
+ }
+}
+
+func (m *MsgUpdateContractLabelResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MsgUpdateContractLabelResponse.Merge(m, src)
+}
+
+func (m *MsgUpdateContractLabelResponse) XXX_Size() int {
+ return m.Size()
+}
+
+func (m *MsgUpdateContractLabelResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_MsgUpdateContractLabelResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MsgUpdateContractLabelResponse proto.InternalMessageInfo
+
func init() {
proto.RegisterType((*MsgStoreCode)(nil), "cosmwasm.wasm.v1.MsgStoreCode")
proto.RegisterType((*MsgStoreCodeResponse)(nil), "cosmwasm.wasm.v1.MsgStoreCodeResponse")
@@ -1611,116 +1700,122 @@ func init() {
proto.RegisterType((*MsgRemoveCodeUploadParamsAddressesResponse)(nil), "cosmwasm.wasm.v1.MsgRemoveCodeUploadParamsAddressesResponse")
proto.RegisterType((*MsgStoreAndMigrateContract)(nil), "cosmwasm.wasm.v1.MsgStoreAndMigrateContract")
proto.RegisterType((*MsgStoreAndMigrateContractResponse)(nil), "cosmwasm.wasm.v1.MsgStoreAndMigrateContractResponse")
+ proto.RegisterType((*MsgUpdateContractLabel)(nil), "cosmwasm.wasm.v1.MsgUpdateContractLabel")
+ proto.RegisterType((*MsgUpdateContractLabelResponse)(nil), "cosmwasm.wasm.v1.MsgUpdateContractLabelResponse")
}
func init() { proto.RegisterFile("cosmwasm/wasm/v1/tx.proto", fileDescriptor_4f74d82755520264) }
var fileDescriptor_4f74d82755520264 = []byte{
- // 1660 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xbb, 0x6f, 0xdb, 0x56,
- 0x17, 0x37, 0xad, 0xf7, 0xb1, 0x93, 0x38, 0x8c, 0x63, 0xcb, 0x4c, 0x22, 0x39, 0xcc, 0xc3, 0x8a,
- 0x3f, 0x47, 0xb2, 0xf5, 0x25, 0xf9, 0xbe, 0xa8, 0x5d, 0x2c, 0xa7, 0x40, 0x1d, 0x40, 0x80, 0x41,
- 0xc3, 0x0d, 0x5a, 0x04, 0x30, 0x68, 0xf1, 0x9a, 0x26, 0x62, 0x92, 0xaa, 0x2e, 0xe5, 0xc7, 0x50,
- 0xa0, 0xc8, 0xd6, 0xa2, 0x43, 0x97, 0x4e, 0x1d, 0x8b, 0x02, 0x6d, 0x97, 0x66, 0x28, 0xd0, 0xff,
- 0xa0, 0xc8, 0xd0, 0x21, 0x08, 0x3a, 0x74, 0xa9, 0xda, 0x2a, 0x28, 0xb2, 0x07, 0x99, 0x3a, 0x14,
- 0x05, 0xef, 0x25, 0x29, 0x8a, 0x22, 0xa9, 0x87, 0x1d, 0xa4, 0x43, 0x17, 0x9b, 0xbc, 0xe7, 0x71,
- 0xcf, 0xf9, 0x9d, 0x73, 0xcf, 0x3d, 0x87, 0x82, 0x99, 0xaa, 0x8e, 0xd5, 0x7d, 0x11, 0xab, 0x05,
- 0xf2, 0x67, 0x6f, 0xa9, 0x60, 0x1c, 0xe4, 0x6b, 0x75, 0xdd, 0xd0, 0xd9, 0x09, 0x9b, 0x94, 0x27,
- 0x7f, 0xf6, 0x96, 0xb8, 0x8c, 0xb9, 0xa2, 0xe3, 0xc2, 0x96, 0x88, 0x51, 0x61, 0x6f, 0x69, 0x0b,
- 0x19, 0xe2, 0x52, 0xa1, 0xaa, 0x2b, 0x1a, 0x95, 0xe0, 0xa6, 0x2d, 0xba, 0x8a, 0x65, 0x53, 0x93,
- 0x8a, 0x65, 0x8b, 0x30, 0x29, 0xeb, 0xb2, 0x4e, 0x1e, 0x0b, 0xe6, 0x93, 0xb5, 0x7a, 0xbe, 0x7b,
- 0xef, 0xc3, 0x1a, 0xc2, 0x16, 0x75, 0x86, 0x2a, 0xdb, 0xa4, 0x62, 0xf4, 0xc5, 0x22, 0x9d, 0x16,
- 0x55, 0x45, 0xd3, 0x0b, 0xe4, 0x2f, 0x5d, 0xe2, 0xff, 0x62, 0x60, 0xbc, 0x82, 0xe5, 0x75, 0x43,
- 0xaf, 0xa3, 0x15, 0x5d, 0x42, 0xec, 0x22, 0xc4, 0x31, 0xd2, 0x24, 0x54, 0x4f, 0x33, 0xb3, 0x4c,
- 0x2e, 0x55, 0x4e, 0x3f, 0xfd, 0xee, 0xfa, 0xa4, 0xa5, 0x65, 0x59, 0x92, 0xea, 0x08, 0xe3, 0x75,
- 0xa3, 0xae, 0x68, 0xb2, 0x60, 0xf1, 0xb1, 0xb7, 0xe0, 0xa4, 0x69, 0xc7, 0xe6, 0xd6, 0xa1, 0x81,
- 0x36, 0xab, 0xba, 0x84, 0xd2, 0xa3, 0xb3, 0x4c, 0x6e, 0xbc, 0x3c, 0xd1, 0x6a, 0x66, 0xc7, 0xef,
- 0x2d, 0xaf, 0x57, 0xca, 0x87, 0x06, 0xd1, 0x2d, 0x8c, 0x9b, 0x7c, 0xf6, 0x1b, 0xbb, 0x01, 0x53,
- 0x8a, 0x86, 0x0d, 0x51, 0x33, 0x14, 0xd1, 0x40, 0x9b, 0x35, 0x54, 0x57, 0x15, 0x8c, 0x15, 0x5d,
- 0x4b, 0xc7, 0x66, 0x99, 0xdc, 0x58, 0x31, 0x93, 0xf7, 0x02, 0x99, 0x5f, 0xae, 0x56, 0x11, 0xc6,
- 0x2b, 0xba, 0xb6, 0xad, 0xc8, 0xc2, 0x59, 0x97, 0xf4, 0x9a, 0x23, 0x5c, 0xba, 0xf8, 0xf0, 0xf9,
- 0xa3, 0x79, 0xcb, 0xb6, 0x8f, 0x9f, 0x3f, 0x9a, 0x3f, 0x4d, 0x40, 0x72, 0xfb, 0x78, 0x37, 0x9a,
- 0x8c, 0x4c, 0x44, 0xef, 0x46, 0x93, 0xd1, 0x89, 0x18, 0x7f, 0x0f, 0x26, 0xdd, 0x34, 0x01, 0xe1,
- 0x9a, 0xae, 0x61, 0xc4, 0x5e, 0x82, 0x84, 0xe9, 0xcb, 0xa6, 0x22, 0x11, 0x20, 0xa2, 0x65, 0x68,
- 0x35, 0xb3, 0x71, 0x93, 0x65, 0xf5, 0x8e, 0x10, 0x37, 0x49, 0xab, 0x12, 0xcb, 0x41, 0xb2, 0xba,
- 0x83, 0xaa, 0x0f, 0x70, 0x43, 0xa5, 0x4e, 0x0b, 0xce, 0x3b, 0xff, 0x72, 0x14, 0xa6, 0x2a, 0x58,
- 0x5e, 0x6d, 0x1b, 0xb9, 0xa2, 0x6b, 0x46, 0x5d, 0xac, 0x1a, 0x43, 0x60, 0x9c, 0x87, 0x98, 0x28,
- 0xa9, 0x8a, 0x46, 0x76, 0x09, 0x13, 0xa0, 0x6c, 0x6e, 0xeb, 0x23, 0x81, 0xd6, 0x4f, 0x42, 0x6c,
- 0x57, 0xdc, 0x42, 0xbb, 0xe9, 0xa8, 0xa9, 0x54, 0xa0, 0x2f, 0x6c, 0x0e, 0x22, 0x2a, 0x96, 0x49,
- 0x0c, 0xc6, 0xcb, 0x53, 0x7f, 0x36, 0xb3, 0xac, 0x20, 0xee, 0xdb, 0xa6, 0x57, 0x10, 0xc6, 0xa2,
- 0x8c, 0x04, 0x93, 0x85, 0xdd, 0x86, 0xd8, 0x76, 0x43, 0x93, 0x70, 0x3a, 0x3e, 0x1b, 0xc9, 0x8d,
- 0x15, 0x67, 0xf2, 0x96, 0x45, 0x66, 0x9a, 0xe7, 0xad, 0x34, 0xcf, 0xaf, 0xe8, 0x8a, 0x56, 0xbe,
- 0xf9, 0xb8, 0x99, 0x1d, 0xf9, 0xe6, 0xd7, 0x6c, 0x4e, 0x56, 0x8c, 0x9d, 0xc6, 0x56, 0xbe, 0xaa,
- 0xab, 0x56, 0x66, 0x5a, 0xff, 0xae, 0x63, 0xe9, 0x81, 0x95, 0xc5, 0xa6, 0x00, 0xfe, 0xea, 0xf9,
- 0xa3, 0x79, 0x46, 0xa0, 0xea, 0x4b, 0xff, 0xf1, 0x44, 0xf4, 0x9c, 0x1d, 0x51, 0x1f, 0x6c, 0xf9,
- 0x1d, 0xc8, 0xf8, 0x53, 0x9c, 0xc8, 0x16, 0x21, 0x21, 0x52, 0xcc, 0x7a, 0xc2, 0x6f, 0x33, 0xb2,
- 0x2c, 0x44, 0x25, 0xd1, 0x10, 0xad, 0x20, 0x93, 0x67, 0xfe, 0x8b, 0x08, 0x4c, 0xfb, 0x6f, 0x55,
- 0xfc, 0x37, 0xc2, 0x03, 0x45, 0xd8, 0x84, 0x17, 0x8b, 0xbb, 0x46, 0x3a, 0x41, 0xe1, 0x35, 0x9f,
- 0xd9, 0x69, 0x48, 0x6c, 0x2b, 0x07, 0x9b, 0xa6, 0xa5, 0xc9, 0x59, 0x26, 0x97, 0x14, 0xe2, 0xdb,
- 0xca, 0x41, 0x05, 0xcb, 0xa5, 0x05, 0x4f, 0x3a, 0x9c, 0x0f, 0x49, 0x87, 0x22, 0xaf, 0x40, 0x36,
- 0x80, 0x74, 0xec, 0x09, 0xf1, 0xfd, 0x28, 0xb0, 0x15, 0x2c, 0xbf, 0x75, 0x80, 0xaa, 0x8d, 0x23,
- 0x9d, 0xf6, 0x1b, 0x90, 0xac, 0x5a, 0xd2, 0x3d, 0xd3, 0xc1, 0xe1, 0xb4, 0xc3, 0x1a, 0x19, 0x20,
- 0xac, 0xb1, 0x57, 0x7b, 0x70, 0xe7, 0x3c, 0x91, 0x9a, 0xb6, 0x23, 0xe5, 0x81, 0x88, 0x5f, 0x04,
- 0xae, 0x7b, 0xd5, 0x89, 0x8f, 0x8d, 0x35, 0xe3, 0xc2, 0xfa, 0x25, 0x43, 0xb0, 0xae, 0x28, 0x72,
- 0x5d, 0x7c, 0x0d, 0x58, 0xf7, 0x75, 0xfa, 0xac, 0x80, 0x44, 0x7b, 0x06, 0x24, 0x18, 0x28, 0x8f,
- 0x7f, 0x16, 0x50, 0x9e, 0xd5, 0x50, 0xa0, 0x7e, 0x62, 0xe0, 0x64, 0x05, 0xcb, 0x1b, 0x35, 0x49,
- 0x34, 0xd0, 0x32, 0x29, 0x1d, 0x83, 0x83, 0x74, 0x13, 0x52, 0x1a, 0xda, 0xdf, 0xec, 0xaf, 0x40,
- 0x25, 0x35, 0xb4, 0x4f, 0x37, 0x72, 0x63, 0x1b, 0xe9, 0x17, 0xdb, 0xd2, 0x25, 0x0f, 0x18, 0x67,
- 0x6c, 0x30, 0x5c, 0x3e, 0xf0, 0x69, 0x72, 0xb9, 0xba, 0x56, 0x6c, 0x10, 0xf8, 0xcf, 0x19, 0x38,
- 0x51, 0xc1, 0xf2, 0xca, 0x2e, 0x12, 0xeb, 0xc3, 0xfa, 0x3b, 0x9c, 0xe1, 0xbc, 0xc7, 0x70, 0xd6,
- 0x36, 0xbc, 0x6d, 0x0b, 0x3f, 0x0d, 0x67, 0x3b, 0x16, 0x1c, 0xb3, 0x1f, 0x8e, 0x92, 0xd0, 0x52,
- 0x8f, 0x3a, 0xcb, 0xd5, 0xb6, 0x22, 0x0f, 0xe1, 0x83, 0x2b, 0x45, 0x47, 0x03, 0x53, 0xf4, 0x3e,
- 0x70, 0x66, 0x60, 0x03, 0xfa, 0xb0, 0x48, 0x5f, 0x7d, 0x58, 0x5a, 0x43, 0xfb, 0xab, 0xbe, 0xad,
- 0x58, 0xc1, 0x03, 0x48, 0xb6, 0x33, 0x92, 0x5d, 0x5e, 0xf2, 0x97, 0x81, 0x0f, 0xa6, 0x3a, 0x50,
- 0x7d, 0xcb, 0xc0, 0x29, 0x87, 0x6d, 0x4d, 0xac, 0x8b, 0x2a, 0x66, 0x6f, 0x41, 0x4a, 0x6c, 0x18,
- 0x3b, 0x7a, 0x5d, 0x31, 0x0e, 0x7b, 0x42, 0xd4, 0x66, 0x65, 0xdf, 0x80, 0x78, 0x8d, 0x68, 0x20,
- 0x20, 0x8d, 0x15, 0xd3, 0xdd, 0xce, 0xd2, 0x1d, 0xca, 0x29, 0xb3, 0x14, 0xd2, 0xf2, 0x66, 0x89,
- 0xd0, 0x63, 0xdb, 0x56, 0x66, 0xba, 0x38, 0xd9, 0xe9, 0x22, 0x95, 0xe5, 0x67, 0x48, 0xa7, 0xe0,
- 0x5e, 0x72, 0x9c, 0x79, 0x4a, 0x9d, 0x59, 0x6f, 0x48, 0xba, 0x53, 0xc5, 0x86, 0x75, 0xe6, 0x15,
- 0xdf, 0x1b, 0xa1, 0xfe, 0xba, 0x1d, 0xe0, 0xaf, 0x13, 0x7f, 0xdd, 0x4b, 0xa1, 0x35, 0xea, 0x4b,
- 0x06, 0xc6, 0x2a, 0x58, 0x5e, 0x53, 0x34, 0x33, 0x3d, 0x87, 0x0f, 0xe6, 0x6d, 0xd3, 0x7f, 0x92,
- 0xf2, 0x66, 0x38, 0x23, 0xb9, 0x68, 0x39, 0xd3, 0x6a, 0x66, 0x13, 0x34, 0xe7, 0xf1, 0x8b, 0x66,
- 0xf6, 0xd4, 0xa1, 0xa8, 0xee, 0x96, 0x78, 0x9b, 0x89, 0x17, 0x12, 0xf4, 0x1c, 0x60, 0x5a, 0x74,
- 0x3a, 0x5d, 0x9b, 0xb0, 0x5d, 0xb3, 0xed, 0xe2, 0xcf, 0xc2, 0x19, 0xd7, 0xab, 0x13, 0xc2, 0xaf,
- 0x69, 0xc5, 0xd9, 0xd0, 0x6a, 0xaf, 0xd1, 0x81, 0x2b, 0xdd, 0x0e, 0x38, 0xf5, 0xa7, 0x6d, 0x99,
- 0x55, 0x7f, 0xda, 0x0b, 0x8e, 0x13, 0x7f, 0x44, 0x49, 0xe3, 0x4c, 0x06, 0xa1, 0x65, 0x4d, 0xf2,
- 0x1b, 0x5b, 0x86, 0xf5, 0xaa, 0x7b, 0x40, 0x8c, 0x1c, 0x71, 0x40, 0x8c, 0x1e, 0x61, 0x40, 0x64,
- 0x2f, 0x00, 0x34, 0x4c, 0xff, 0xa9, 0x29, 0x31, 0xd2, 0x5b, 0xa6, 0x1a, 0x36, 0x22, 0xed, 0x46,
- 0x3c, 0xde, 0x5f, 0x23, 0xee, 0xf4, 0xd8, 0x09, 0x9f, 0x1e, 0x3b, 0x39, 0x40, 0x33, 0x96, 0x7a,
- 0xb5, 0x3d, 0xf6, 0x14, 0xc4, 0xb1, 0xde, 0xa8, 0x57, 0x51, 0x1a, 0x88, 0xa1, 0xd6, 0x1b, 0x9b,
- 0x86, 0xc4, 0x56, 0x43, 0xd9, 0x35, 0xaf, 0x96, 0x31, 0x42, 0xb0, 0x5f, 0xd9, 0x73, 0x90, 0x22,
- 0x89, 0xb6, 0x23, 0xe2, 0x9d, 0xf4, 0xb8, 0x35, 0xde, 0xea, 0x12, 0x7a, 0x5b, 0xc4, 0x3b, 0xa5,
- 0x5b, 0xdd, 0xf9, 0x76, 0xa9, 0x63, 0xd2, 0xf6, 0x4f, 0x22, 0xbe, 0x06, 0x57, 0xc3, 0x39, 0x8e,
- 0xbd, 0x2d, 0xff, 0x81, 0x21, 0x23, 0xc0, 0xb2, 0x24, 0x99, 0xf1, 0xdd, 0xa8, 0xed, 0xea, 0xa2,
- 0x44, 0x8b, 0xb0, 0xa5, 0xe4, 0x08, 0x07, 0xb6, 0x08, 0x29, 0xd1, 0x56, 0x42, 0x4e, 0x6c, 0xaa,
- 0x3c, 0xf9, 0xa2, 0x99, 0x9d, 0xa0, 0xc7, 0xd4, 0x21, 0xf1, 0x42, 0x9b, 0xad, 0xf4, 0xbf, 0x6e,
- 0xe4, 0x2e, 0xdb, 0xc8, 0x85, 0x19, 0xc9, 0x5f, 0x83, 0xb9, 0x1e, 0x2c, 0xce, 0x69, 0xfe, 0x91,
- 0x21, 0x37, 0xa9, 0x80, 0x54, 0x7d, 0x0f, 0xfd, 0x33, 0xdc, 0x2e, 0x75, 0xbb, 0x3d, 0x67, 0xbb,
- 0xdd, 0xc3, 0x4e, 0x7e, 0x01, 0xe6, 0x7b, 0x73, 0x39, 0xce, 0xff, 0x42, 0x5b, 0x29, 0x3b, 0xc7,
- 0xbc, 0x33, 0xc2, 0xf1, 0x95, 0xb1, 0xa3, 0x7e, 0xe7, 0x8a, 0x1c, 0xa5, 0x8c, 0x71, 0xae, 0xcb,
- 0x9e, 0x8e, 0xf7, 0x5d, 0x57, 0x7a, 0xef, 0x09, 0xbf, 0x54, 0xec, 0x8e, 0x4a, 0xd6, 0x7b, 0x8c,
- 0xbd, 0x43, 0xc8, 0x21, 0xc9, 0xad, 0x00, 0xea, 0xb1, 0x7d, 0x40, 0x73, 0xce, 0x72, 0xa4, 0x7d,
- 0x96, 0x8b, 0xad, 0x13, 0x10, 0xa9, 0x60, 0x99, 0x5d, 0x87, 0x54, 0xfb, 0x93, 0xa5, 0x0f, 0x80,
- 0xee, 0x4f, 0x7a, 0xdc, 0xd5, 0x70, 0xba, 0x63, 0xf1, 0xfb, 0x70, 0xc6, 0xef, 0xda, 0xcb, 0xf9,
- 0x8a, 0xfb, 0x70, 0x72, 0x8b, 0xfd, 0x72, 0x3a, 0x5b, 0x1a, 0x30, 0xe9, 0xfb, 0xfd, 0xe8, 0x5a,
- 0xbf, 0x9a, 0x8a, 0xdc, 0x52, 0xdf, 0xac, 0xce, 0xae, 0x08, 0x4e, 0x79, 0x3f, 0x52, 0x5c, 0xf6,
- 0xd5, 0xe2, 0xe1, 0xe2, 0x16, 0xfa, 0xe1, 0x72, 0x6f, 0xe3, 0x3d, 0x7b, 0xfe, 0xdb, 0x78, 0xb8,
- 0x02, 0xb6, 0x09, 0x4a, 0xb4, 0x77, 0x61, 0xcc, 0x3d, 0xdd, 0xce, 0xfa, 0x0a, 0xbb, 0x38, 0xb8,
- 0x5c, 0x2f, 0x0e, 0x47, 0xf5, 0x3b, 0x00, 0xae, 0x39, 0x32, 0xeb, 0x2b, 0xd7, 0x66, 0xe0, 0xe6,
- 0x7a, 0x30, 0x38, 0x7a, 0x3f, 0x80, 0xe9, 0xa0, 0x41, 0x6f, 0x21, 0xc4, 0xb8, 0x2e, 0x6e, 0xee,
- 0xc6, 0x20, 0xdc, 0xce, 0xf6, 0xf7, 0x61, 0xbc, 0x63, 0x78, 0xba, 0x18, 0xa2, 0x85, 0xb2, 0x70,
- 0xd7, 0x7a, 0xb2, 0xb8, 0xb5, 0x77, 0x4c, 0x33, 0xfe, 0xda, 0xdd, 0x2c, 0x01, 0xda, 0x7d, 0xe7,
- 0x87, 0x35, 0x48, 0x3a, 0x73, 0xc2, 0x05, 0x5f, 0x31, 0x9b, 0xcc, 0x5d, 0x09, 0x25, 0xbb, 0x83,
- 0xec, 0x6a, 0xdd, 0xfd, 0x83, 0xdc, 0x66, 0x08, 0x08, 0x72, 0x77, 0x47, 0xcd, 0x7e, 0xc4, 0xc0,
- 0xb9, 0xb0, 0x76, 0x7a, 0x31, 0xb8, 0x2c, 0xf9, 0x4b, 0x70, 0xff, 0x1f, 0x54, 0xc2, 0xb1, 0xe5,
- 0x33, 0x06, 0xb2, 0xbd, 0x9a, 0x01, 0xff, 0x5c, 0xea, 0x21, 0xc5, 0xbd, 0x39, 0x8c, 0x94, 0x63,
- 0xd7, 0x27, 0x0c, 0x9c, 0x0f, 0x6d, 0xcc, 0xfc, 0xab, 0x5b, 0x98, 0x08, 0x77, 0x7b, 0x60, 0x11,
- 0xf7, 0xb9, 0x0c, 0xea, 0x1a, 0x16, 0x42, 0xb1, 0xf7, 0x56, 0xb0, 0x1b, 0x83, 0x70, 0xdb, 0xdb,
- 0x73, 0xb1, 0x0f, 0xcd, 0x86, 0xbd, 0x7c, 0xe7, 0xf1, 0xef, 0x99, 0x91, 0xc7, 0xad, 0x0c, 0xf3,
- 0xa4, 0x95, 0x61, 0x7e, 0x6b, 0x65, 0x98, 0x4f, 0x9f, 0x65, 0x46, 0x9e, 0x3c, 0xcb, 0x8c, 0xfc,
- 0xfc, 0x2c, 0x33, 0xf2, 0xde, 0x55, 0x57, 0xf7, 0xbf, 0xa2, 0x63, 0xf5, 0x9e, 0xfd, 0x43, 0xa0,
- 0x54, 0x38, 0xa0, 0x3f, 0x08, 0x92, 0x09, 0x60, 0x2b, 0x4e, 0x7e, 0xe0, 0xfb, 0xef, 0xdf, 0x01,
- 0x00, 0x00, 0xff, 0xff, 0xea, 0xa8, 0x7e, 0x75, 0xaa, 0x1c, 0x00, 0x00,
+ // 1717 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcb, 0x6f, 0x1b, 0x55,
+ 0x17, 0xcf, 0xc4, 0xef, 0x93, 0x7c, 0x6d, 0x3a, 0x4d, 0x13, 0x67, 0xd2, 0xda, 0xe9, 0xf4, 0x11,
+ 0x37, 0x5f, 0x6a, 0x27, 0xfe, 0xda, 0x7e, 0xd4, 0xb0, 0x89, 0x53, 0x24, 0x52, 0x61, 0x29, 0x72,
+ 0x14, 0x2a, 0x50, 0xa5, 0x68, 0xe2, 0xb9, 0x99, 0x8c, 0x1a, 0xcf, 0x18, 0xdf, 0x71, 0x1e, 0x0b,
+ 0x24, 0xd4, 0x1d, 0x88, 0x05, 0x1b, 0x56, 0x2c, 0x11, 0x12, 0xb0, 0xa1, 0x0b, 0x24, 0xfe, 0x03,
+ 0x54, 0x21, 0x16, 0x55, 0x05, 0x12, 0x1b, 0x0c, 0xa4, 0x42, 0xdd, 0x57, 0x5d, 0xb1, 0x40, 0x68,
+ 0xee, 0x9d, 0x19, 0x5f, 0x8f, 0x67, 0xc6, 0x8f, 0xa4, 0x2a, 0x0b, 0x36, 0xc9, 0xcc, 0x3d, 0x8f,
+ 0x7b, 0xce, 0xef, 0x9c, 0x7b, 0xee, 0x39, 0x63, 0x98, 0xaa, 0xe8, 0xb8, 0xba, 0x27, 0xe1, 0x6a,
+ 0x8e, 0xfc, 0xd9, 0x5d, 0xcc, 0x19, 0xfb, 0xd9, 0x5a, 0x5d, 0x37, 0x74, 0x7e, 0xcc, 0x26, 0x65,
+ 0xc9, 0x9f, 0xdd, 0x45, 0x21, 0x65, 0xae, 0xe8, 0x38, 0xb7, 0x29, 0x61, 0x94, 0xdb, 0x5d, 0xdc,
+ 0x44, 0x86, 0xb4, 0x98, 0xab, 0xe8, 0xaa, 0x46, 0x25, 0x84, 0x49, 0x8b, 0x5e, 0xc5, 0x8a, 0xa9,
+ 0xa9, 0x8a, 0x15, 0x8b, 0x30, 0xae, 0xe8, 0x8a, 0x4e, 0x1e, 0x73, 0xe6, 0x93, 0xb5, 0x7a, 0xb6,
+ 0x73, 0xef, 0x83, 0x1a, 0xc2, 0x16, 0x75, 0x8a, 0x2a, 0xdb, 0xa0, 0x62, 0xf4, 0xc5, 0x22, 0x9d,
+ 0x92, 0xaa, 0xaa, 0xa6, 0xe7, 0xc8, 0x5f, 0xba, 0x24, 0xfe, 0xc5, 0xc1, 0x68, 0x09, 0x2b, 0x6b,
+ 0x86, 0x5e, 0x47, 0xcb, 0xba, 0x8c, 0xf8, 0x05, 0x88, 0x62, 0xa4, 0xc9, 0xa8, 0x9e, 0xe4, 0x66,
+ 0xb8, 0x4c, 0xa2, 0x98, 0x7c, 0xfc, 0xcd, 0xd5, 0x71, 0x4b, 0xcb, 0x92, 0x2c, 0xd7, 0x11, 0xc6,
+ 0x6b, 0x46, 0x5d, 0xd5, 0x94, 0xb2, 0xc5, 0xc7, 0xdf, 0x80, 0x13, 0xa6, 0x1d, 0x1b, 0x9b, 0x07,
+ 0x06, 0xda, 0xa8, 0xe8, 0x32, 0x4a, 0x0e, 0xcf, 0x70, 0x99, 0xd1, 0xe2, 0xd8, 0x61, 0x33, 0x3d,
+ 0x7a, 0x67, 0x69, 0xad, 0x54, 0x3c, 0x30, 0x88, 0xee, 0xf2, 0xa8, 0xc9, 0x67, 0xbf, 0xf1, 0xeb,
+ 0x30, 0xa1, 0x6a, 0xd8, 0x90, 0x34, 0x43, 0x95, 0x0c, 0xb4, 0x51, 0x43, 0xf5, 0xaa, 0x8a, 0xb1,
+ 0xaa, 0x6b, 0xc9, 0xc8, 0x0c, 0x97, 0x19, 0xc9, 0xa7, 0xb2, 0x6e, 0x20, 0xb3, 0x4b, 0x95, 0x0a,
+ 0xc2, 0x78, 0x59, 0xd7, 0xb6, 0x54, 0xa5, 0x7c, 0x86, 0x91, 0x5e, 0x75, 0x84, 0x0b, 0xe7, 0xef,
+ 0x3f, 0x7d, 0x30, 0x67, 0xd9, 0xf6, 0xe1, 0xd3, 0x07, 0x73, 0xa7, 0x08, 0x48, 0xac, 0x8f, 0xb7,
+ 0xc3, 0xf1, 0xd0, 0x58, 0xf8, 0x76, 0x38, 0x1e, 0x1e, 0x8b, 0x88, 0x77, 0x60, 0x9c, 0xa5, 0x95,
+ 0x11, 0xae, 0xe9, 0x1a, 0x46, 0xfc, 0x05, 0x88, 0x99, 0xbe, 0x6c, 0xa8, 0x32, 0x01, 0x22, 0x5c,
+ 0x84, 0xc3, 0x66, 0x3a, 0x6a, 0xb2, 0xac, 0xdc, 0x2a, 0x47, 0x4d, 0xd2, 0x8a, 0xcc, 0x0b, 0x10,
+ 0xaf, 0x6c, 0xa3, 0xca, 0x3d, 0xdc, 0xa8, 0x52, 0xa7, 0xcb, 0xce, 0xbb, 0xf8, 0x7c, 0x18, 0x26,
+ 0x4a, 0x58, 0x59, 0x69, 0x19, 0xb9, 0xac, 0x6b, 0x46, 0x5d, 0xaa, 0x18, 0x03, 0x60, 0x9c, 0x85,
+ 0x88, 0x24, 0x57, 0x55, 0x8d, 0xec, 0x12, 0x24, 0x40, 0xd9, 0x58, 0xeb, 0x43, 0xbe, 0xd6, 0x8f,
+ 0x43, 0x64, 0x47, 0xda, 0x44, 0x3b, 0xc9, 0xb0, 0xa9, 0xb4, 0x4c, 0x5f, 0xf8, 0x0c, 0x84, 0xaa,
+ 0x58, 0x21, 0x31, 0x18, 0x2d, 0x4e, 0xfc, 0xd9, 0x4c, 0xf3, 0x65, 0x69, 0xcf, 0x36, 0xbd, 0x84,
+ 0x30, 0x96, 0x14, 0x54, 0x36, 0x59, 0xf8, 0x2d, 0x88, 0x6c, 0x35, 0x34, 0x19, 0x27, 0xa3, 0x33,
+ 0xa1, 0xcc, 0x48, 0x7e, 0x2a, 0x6b, 0x59, 0x64, 0xa6, 0x79, 0xd6, 0x4a, 0xf3, 0xec, 0xb2, 0xae,
+ 0x6a, 0xc5, 0xeb, 0x0f, 0x9b, 0xe9, 0xa1, 0xaf, 0x7e, 0x4d, 0x67, 0x14, 0xd5, 0xd8, 0x6e, 0x6c,
+ 0x66, 0x2b, 0x7a, 0xd5, 0xca, 0x4c, 0xeb, 0xdf, 0x55, 0x2c, 0xdf, 0xb3, 0xb2, 0xd8, 0x14, 0xc0,
+ 0x5f, 0x3c, 0x7d, 0x30, 0xc7, 0x95, 0xa9, 0xfa, 0xc2, 0x7f, 0x5d, 0x11, 0x9d, 0xb6, 0x23, 0xea,
+ 0x81, 0xad, 0xb8, 0x0d, 0x29, 0x6f, 0x8a, 0x13, 0xd9, 0x3c, 0xc4, 0x24, 0x8a, 0x59, 0x57, 0xf8,
+ 0x6d, 0x46, 0x9e, 0x87, 0xb0, 0x2c, 0x19, 0x92, 0x15, 0x64, 0xf2, 0x2c, 0x7e, 0x16, 0x82, 0x49,
+ 0xef, 0xad, 0xf2, 0xff, 0x46, 0xb8, 0xaf, 0x08, 0x9b, 0xf0, 0x62, 0x69, 0xc7, 0x48, 0xc6, 0x28,
+ 0xbc, 0xe6, 0x33, 0x3f, 0x09, 0xb1, 0x2d, 0x75, 0x7f, 0xc3, 0xb4, 0x34, 0x3e, 0xc3, 0x65, 0xe2,
+ 0xe5, 0xe8, 0x96, 0xba, 0x5f, 0xc2, 0x4a, 0x61, 0xde, 0x95, 0x0e, 0x67, 0x03, 0xd2, 0x21, 0x2f,
+ 0xaa, 0x90, 0xf6, 0x21, 0x1d, 0x7b, 0x42, 0x7c, 0x3b, 0x0c, 0x7c, 0x09, 0x2b, 0xaf, 0xef, 0xa3,
+ 0x4a, 0xe3, 0x48, 0xa7, 0xfd, 0x1a, 0xc4, 0x2b, 0x96, 0x74, 0xd7, 0x74, 0x70, 0x38, 0xed, 0xb0,
+ 0x86, 0xfa, 0x08, 0x6b, 0xe4, 0xc5, 0x1e, 0xdc, 0x59, 0x57, 0xa4, 0x26, 0xed, 0x48, 0xb9, 0x20,
+ 0x12, 0x17, 0x40, 0xe8, 0x5c, 0x75, 0xe2, 0x63, 0x63, 0xcd, 0x31, 0x58, 0x3f, 0xe7, 0x08, 0xd6,
+ 0x25, 0x55, 0xa9, 0x4b, 0x2f, 0x01, 0xeb, 0x9e, 0x4e, 0x9f, 0x15, 0x90, 0x70, 0xd7, 0x80, 0xf8,
+ 0x03, 0xe5, 0xf2, 0xcf, 0x02, 0xca, 0xb5, 0x1a, 0x08, 0xd4, 0x8f, 0x1c, 0x9c, 0x28, 0x61, 0x65,
+ 0xbd, 0x26, 0x4b, 0x06, 0x5a, 0x22, 0xa5, 0xa3, 0x7f, 0x90, 0xae, 0x43, 0x42, 0x43, 0x7b, 0x1b,
+ 0xbd, 0x15, 0xa8, 0xb8, 0x86, 0xf6, 0xe8, 0x46, 0x2c, 0xb6, 0xa1, 0x5e, 0xb1, 0x2d, 0x5c, 0x70,
+ 0x81, 0x71, 0xda, 0x06, 0x83, 0xf1, 0x41, 0x4c, 0x92, 0xcb, 0x95, 0x59, 0xb1, 0x41, 0x10, 0x3f,
+ 0xe5, 0xe0, 0x3f, 0x25, 0xac, 0x2c, 0xef, 0x20, 0xa9, 0x3e, 0xa8, 0xbf, 0x83, 0x19, 0x2e, 0xba,
+ 0x0c, 0xe7, 0x6d, 0xc3, 0x5b, 0xb6, 0x88, 0x93, 0x70, 0xa6, 0x6d, 0xc1, 0x31, 0xfb, 0xfe, 0x30,
+ 0x09, 0x2d, 0xf5, 0xa8, 0xbd, 0x5c, 0x6d, 0xa9, 0xca, 0x00, 0x3e, 0x30, 0x29, 0x3a, 0xec, 0x9b,
+ 0xa2, 0x77, 0x41, 0x30, 0x03, 0xeb, 0xd3, 0x87, 0x85, 0x7a, 0xea, 0xc3, 0x92, 0x1a, 0xda, 0x5b,
+ 0xf1, 0x6c, 0xc5, 0x72, 0x2e, 0x40, 0xd2, 0xed, 0x91, 0xec, 0xf0, 0x52, 0xbc, 0x08, 0xa2, 0x3f,
+ 0xd5, 0x81, 0xea, 0x6b, 0x0e, 0x4e, 0x3a, 0x6c, 0xab, 0x52, 0x5d, 0xaa, 0x62, 0xfe, 0x06, 0x24,
+ 0xa4, 0x86, 0xb1, 0xad, 0xd7, 0x55, 0xe3, 0xa0, 0x2b, 0x44, 0x2d, 0x56, 0xfe, 0x55, 0x88, 0xd6,
+ 0x88, 0x06, 0x02, 0xd2, 0x48, 0x3e, 0xd9, 0xe9, 0x2c, 0xdd, 0xa1, 0x98, 0x30, 0x4b, 0x21, 0x2d,
+ 0x6f, 0x96, 0x08, 0x3d, 0xb6, 0x2d, 0x65, 0xa6, 0x8b, 0xe3, 0xed, 0x2e, 0x52, 0x59, 0x71, 0x8a,
+ 0x74, 0x0a, 0xec, 0x92, 0xe3, 0xcc, 0x63, 0xea, 0xcc, 0x5a, 0x43, 0xd6, 0x9d, 0x2a, 0x36, 0xa8,
+ 0x33, 0x2f, 0xf8, 0xde, 0x08, 0xf4, 0x97, 0x75, 0x40, 0xbc, 0x4a, 0xfc, 0x65, 0x97, 0x02, 0x6b,
+ 0xd4, 0xe7, 0x1c, 0x8c, 0x94, 0xb0, 0xb2, 0xaa, 0x6a, 0x66, 0x7a, 0x0e, 0x1e, 0xcc, 0x9b, 0xa6,
+ 0xff, 0x24, 0xe5, 0xcd, 0x70, 0x86, 0x32, 0xe1, 0x62, 0xea, 0xb0, 0x99, 0x8e, 0xd1, 0x9c, 0xc7,
+ 0xcf, 0x9a, 0xe9, 0x93, 0x07, 0x52, 0x75, 0xa7, 0x20, 0xda, 0x4c, 0x62, 0x39, 0x46, 0xcf, 0x01,
+ 0xa6, 0x45, 0xa7, 0xdd, 0xb5, 0x31, 0xdb, 0x35, 0xdb, 0x2e, 0xf1, 0x0c, 0x9c, 0x66, 0x5e, 0x9d,
+ 0x10, 0x7e, 0x49, 0x2b, 0xce, 0xba, 0x56, 0x7b, 0x89, 0x0e, 0x5c, 0xea, 0x74, 0xc0, 0xa9, 0x3f,
+ 0x2d, 0xcb, 0xac, 0xfa, 0xd3, 0x5a, 0x70, 0x9c, 0xf8, 0x23, 0x4c, 0x1a, 0x67, 0x32, 0x08, 0x2d,
+ 0x69, 0xb2, 0xd7, 0xd8, 0x32, 0xa8, 0x57, 0x9d, 0x03, 0x62, 0xe8, 0x88, 0x03, 0x62, 0xf8, 0x08,
+ 0x03, 0x22, 0x7f, 0x0e, 0xa0, 0x61, 0xfa, 0x4f, 0x4d, 0x89, 0x90, 0xde, 0x32, 0xd1, 0xb0, 0x11,
+ 0x69, 0x35, 0xe2, 0xd1, 0xde, 0x1a, 0x71, 0xa7, 0xc7, 0x8e, 0x79, 0xf4, 0xd8, 0xf1, 0x3e, 0x9a,
+ 0xb1, 0xc4, 0x8b, 0xed, 0xb1, 0x27, 0x20, 0x8a, 0xf5, 0x46, 0xbd, 0x82, 0x92, 0x40, 0x0c, 0xb5,
+ 0xde, 0xf8, 0x24, 0xc4, 0x36, 0x1b, 0xea, 0x8e, 0x79, 0xb5, 0x8c, 0x10, 0x82, 0xfd, 0xca, 0x4f,
+ 0x43, 0x82, 0x24, 0xda, 0xb6, 0x84, 0xb7, 0x93, 0xa3, 0xd6, 0x78, 0xab, 0xcb, 0xe8, 0x0d, 0x09,
+ 0x6f, 0x17, 0x6e, 0x74, 0xe6, 0xdb, 0x85, 0xb6, 0x49, 0xdb, 0x3b, 0x89, 0xc4, 0x1a, 0x5c, 0x0e,
+ 0xe6, 0x38, 0xf6, 0xb6, 0xfc, 0x3b, 0x8e, 0x8c, 0x00, 0x4b, 0xb2, 0x6c, 0xc6, 0x77, 0xbd, 0xb6,
+ 0xa3, 0x4b, 0x32, 0x2d, 0xc2, 0x96, 0x92, 0x23, 0x1c, 0xd8, 0x3c, 0x24, 0x24, 0x5b, 0x09, 0x39,
+ 0xb1, 0x89, 0xe2, 0xf8, 0xb3, 0x66, 0x7a, 0x8c, 0x1e, 0x53, 0x87, 0x24, 0x96, 0x5b, 0x6c, 0x85,
+ 0xff, 0x77, 0x22, 0x77, 0xd1, 0x46, 0x2e, 0xc8, 0x48, 0xf1, 0x0a, 0xcc, 0x76, 0x61, 0x71, 0x4e,
+ 0xf3, 0x0f, 0x1c, 0xb9, 0x49, 0xcb, 0xa8, 0xaa, 0xef, 0xa2, 0x7f, 0x86, 0xdb, 0x85, 0x4e, 0xb7,
+ 0x67, 0x6d, 0xb7, 0xbb, 0xd8, 0x29, 0xce, 0xc3, 0x5c, 0x77, 0x2e, 0xc7, 0xf9, 0x5f, 0x68, 0x2b,
+ 0x65, 0xe7, 0x98, 0x7b, 0x46, 0x38, 0xbe, 0x32, 0x76, 0xd4, 0xef, 0x5c, 0xa1, 0xa3, 0x94, 0x31,
+ 0x81, 0xb9, 0xec, 0xe9, 0x78, 0xdf, 0x71, 0xa5, 0x77, 0x9f, 0xf0, 0x0b, 0xf9, 0xce, 0xa8, 0xa4,
+ 0xdd, 0xc7, 0xd8, 0x3d, 0x84, 0x1c, 0x90, 0xdc, 0xf2, 0xa1, 0x1e, 0xdb, 0x07, 0x34, 0xe7, 0x2c,
+ 0x87, 0x98, 0xb3, 0xfc, 0x3d, 0xc7, 0xf4, 0xfd, 0xf6, 0x96, 0x6f, 0x92, 0x8a, 0xdb, 0x7f, 0x87,
+ 0x3c, 0x4d, 0xa7, 0x1a, 0x5a, 0xbd, 0x87, 0x29, 0x84, 0x1a, 0xda, 0xa3, 0xea, 0x06, 0x1b, 0x01,
+ 0x7c, 0x3f, 0x55, 0x79, 0x58, 0x2c, 0xce, 0x90, 0x1b, 0xd7, 0x83, 0x62, 0x63, 0x98, 0xff, 0xe9,
+ 0x04, 0x84, 0x4a, 0x58, 0xe1, 0xd7, 0x20, 0xd1, 0xfa, 0x42, 0xeb, 0x91, 0x2f, 0xec, 0x17, 0x4c,
+ 0xe1, 0x72, 0x30, 0xdd, 0x09, 0xd0, 0xbb, 0x70, 0xda, 0xeb, 0x96, 0xcf, 0x78, 0x8a, 0x7b, 0x70,
+ 0x0a, 0x0b, 0xbd, 0x72, 0x3a, 0x5b, 0x1a, 0x30, 0xee, 0xf9, 0xb9, 0xec, 0x4a, 0xaf, 0x9a, 0xf2,
+ 0xc2, 0x62, 0xcf, 0xac, 0xce, 0xae, 0x08, 0x4e, 0xba, 0xbf, 0xc9, 0x5c, 0xf4, 0xd4, 0xe2, 0xe2,
+ 0x12, 0xe6, 0x7b, 0xe1, 0x62, 0xb7, 0x71, 0x97, 0x1a, 0xef, 0x6d, 0x5c, 0x5c, 0x3e, 0xdb, 0xf8,
+ 0x9d, 0xab, 0xb7, 0x61, 0x84, 0x1d, 0xe6, 0x67, 0x3c, 0x85, 0x19, 0x0e, 0x21, 0xd3, 0x8d, 0xc3,
+ 0x51, 0xfd, 0x16, 0x00, 0x33, 0x36, 0xa7, 0x3d, 0xe5, 0x5a, 0x0c, 0xc2, 0x6c, 0x17, 0x06, 0x47,
+ 0xef, 0x7b, 0x30, 0xe9, 0x37, 0xd7, 0xce, 0x07, 0x18, 0xd7, 0xc1, 0x2d, 0x5c, 0xeb, 0x87, 0xdb,
+ 0xd9, 0xfe, 0x2e, 0x8c, 0xb6, 0xcd, 0x8a, 0xe7, 0x03, 0xb4, 0x50, 0x16, 0xe1, 0x4a, 0x57, 0x16,
+ 0x56, 0x7b, 0xdb, 0xf0, 0xe6, 0xad, 0x9d, 0x65, 0xf1, 0xd1, 0xee, 0x39, 0x2e, 0xad, 0x42, 0xdc,
+ 0x19, 0x8b, 0xce, 0x79, 0x8a, 0xd9, 0x64, 0xe1, 0x52, 0x20, 0x99, 0x0d, 0x32, 0x33, 0xa9, 0x78,
+ 0x07, 0xb9, 0xc5, 0xe0, 0x13, 0xe4, 0xce, 0x01, 0x82, 0xff, 0x80, 0x83, 0xe9, 0xa0, 0xe9, 0x61,
+ 0xc1, 0xbf, 0x2c, 0x79, 0x4b, 0x08, 0xaf, 0xf4, 0x2b, 0xe1, 0xd8, 0xf2, 0x09, 0x07, 0xe9, 0x6e,
+ 0xbd, 0x8f, 0x77, 0x2e, 0x75, 0x91, 0x12, 0x5e, 0x1b, 0x44, 0xca, 0xb1, 0xeb, 0x23, 0x0e, 0xce,
+ 0x06, 0xf6, 0xa1, 0xde, 0xd5, 0x2d, 0x48, 0x44, 0xb8, 0xd9, 0xb7, 0x08, 0x7b, 0x2e, 0xfd, 0x9a,
+ 0xa4, 0xf9, 0x40, 0xec, 0xdd, 0x15, 0xec, 0x5a, 0x3f, 0xdc, 0xec, 0x05, 0xe4, 0x75, 0x91, 0x07,
+ 0xd5, 0xab, 0x36, 0x4e, 0x9f, 0x0b, 0x28, 0xe0, 0x42, 0x15, 0x22, 0xef, 0x9b, 0x23, 0x51, 0xf1,
+ 0xd6, 0xc3, 0xdf, 0x53, 0x43, 0x0f, 0x0f, 0x53, 0xdc, 0xa3, 0xc3, 0x14, 0xf7, 0xdb, 0x61, 0x8a,
+ 0xfb, 0xf8, 0x49, 0x6a, 0xe8, 0xd1, 0x93, 0xd4, 0xd0, 0xcf, 0x4f, 0x52, 0x43, 0xef, 0x5c, 0x66,
+ 0xe6, 0xab, 0x65, 0x1d, 0x57, 0xef, 0xd8, 0x3f, 0xb5, 0xca, 0xb9, 0x7d, 0xfa, 0x93, 0x2b, 0x99,
+ 0xb1, 0x36, 0xa3, 0xe4, 0x27, 0xd4, 0xff, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x91, 0xf8,
+ 0x74, 0x0c, 0x1e, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -1749,7 +1844,7 @@ type MsgClient interface {
ExecuteContract(ctx context.Context, in *MsgExecuteContract, opts ...grpc.CallOption) (*MsgExecuteContractResponse, error)
// Migrate runs a code upgrade/ downgrade for a smart contract
MigrateContract(ctx context.Context, in *MsgMigrateContract, opts ...grpc.CallOption) (*MsgMigrateContractResponse, error)
- // UpdateAdmin sets a new admin for a smart contract
+ // UpdateAdmin sets a new admin for a smart contract
UpdateAdmin(ctx context.Context, in *MsgUpdateAdmin, opts ...grpc.CallOption) (*MsgUpdateAdminResponse, error)
// ClearAdmin removes any admin stored for a smart contract
ClearAdmin(ctx context.Context, in *MsgClearAdmin, opts ...grpc.CallOption) (*MsgClearAdminResponse, error)
@@ -1793,6 +1888,10 @@ type MsgClient interface {
//
// Since: 0.42
StoreAndMigrateContract(ctx context.Context, in *MsgStoreAndMigrateContract, opts ...grpc.CallOption) (*MsgStoreAndMigrateContractResponse, error)
+ // UpdateContractLabel sets a new label for a smart contract
+ //
+ // Since: 0.43
+ UpdateContractLabel(ctx context.Context, in *MsgUpdateContractLabel, opts ...grpc.CallOption) (*MsgUpdateContractLabelResponse, error)
}
type msgClient struct {
@@ -1947,6 +2046,15 @@ func (c *msgClient) StoreAndMigrateContract(ctx context.Context, in *MsgStoreAnd
return out, nil
}
+func (c *msgClient) UpdateContractLabel(ctx context.Context, in *MsgUpdateContractLabel, opts ...grpc.CallOption) (*MsgUpdateContractLabelResponse, error) {
+ out := new(MsgUpdateContractLabelResponse)
+ err := c.cc.Invoke(ctx, "/cosmwasm.wasm.v1.Msg/UpdateContractLabel", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// MsgServer is the server API for Msg service.
type MsgServer interface {
// StoreCode to submit Wasm code to the system
@@ -1961,7 +2069,7 @@ type MsgServer interface {
ExecuteContract(context.Context, *MsgExecuteContract) (*MsgExecuteContractResponse, error)
// Migrate runs a code upgrade/ downgrade for a smart contract
MigrateContract(context.Context, *MsgMigrateContract) (*MsgMigrateContractResponse, error)
- // UpdateAdmin sets a new admin for a smart contract
+ // UpdateAdmin sets a new admin for a smart contract
UpdateAdmin(context.Context, *MsgUpdateAdmin) (*MsgUpdateAdminResponse, error)
// ClearAdmin removes any admin stored for a smart contract
ClearAdmin(context.Context, *MsgClearAdmin) (*MsgClearAdminResponse, error)
@@ -2005,6 +2113,10 @@ type MsgServer interface {
//
// Since: 0.42
StoreAndMigrateContract(context.Context, *MsgStoreAndMigrateContract) (*MsgStoreAndMigrateContractResponse, error)
+ // UpdateContractLabel sets a new label for a smart contract
+ //
+ // Since: 0.43
+ UpdateContractLabel(context.Context, *MsgUpdateContractLabel) (*MsgUpdateContractLabelResponse, error)
}
// UnimplementedMsgServer can be embedded to have forward compatible implementations.
@@ -2074,6 +2186,10 @@ func (*UnimplementedMsgServer) StoreAndMigrateContract(ctx context.Context, req
return nil, status.Errorf(codes.Unimplemented, "method StoreAndMigrateContract not implemented")
}
+func (*UnimplementedMsgServer) UpdateContractLabel(ctx context.Context, req *MsgUpdateContractLabel) (*MsgUpdateContractLabelResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method UpdateContractLabel not implemented")
+}
+
func RegisterMsgServer(s grpc1.Server, srv MsgServer) {
s.RegisterService(&_Msg_serviceDesc, srv)
}
@@ -2366,6 +2482,24 @@ func _Msg_StoreAndMigrateContract_Handler(srv interface{}, ctx context.Context,
return interceptor(ctx, in, info, handler)
}
+func _Msg_UpdateContractLabel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(MsgUpdateContractLabel)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(MsgServer).UpdateContractLabel(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/cosmwasm.wasm.v1.Msg/UpdateContractLabel",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(MsgServer).UpdateContractLabel(ctx, req.(*MsgUpdateContractLabel))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _Msg_serviceDesc = grpc.ServiceDesc{
ServiceName: "cosmwasm.wasm.v1.Msg",
HandlerType: (*MsgServer)(nil),
@@ -2434,6 +2568,10 @@ var _Msg_serviceDesc = grpc.ServiceDesc{
MethodName: "StoreAndMigrateContract",
Handler: _Msg_StoreAndMigrateContract_Handler,
},
+ {
+ MethodName: "UpdateContractLabel",
+ Handler: _Msg_UpdateContractLabel_Handler,
+ },
},
Streams: []grpc.StreamDesc{},
Metadata: "cosmwasm/wasm/v1/tx.proto",
@@ -3778,6 +3916,73 @@ func (m *MsgStoreAndMigrateContractResponse) MarshalToSizedBuffer(dAtA []byte) (
return len(dAtA) - i, nil
}
+func (m *MsgUpdateContractLabel) Marshal() (dAtA []byte, err error) {
+ size := m.Size()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *MsgUpdateContractLabel) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *MsgUpdateContractLabel) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if len(m.Contract) > 0 {
+ i -= len(m.Contract)
+ copy(dAtA[i:], m.Contract)
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Contract)))
+ i--
+ dAtA[i] = 0x1a
+ }
+ if len(m.NewLabel) > 0 {
+ i -= len(m.NewLabel)
+ copy(dAtA[i:], m.NewLabel)
+ i = encodeVarintTx(dAtA, i, uint64(len(m.NewLabel)))
+ i--
+ dAtA[i] = 0x12
+ }
+ if len(m.Sender) > 0 {
+ i -= len(m.Sender)
+ copy(dAtA[i:], m.Sender)
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
+ i--
+ dAtA[i] = 0xa
+ }
+ return len(dAtA) - i, nil
+}
+
+func (m *MsgUpdateContractLabelResponse) Marshal() (dAtA []byte, err error) {
+ size := m.Size()
+ dAtA = make([]byte, size)
+ n, err := m.MarshalToSizedBuffer(dAtA[:size])
+ if err != nil {
+ return nil, err
+ }
+ return dAtA[:n], nil
+}
+
+func (m *MsgUpdateContractLabelResponse) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *MsgUpdateContractLabelResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ return len(dAtA) - i, nil
+}
+
func encodeVarintTx(dAtA []byte, offset int, v uint64) int {
offset -= sovTx(v)
base := offset
@@ -4390,6 +4595,36 @@ func (m *MsgStoreAndMigrateContractResponse) Size() (n int) {
return n
}
+func (m *MsgUpdateContractLabel) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ l = len(m.Sender)
+ if l > 0 {
+ n += 1 + l + sovTx(uint64(l))
+ }
+ l = len(m.NewLabel)
+ if l > 0 {
+ n += 1 + l + sovTx(uint64(l))
+ }
+ l = len(m.Contract)
+ if l > 0 {
+ n += 1 + l + sovTx(uint64(l))
+ }
+ return n
+}
+
+func (m *MsgUpdateContractLabelResponse) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ return n
+}
+
func sovTx(x uint64) (n int) {
return (math_bits.Len64(x|1) + 6) / 7
}
@@ -8515,6 +8750,204 @@ func (m *MsgStoreAndMigrateContractResponse) Unmarshal(dAtA []byte) error {
return nil
}
+func (m *MsgUpdateContractLabel) Unmarshal(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: MsgUpdateContractLabel: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: MsgUpdateContractLabel: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return ErrInvalidLengthTx
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return ErrInvalidLengthTx
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.Sender = string(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ case 2:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field NewLabel", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return ErrInvalidLengthTx
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return ErrInvalidLengthTx
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.NewLabel = string(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ case 3:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field Contract", wireType)
+ }
+ var stringLen uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ stringLen |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ intStringLen := int(stringLen)
+ if intStringLen < 0 {
+ return ErrInvalidLengthTx
+ }
+ postIndex := iNdEx + intStringLen
+ if postIndex < 0 {
+ return ErrInvalidLengthTx
+ }
+ if postIndex > l {
+ return io.ErrUnexpectedEOF
+ }
+ m.Contract = string(dAtA[iNdEx:postIndex])
+ iNdEx = postIndex
+ default:
+ iNdEx = preIndex
+ skippy, err := skipTx(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return ErrInvalidLengthTx
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+
+func (m *MsgUpdateContractLabelResponse) Unmarshal(dAtA []byte) error {
+ l := len(dAtA)
+ iNdEx := 0
+ for iNdEx < l {
+ preIndex := iNdEx
+ var wire uint64
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowTx
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ wire |= uint64(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ fieldNum := int32(wire >> 3)
+ wireType := int(wire & 0x7)
+ if wireType == 4 {
+ return fmt.Errorf("proto: MsgUpdateContractLabelResponse: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: MsgUpdateContractLabelResponse: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ default:
+ iNdEx = preIndex
+ skippy, err := skipTx(dAtA[iNdEx:])
+ if err != nil {
+ return err
+ }
+ if (skippy < 0) || (iNdEx+skippy) < 0 {
+ return ErrInvalidLengthTx
+ }
+ if (iNdEx + skippy) > l {
+ return io.ErrUnexpectedEOF
+ }
+ iNdEx += skippy
+ }
+ }
+
+ if iNdEx > l {
+ return io.ErrUnexpectedEOF
+ }
+ return nil
+}
+
func skipTx(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
diff --git a/x/wasm/types/tx_test.go b/x/wasm/types/tx_test.go
index 87f439b0ca..fea5d7e14b 100644
--- a/x/wasm/types/tx_test.go
+++ b/x/wasm/types/tx_test.go
@@ -1326,3 +1326,71 @@ func TestMsgStoreAndMigrateContractValidation(t *testing.T) {
})
}
}
+
+func TestMsgUpdateContractLabel(t *testing.T) {
+ // proper address size
+ goodAddress := sdk.AccAddress(make([]byte, 20)).String()
+ otherGoodAddress := sdk.AccAddress(bytes.Repeat([]byte{0x1}, 20)).String()
+
+ specs := map[string]struct {
+ src MsgUpdateContractLabel
+ expErr bool
+ }{
+ "all good": {
+ src: MsgUpdateContractLabel{
+ Sender: goodAddress,
+ NewLabel: "new label",
+ Contract: otherGoodAddress,
+ },
+ },
+ "new label required": {
+ src: MsgUpdateContractLabel{
+ Sender: goodAddress,
+ Contract: otherGoodAddress,
+ },
+ expErr: true,
+ },
+ "bad sender": {
+ src: MsgUpdateContractLabel{
+ Sender: badAddress,
+ NewLabel: "new label",
+ Contract: otherGoodAddress,
+ },
+ expErr: true,
+ },
+ "empty new label": {
+ src: MsgUpdateContractLabel{
+ Sender: goodAddress,
+ NewLabel: "",
+ Contract: otherGoodAddress,
+ },
+ expErr: true,
+ },
+ "bad new label": {
+ src: MsgUpdateContractLabel{
+ Sender: goodAddress,
+ NewLabel: " start with space ",
+ Contract: otherGoodAddress,
+ },
+ expErr: true,
+ },
+ "bad contract addr": {
+ src: MsgUpdateContractLabel{
+ Sender: goodAddress,
+ NewLabel: "new label",
+ Contract: badAddress,
+ },
+ expErr: true,
+ },
+ }
+ for msg, spec := range specs {
+ t.Run(msg, func(t *testing.T) {
+ err := spec.src.ValidateBasic()
+ if spec.expErr {
+ require.Error(t, err)
+ return
+ }
+ require.NoError(t, err)
+ })
+ }
+}