diff --git a/docs/ibc/proto-docs.md b/docs/ibc/proto-docs.md index 99d359fec0f..7eaa31bf4c3 100644 --- a/docs/ibc/proto-docs.md +++ b/docs/ibc/proto-docs.md @@ -100,8 +100,8 @@ - [ibc/applications/interchain_accounts/controller/v1/tx.proto](#ibc/applications/interchain_accounts/controller/v1/tx.proto) - [MsgRegisterInterchainAccount](#ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount) - [MsgRegisterInterchainAccountResponse](#ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse) - - [MsgSubmitTx](#ibc.applications.interchain_accounts.controller.v1.MsgSubmitTx) - - [MsgSubmitTxResponse](#ibc.applications.interchain_accounts.controller.v1.MsgSubmitTxResponse) + - [MsgSendTx](#ibc.applications.interchain_accounts.controller.v1.MsgSendTx) + - [MsgSendTxResponse](#ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse) - [Msg](#ibc.applications.interchain_accounts.controller.v1.Msg) @@ -1617,7 +1617,7 @@ host ### MsgRegisterInterchainAccount -MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount +MsgRegisterInterchainAccount defines the payload for Msg/MsgRegisterInterchainAccount | Field | Type | Label | Description | @@ -1634,7 +1634,7 @@ MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount ### MsgRegisterInterchainAccountResponse -MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount +MsgRegisterInterchainAccountResponse defines the response for Msg/MsgRegisterInterchainAccountResponse | Field | Type | Label | Description | @@ -1646,10 +1646,10 @@ MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccoun - + -### MsgSubmitTx -MsgSubmitTx defines the payload for MsgSubmitTx +### MsgSendTx +MsgSendTx defines the payload for Msg/SendTx | Field | Type | Label | Description | @@ -1665,10 +1665,10 @@ MsgSubmitTx defines the payload for MsgSubmitTx - + -### MsgSubmitTxResponse -MsgSubmitTxResponse defines the response for MsgSubmitTx +### MsgSendTxResponse +MsgSendTxResponse defines the response for MsgSendTx | Field | Type | Label | Description | @@ -1694,7 +1694,7 @@ Msg defines the 27-interchain-accounts/controller Msg service. | Method Name | Request Type | Response Type | Description | HTTP Verb | Endpoint | | ----------- | ------------ | ------------- | ------------| ------- | -------- | | `RegisterInterchainAccount` | [MsgRegisterInterchainAccount](#ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount) | [MsgRegisterInterchainAccountResponse](#ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse) | RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount. | | -| `SubmitTx` | [MsgSubmitTx](#ibc.applications.interchain_accounts.controller.v1.MsgSubmitTx) | [MsgSubmitTxResponse](#ibc.applications.interchain_accounts.controller.v1.MsgSubmitTxResponse) | SubmitTx defines a rpc handler for MsgSubmitTx. | | +| `SendTx` | [MsgSendTx](#ibc.applications.interchain_accounts.controller.v1.MsgSendTx) | [MsgSendTxResponse](#ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse) | SendTx defines a rpc handler for MsgSendTx. | | diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/cli.go b/modules/apps/27-interchain-accounts/controller/client/cli/cli.go index fae763c6f0c..5b7989e534d 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/cli.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/cli.go @@ -35,7 +35,7 @@ func NewTxCmd() *cobra.Command { cmd.AddCommand( newRegisterInterchainAccountCmd(), - newSubmitTxCmd(), + newSendTxCmd(), ) return cmd diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go index 2944ca0ffe8..96e22c31724 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go @@ -59,10 +59,10 @@ the associated capability.`), return cmd } -func newSubmitTxCmd() *cobra.Command { +func newSendTxCmd() *cobra.Command { cmd := &cobra.Command{ - Use: "submit [connection-id] [path/to/packet_msg.json]", - Short: "Submit an interchain account txn on the provided connection.", + Use: "send-tx [connection-id] [path/to/packet_msg.json]", + Short: "Send an interchain account tx on the provided connection.", Long: strings.TrimSpace(`Submits pre-built packet data containing messages to be executed on the host chain and attempts to send the packet. Packet data is provided as json, file or string. An appropriate relative timeoutTimestamp must be provided with flag {packet-timeout-timestamp}, along with a timeoutHeight @@ -108,7 +108,7 @@ via {packet-timeout-timestamp}`), return err } - msg := types.NewMsgSubmitTx(owner, connectionID, timeoutHeight, timeoutTimestamp, icaMsgData) + msg := types.NewMsgSendTx(owner, connectionID, timeoutHeight, timeoutTimestamp, icaMsgData) return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg) }, diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go index ce745468642..880813b9993 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server.go @@ -25,7 +25,7 @@ func NewMsgServerImpl(keeper *Keeper) types.MsgServer { } // RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount -func (k msgServer) RegisterInterchainAccount(goCtx context.Context, msg *types.MsgRegisterInterchainAccount) (*types.MsgRegisterInterchainAccountResponse, error) { +func (s msgServer) RegisterInterchainAccount(goCtx context.Context, msg *types.MsgRegisterInterchainAccount) (*types.MsgRegisterInterchainAccountResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) portID, err := icatypes.NewControllerPortID(msg.Owner) @@ -33,7 +33,7 @@ func (k msgServer) RegisterInterchainAccount(goCtx context.Context, msg *types.M return nil, err } - channelID, err := k.registerInterchainAccount(ctx, msg.ConnectionId, portID, msg.Version) + channelID, err := s.registerInterchainAccount(ctx, msg.ConnectionId, portID, msg.Version) if err != nil { return nil, err } @@ -43,8 +43,8 @@ func (k msgServer) RegisterInterchainAccount(goCtx context.Context, msg *types.M }, nil } -// SubmitTx defines a rpc handler for MsgSubmitTx -func (k msgServer) SubmitTx(goCtx context.Context, msg *types.MsgSubmitTx) (*types.MsgSubmitTxResponse, error) { +// SendTx defines a rpc handler for MsgSendTx +func (s msgServer) SendTx(goCtx context.Context, msg *types.MsgSendTx) (*types.MsgSendTxResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) portID, err := icatypes.NewControllerPortID(msg.Owner) @@ -52,20 +52,20 @@ func (k msgServer) SubmitTx(goCtx context.Context, msg *types.MsgSubmitTx) (*typ return nil, err } - channelID, found := k.GetActiveChannelID(ctx, msg.ConnectionId, portID) + channelID, found := s.Keeper.GetActiveChannelID(ctx, msg.ConnectionId, portID) if !found { return nil, sdkerrors.Wrapf(icatypes.ErrActiveChannelNotFound, "failed to retrieve active channel for port %s", portID) } - chanCap, found := k.scopedKeeper.GetCapability(ctx, host.ChannelCapabilityPath(portID, channelID)) + chanCap, found := s.Keeper.scopedKeeper.GetCapability(ctx, host.ChannelCapabilityPath(portID, channelID)) if !found { return nil, sdkerrors.Wrap(channeltypes.ErrChannelCapabilityNotFound, "module does not own channel capability") } - seq, err := k.SendTx(ctx, chanCap, msg.ConnectionId, portID, msg.PacketData, msg.TimeoutTimestamp) + seq, err := s.Keeper.SendTx(ctx, chanCap, msg.ConnectionId, portID, msg.PacketData, msg.TimeoutTimestamp) if err != nil { return nil, err } - return &types.MsgSubmitTxResponse{Sequence: seq}, nil + return &types.MsgSendTxResponse{Sequence: seq}, nil } diff --git a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go index 224f8c9d4bc..db86707b8e1 100644 --- a/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go +++ b/modules/apps/27-interchain-accounts/controller/keeper/msg_server_test.go @@ -98,7 +98,7 @@ func (suite *KeeperTestSuite) TestRegisterInterchainAccount_MsgServer() { func (suite *KeeperTestSuite) TestSubmitTx() { var ( path *ibctesting.Path - msg *controllertypes.MsgSubmitTx + msg *controllertypes.MsgSendTx ) testCases := []struct { @@ -182,13 +182,13 @@ func (suite *KeeperTestSuite) TestSubmitTx() { timeoutTimestamp := uint64(suite.chainA.GetContext().BlockTime().Add(time.Minute).UnixNano()) connectionID := path.EndpointA.ConnectionID - msg = controllertypes.NewMsgSubmitTx(owner, connectionID, clienttypes.ZeroHeight(), timeoutTimestamp, packetData) + msg = controllertypes.NewMsgSendTx(owner, connectionID, clienttypes.ZeroHeight(), timeoutTimestamp, packetData) tc.malleate() // malleate mutates test data ctx := suite.chainA.GetContext() msgServer := keeper.NewMsgServerImpl(&suite.chainA.GetSimApp().ICAControllerKeeper) - res, err := msgServer.SubmitTx(ctx, msg) + res, err := msgServer.SendTx(ctx, msg) if tc.expPass { suite.Require().NoError(err) diff --git a/modules/apps/27-interchain-accounts/controller/types/codec.go b/modules/apps/27-interchain-accounts/controller/types/codec.go index acf3f344228..6b684cf4618 100644 --- a/modules/apps/27-interchain-accounts/controller/types/codec.go +++ b/modules/apps/27-interchain-accounts/controller/types/codec.go @@ -10,6 +10,6 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) { registry.RegisterImplementations( (*sdk.Msg)(nil), &MsgRegisterInterchainAccount{}, - &MsgSubmitTx{}, + &MsgSendTx{}, ) } diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs.go b/modules/apps/27-interchain-accounts/controller/types/msgs.go index c98713486c8..adac9f8093c 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs.go @@ -50,9 +50,9 @@ func (msg MsgRegisterInterchainAccount) GetSigners() []sdk.AccAddress { return []sdk.AccAddress{accAddr} } -// NewMsgSubmitTx creates a new instance of MsgSubmitTx -func NewMsgSubmitTx(owner, connectionID string, timeoutHeight clienttypes.Height, timeoutTimestamp uint64, packetData icatypes.InterchainAccountPacketData) *MsgSubmitTx { - return &MsgSubmitTx{ +// NewMsgSendTx creates a new instance of MsgSendTx +func NewMsgSendTx(owner, connectionID string, timeoutHeight clienttypes.Height, timeoutTimestamp uint64, packetData icatypes.InterchainAccountPacketData) *MsgSendTx { + return &MsgSendTx{ ConnectionId: connectionID, Owner: owner, TimeoutHeight: timeoutHeight, @@ -62,7 +62,7 @@ func NewMsgSubmitTx(owner, connectionID string, timeoutHeight clienttypes.Height } // ValidateBasic implements sdk.Msg -func (msg MsgSubmitTx) ValidateBasic() error { +func (msg MsgSendTx) ValidateBasic() error { if err := host.ConnectionIdentifierValidator(msg.ConnectionId); err != nil { return sdkerrors.Wrap(err, "invalid connection ID") } @@ -87,7 +87,7 @@ func (msg MsgSubmitTx) ValidateBasic() error { } // GetSigners implements sdk.Msg -func (msg MsgSubmitTx) GetSigners() []sdk.AccAddress { +func (msg MsgSendTx) GetSigners() []sdk.AccAddress { accAddr, err := sdk.AccAddressFromBech32(msg.Owner) if err != nil { panic(err) diff --git a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go index 9676bd4e40a..9c71d704c7d 100644 --- a/modules/apps/27-interchain-accounts/controller/types/msgs_test.go +++ b/modules/apps/27-interchain-accounts/controller/types/msgs_test.go @@ -98,8 +98,8 @@ func TestMsgRegisterInterchainAccountGetSigners(t *testing.T) { require.Equal(t, []sdk.AccAddress{expSigner}, msg.GetSigners()) } -func TestMsgSubmitTxValidateBasic(t *testing.T) { - var msg *types.MsgSubmitTx +func TestMsgSendTxValidateBasic(t *testing.T) { + var msg *types.MsgSendTx testCases := []struct { name string @@ -164,7 +164,7 @@ func TestMsgSubmitTxValidateBasic(t *testing.T) { Data: data, } - msg = types.NewMsgSubmitTx( + msg = types.NewMsgSendTx( ibctesting.TestAccAddress, ibctesting.FirstConnectionID, clienttypes.ZeroHeight(), @@ -183,7 +183,7 @@ func TestMsgSubmitTxValidateBasic(t *testing.T) { } } -func TestMsgSubmitTxGetSigners(t *testing.T) { +func TestMsgSendTxGetSigners(t *testing.T) { expSigner, err := sdk.AccAddressFromBech32(ibctesting.TestAccAddress) require.NoError(t, err) @@ -201,7 +201,7 @@ func TestMsgSubmitTxGetSigners(t *testing.T) { Data: data, } - msg := types.NewMsgSubmitTx( + msg := types.NewMsgSendTx( ibctesting.TestAccAddress, ibctesting.FirstConnectionID, clienttypes.ZeroHeight(), diff --git a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go index a29fc9d54c7..ff1b9652283 100644 --- a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go @@ -30,7 +30,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount +// MsgRegisterInterchainAccount defines the payload for Msg/MsgRegisterInterchainAccount type MsgRegisterInterchainAccount struct { Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" yaml:"connection_id"` @@ -70,7 +70,7 @@ func (m *MsgRegisterInterchainAccount) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRegisterInterchainAccount proto.InternalMessageInfo -// MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount +// MsgRegisterInterchainAccountResponse defines the response for Msg/MsgRegisterInterchainAccountResponse type MsgRegisterInterchainAccountResponse struct { ChannelId string `protobuf:"bytes,1,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty" yaml:"channel_id"` } @@ -115,8 +115,8 @@ func (m *MsgRegisterInterchainAccountResponse) GetChannelId() string { return "" } -// MsgSubmitTx defines the payload for MsgSubmitTx -type MsgSubmitTx struct { +// MsgSendTx defines the payload for Msg/SendTx +type MsgSendTx struct { Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` ConnectionId string `protobuf:"bytes,2,opt,name=connection_id,json=connectionId,proto3" json:"connection_id,omitempty" yaml:"connection_id"` // Timeout height relative to the current block height. @@ -128,18 +128,18 @@ type MsgSubmitTx struct { PacketData types1.InterchainAccountPacketData `protobuf:"bytes,5,opt,name=packet_data,json=packetData,proto3" json:"packet_data" yaml:"packet_data"` } -func (m *MsgSubmitTx) Reset() { *m = MsgSubmitTx{} } -func (m *MsgSubmitTx) String() string { return proto.CompactTextString(m) } -func (*MsgSubmitTx) ProtoMessage() {} -func (*MsgSubmitTx) Descriptor() ([]byte, []int) { +func (m *MsgSendTx) Reset() { *m = MsgSendTx{} } +func (m *MsgSendTx) String() string { return proto.CompactTextString(m) } +func (*MsgSendTx) ProtoMessage() {} +func (*MsgSendTx) Descriptor() ([]byte, []int) { return fileDescriptor_7def041328c84a30, []int{2} } -func (m *MsgSubmitTx) XXX_Unmarshal(b []byte) error { +func (m *MsgSendTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgSubmitTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgSendTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgSubmitTx.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgSendTx.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -149,35 +149,35 @@ func (m *MsgSubmitTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) return b[:n], nil } } -func (m *MsgSubmitTx) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSubmitTx.Merge(m, src) +func (m *MsgSendTx) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSendTx.Merge(m, src) } -func (m *MsgSubmitTx) XXX_Size() int { +func (m *MsgSendTx) XXX_Size() int { return m.Size() } -func (m *MsgSubmitTx) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSubmitTx.DiscardUnknown(m) +func (m *MsgSendTx) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSendTx.DiscardUnknown(m) } -var xxx_messageInfo_MsgSubmitTx proto.InternalMessageInfo +var xxx_messageInfo_MsgSendTx proto.InternalMessageInfo -// MsgSubmitTxResponse defines the response for MsgSubmitTx -type MsgSubmitTxResponse struct { +// MsgSendTxResponse defines the response for MsgSendTx +type MsgSendTxResponse struct { Sequence uint64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"` } -func (m *MsgSubmitTxResponse) Reset() { *m = MsgSubmitTxResponse{} } -func (m *MsgSubmitTxResponse) String() string { return proto.CompactTextString(m) } -func (*MsgSubmitTxResponse) ProtoMessage() {} -func (*MsgSubmitTxResponse) Descriptor() ([]byte, []int) { +func (m *MsgSendTxResponse) Reset() { *m = MsgSendTxResponse{} } +func (m *MsgSendTxResponse) String() string { return proto.CompactTextString(m) } +func (*MsgSendTxResponse) ProtoMessage() {} +func (*MsgSendTxResponse) Descriptor() ([]byte, []int) { return fileDescriptor_7def041328c84a30, []int{3} } -func (m *MsgSubmitTxResponse) XXX_Unmarshal(b []byte) error { +func (m *MsgSendTxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *MsgSubmitTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *MsgSendTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_MsgSubmitTxResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_MsgSendTxResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -187,19 +187,19 @@ func (m *MsgSubmitTxResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, return b[:n], nil } } -func (m *MsgSubmitTxResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSubmitTxResponse.Merge(m, src) +func (m *MsgSendTxResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSendTxResponse.Merge(m, src) } -func (m *MsgSubmitTxResponse) XXX_Size() int { +func (m *MsgSendTxResponse) XXX_Size() int { return m.Size() } -func (m *MsgSubmitTxResponse) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSubmitTxResponse.DiscardUnknown(m) +func (m *MsgSendTxResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSendTxResponse.DiscardUnknown(m) } -var xxx_messageInfo_MsgSubmitTxResponse proto.InternalMessageInfo +var xxx_messageInfo_MsgSendTxResponse proto.InternalMessageInfo -func (m *MsgSubmitTxResponse) GetSequence() uint64 { +func (m *MsgSendTxResponse) GetSequence() uint64 { if m != nil { return m.Sequence } @@ -209,8 +209,8 @@ func (m *MsgSubmitTxResponse) GetSequence() uint64 { func init() { proto.RegisterType((*MsgRegisterInterchainAccount)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount") proto.RegisterType((*MsgRegisterInterchainAccountResponse)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse") - proto.RegisterType((*MsgSubmitTx)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgSubmitTx") - proto.RegisterType((*MsgSubmitTxResponse)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgSubmitTxResponse") + proto.RegisterType((*MsgSendTx)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgSendTx") + proto.RegisterType((*MsgSendTxResponse)(nil), "ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse") } func init() { @@ -218,45 +218,45 @@ func init() { } var fileDescriptor_7def041328c84a30 = []byte{ - // 604 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcf, 0x6b, 0xd4, 0x40, - 0x14, 0xde, 0xf4, 0x87, 0xb6, 0x53, 0x2b, 0x36, 0xb6, 0x10, 0x43, 0x4d, 0x4a, 0xf0, 0xd0, 0x4b, - 0x67, 0xc8, 0x5a, 0x11, 0x2a, 0x22, 0x86, 0x82, 0xee, 0xa1, 0x50, 0x62, 0x0f, 0x22, 0xc2, 0x3a, - 0x99, 0x1d, 0xb2, 0xa3, 0xc9, 0x4c, 0xcc, 0x4c, 0x62, 0x7b, 0xf4, 0xe6, 0xd1, 0x83, 0xe0, 0x49, - 0xe8, 0x7f, 0x63, 0x8f, 0x3d, 0x7a, 0x5a, 0xa4, 0x05, 0xf1, 0xbc, 0x7f, 0x81, 0xe4, 0xc7, 0xa6, - 0x5b, 0xac, 0xa5, 0xfe, 0x3a, 0x65, 0xde, 0xcc, 0xfb, 0xbe, 0xf7, 0x3d, 0xbe, 0x97, 0x07, 0xee, - 0xb1, 0x80, 0x20, 0x9c, 0x24, 0x11, 0x23, 0x58, 0x31, 0xc1, 0x25, 0x62, 0x5c, 0xd1, 0x94, 0xf4, - 0x31, 0xe3, 0x5d, 0x4c, 0x88, 0xc8, 0xb8, 0x92, 0x88, 0x08, 0xae, 0x52, 0x11, 0x45, 0x34, 0x45, - 0xb9, 0x8b, 0xd4, 0x2e, 0x4c, 0x52, 0xa1, 0x84, 0xde, 0x66, 0x01, 0x81, 0xe3, 0x60, 0x78, 0x06, - 0x18, 0x9e, 0x80, 0x61, 0xee, 0x9a, 0x8b, 0xa1, 0x08, 0x45, 0x09, 0x47, 0xc5, 0xa9, 0x62, 0x32, - 0xed, 0x42, 0x06, 0x11, 0x29, 0x45, 0x24, 0x62, 0x94, 0xab, 0xa2, 0x4c, 0x75, 0xaa, 0x13, 0xd6, - 0x2f, 0xa4, 0x33, 0x77, 0x51, 0x82, 0xc9, 0x2b, 0x5a, 0xa3, 0x9c, 0x8f, 0x1a, 0x58, 0xde, 0x92, - 0xa1, 0x4f, 0x43, 0x26, 0x15, 0x4d, 0x3b, 0x0d, 0xe4, 0x61, 0x85, 0xd0, 0x17, 0xc1, 0xb4, 0x78, - 0xc3, 0x69, 0x6a, 0x68, 0x2b, 0xda, 0xea, 0xac, 0x5f, 0x05, 0xfa, 0x7d, 0x30, 0x4f, 0x04, 0xe7, - 0x94, 0x14, 0x95, 0xba, 0xac, 0x67, 0x4c, 0x14, 0xaf, 0x9e, 0x31, 0x1c, 0xd8, 0x8b, 0x7b, 0x38, - 0x8e, 0x36, 0x9c, 0x53, 0xcf, 0x8e, 0x7f, 0xe5, 0x24, 0xee, 0xf4, 0x74, 0x03, 0x5c, 0xce, 0x69, - 0x2a, 0x99, 0xe0, 0xc6, 0x64, 0x49, 0x3b, 0x0a, 0x37, 0x66, 0xde, 0xed, 0xdb, 0xad, 0xef, 0xfb, - 0x76, 0xcb, 0x79, 0x0e, 0x6e, 0x9d, 0x27, 0xcc, 0xa7, 0x32, 0x11, 0x5c, 0x52, 0x7d, 0x1d, 0x00, - 0xd2, 0xc7, 0x9c, 0xd3, 0xa8, 0xd0, 0x51, 0xaa, 0xf4, 0x96, 0x86, 0x03, 0x7b, 0xa1, 0xd6, 0xd1, - 0xbc, 0x39, 0xfe, 0x6c, 0x1d, 0x74, 0x7a, 0xce, 0xa7, 0x49, 0x30, 0xb7, 0x25, 0xc3, 0x27, 0x59, - 0x10, 0x33, 0xb5, 0xb3, 0xfb, 0x7f, 0xda, 0x7c, 0x01, 0xae, 0x2a, 0x16, 0x53, 0x91, 0xa9, 0x6e, - 0x9f, 0xb2, 0xb0, 0xaf, 0xca, 0x6e, 0xe7, 0xda, 0x26, 0x2c, 0xc6, 0xa2, 0x30, 0x13, 0xd6, 0x16, - 0xe6, 0x2e, 0x7c, 0x5c, 0x66, 0x78, 0x37, 0x0f, 0x06, 0x76, 0x6b, 0x38, 0xb0, 0x97, 0x2a, 0xfe, - 0xd3, 0x78, 0xc7, 0x9f, 0xaf, 0x2f, 0xaa, 0x6c, 0xbd, 0x03, 0x16, 0x46, 0x19, 0xc5, 0x57, 0x2a, - 0x1c, 0x27, 0xc6, 0xd4, 0x8a, 0xb6, 0x3a, 0xe5, 0x2d, 0x0f, 0x07, 0xb6, 0x71, 0x9a, 0xa4, 0x49, - 0x71, 0xfc, 0x6b, 0xf5, 0xdd, 0xce, 0xe8, 0x4a, 0x7f, 0xab, 0x81, 0xb9, 0x6a, 0x34, 0xba, 0x3d, - 0xac, 0xb0, 0x31, 0x5d, 0x4a, 0xdd, 0x84, 0x17, 0x9a, 0xe0, 0xdc, 0x85, 0x3f, 0x39, 0xb4, 0x5d, - 0x92, 0x6d, 0x62, 0x85, 0x3d, 0xb3, 0x6e, 0x4a, 0xaf, 0xf4, 0x8c, 0x95, 0x71, 0x7c, 0x90, 0x34, - 0x79, 0x63, 0xee, 0xbb, 0xe0, 0xfa, 0x98, 0x3d, 0x8d, 0xd9, 0x26, 0x98, 0x91, 0xf4, 0x75, 0x46, - 0x39, 0xa1, 0xa5, 0x53, 0x53, 0x7e, 0x13, 0xb7, 0xbf, 0x4d, 0x80, 0xc9, 0x2d, 0x19, 0xea, 0x9f, - 0x35, 0x70, 0xe3, 0xd7, 0xf3, 0xbc, 0x0d, 0x7f, 0xff, 0x97, 0x84, 0xe7, 0x0d, 0xa2, 0xf9, 0xf4, - 0x5f, 0x33, 0x36, 0xdd, 0x7e, 0xd0, 0xc0, 0x4c, 0x33, 0xa1, 0x0f, 0xfe, 0xb0, 0xcc, 0x88, 0xc0, - 0x7c, 0xf4, 0x97, 0x04, 0x23, 0x59, 0xde, 0xcb, 0x83, 0x23, 0x4b, 0x3b, 0x3c, 0xb2, 0xb4, 0xaf, - 0x47, 0x96, 0xf6, 0xfe, 0xd8, 0x6a, 0x1d, 0x1e, 0x5b, 0xad, 0x2f, 0xc7, 0x56, 0xeb, 0xd9, 0x76, - 0xc8, 0x54, 0x3f, 0x0b, 0x20, 0x11, 0x31, 0x22, 0x42, 0xc6, 0x42, 0x22, 0x16, 0x90, 0xb5, 0x50, - 0xa0, 0xfc, 0x0e, 0x8a, 0x45, 0x2f, 0x8b, 0xa8, 0x2c, 0x76, 0x94, 0x44, 0xed, 0xbb, 0x6b, 0x27, - 0xc5, 0xd7, 0xce, 0x5a, 0xa3, 0x6a, 0x2f, 0xa1, 0x32, 0xb8, 0x54, 0xae, 0xa9, 0xdb, 0x3f, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xdb, 0xb2, 0xd6, 0x41, 0x86, 0x05, 0x00, 0x00, + // 601 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0x3d, 0x6f, 0xd4, 0x40, + 0x10, 0xb5, 0xf3, 0x45, 0xb2, 0x21, 0x88, 0x58, 0x89, 0x64, 0xac, 0x60, 0x47, 0x16, 0x45, 0x9a, + 0xec, 0xea, 0x8e, 0x20, 0xa4, 0xa0, 0x14, 0x58, 0x41, 0xe2, 0x8a, 0x48, 0x91, 0x49, 0x81, 0x10, + 0xd2, 0xb1, 0xb7, 0x5e, 0xf9, 0x16, 0xec, 0x5d, 0xe3, 0xdd, 0x33, 0x49, 0x49, 0x47, 0x85, 0xe8, + 0x28, 0x68, 0xf2, 0x6f, 0x48, 0x99, 0x92, 0xea, 0x14, 0x25, 0x0d, 0xf5, 0xfd, 0x02, 0xe4, 0x8f, + 0xf3, 0xdd, 0x89, 0x10, 0x85, 0xaf, 0xca, 0x3b, 0xbb, 0xf3, 0x66, 0xde, 0xe8, 0x3d, 0x0f, 0x78, + 0xc4, 0x3a, 0x04, 0xe1, 0x24, 0x89, 0x18, 0xc1, 0x8a, 0x09, 0x2e, 0x11, 0xe3, 0x8a, 0xa6, 0xa4, + 0x8b, 0x19, 0x6f, 0x63, 0x42, 0x44, 0x8f, 0x2b, 0x89, 0x88, 0xe0, 0x2a, 0x15, 0x51, 0x44, 0x53, + 0x94, 0x35, 0x90, 0x3a, 0x84, 0x49, 0x2a, 0x94, 0x30, 0x9a, 0xac, 0x43, 0xe0, 0x38, 0x18, 0x5e, + 0x02, 0x86, 0x23, 0x30, 0xcc, 0x1a, 0xd6, 0x4a, 0x28, 0x42, 0x51, 0xc0, 0x51, 0x7e, 0x2a, 0x2b, + 0x59, 0x4e, 0x4e, 0x83, 0x88, 0x94, 0x22, 0x12, 0x31, 0xca, 0x55, 0xde, 0xa6, 0x3c, 0x55, 0x09, + 0x5b, 0xd7, 0xe2, 0x99, 0x35, 0x50, 0x82, 0xc9, 0x1b, 0x5a, 0xa1, 0xdc, 0xcf, 0x3a, 0x58, 0xdb, + 0x93, 0xa1, 0x4f, 0x43, 0x26, 0x15, 0x4d, 0x5b, 0x35, 0xe4, 0x71, 0x89, 0x30, 0x56, 0xc0, 0xac, + 0x78, 0xc7, 0x69, 0x6a, 0xea, 0xeb, 0xfa, 0xc6, 0x82, 0x5f, 0x06, 0xc6, 0x0e, 0x58, 0x22, 0x82, + 0x73, 0x4a, 0xf2, 0x4e, 0x6d, 0x16, 0x98, 0x53, 0xf9, 0xab, 0x67, 0x0e, 0xfa, 0xce, 0xca, 0x11, + 0x8e, 0xa3, 0x6d, 0x77, 0xe2, 0xd9, 0xf5, 0x6f, 0x8e, 0xe2, 0x56, 0x60, 0x98, 0xe0, 0x46, 0x46, + 0x53, 0xc9, 0x04, 0x37, 0xa7, 0x8b, 0xb2, 0xc3, 0x70, 0x7b, 0xfe, 0xc3, 0xb1, 0xa3, 0x7d, 0x3f, + 0x76, 0x34, 0xf7, 0x25, 0xb8, 0x77, 0x15, 0x31, 0x9f, 0xca, 0x44, 0x70, 0x49, 0x8d, 0x2d, 0x00, + 0x48, 0x17, 0x73, 0x4e, 0xa3, 0x9c, 0x47, 0xc1, 0xd2, 0x5b, 0x1d, 0xf4, 0x9d, 0xe5, 0x8a, 0x47, + 0xfd, 0xe6, 0xfa, 0x0b, 0x55, 0xd0, 0x0a, 0xdc, 0x2f, 0xd3, 0x60, 0x61, 0x4f, 0x86, 0xcf, 0x28, + 0x0f, 0x0e, 0x0e, 0xff, 0xcf, 0x90, 0xaf, 0xc0, 0x2d, 0xc5, 0x62, 0x2a, 0x7a, 0xaa, 0xdd, 0xa5, + 0x2c, 0xec, 0xaa, 0x62, 0xd6, 0xc5, 0xa6, 0x05, 0x73, 0x53, 0xe4, 0x52, 0xc2, 0x4a, 0xc0, 0xac, + 0x01, 0x9f, 0x16, 0x19, 0xde, 0xdd, 0x93, 0xbe, 0xa3, 0x0d, 0xfa, 0xce, 0x6a, 0x59, 0x7f, 0x12, + 0xef, 0xfa, 0x4b, 0xd5, 0x45, 0x99, 0x6d, 0xb4, 0xc0, 0xf2, 0x30, 0x23, 0xff, 0x4a, 0x85, 0xe3, + 0xc4, 0x9c, 0x59, 0xd7, 0x37, 0x66, 0xbc, 0xb5, 0x41, 0xdf, 0x31, 0x27, 0x8b, 0xd4, 0x29, 0xae, + 0x7f, 0xbb, 0xba, 0x3b, 0x18, 0x5e, 0x19, 0xef, 0x75, 0xb0, 0x58, 0x1a, 0xa3, 0x1d, 0x60, 0x85, + 0xcd, 0xd9, 0x82, 0xea, 0x2e, 0xbc, 0x96, 0x7f, 0xb3, 0x06, 0xfc, 0x49, 0x9f, 0xfd, 0xa2, 0xd8, + 0x2e, 0x56, 0xd8, 0xb3, 0xaa, 0xa1, 0x8c, 0x92, 0xcf, 0x58, 0x1b, 0xd7, 0x07, 0x49, 0x9d, 0x37, + 0xa6, 0x3d, 0x02, 0xcb, 0xb5, 0x38, 0xb5, 0xd0, 0x16, 0x98, 0x97, 0xf4, 0x6d, 0x8f, 0x72, 0x42, + 0x0b, 0x9d, 0x66, 0xfc, 0x3a, 0x6e, 0x9e, 0x4d, 0x81, 0xe9, 0x3d, 0x19, 0x1a, 0x5f, 0x75, 0x70, + 0xe7, 0xd7, 0x5e, 0xde, 0x87, 0xbf, 0xff, 0x3b, 0xc2, 0xab, 0x4c, 0x68, 0x3d, 0xff, 0xd7, 0x15, + 0xeb, 0x69, 0x3f, 0xea, 0x60, 0xae, 0x72, 0xe7, 0xce, 0x1f, 0x36, 0x29, 0xe1, 0xd6, 0x93, 0xbf, + 0x82, 0x0f, 0x09, 0x79, 0xaf, 0x4f, 0xce, 0x6d, 0xfd, 0xf4, 0xdc, 0xd6, 0xcf, 0xce, 0x6d, 0xfd, + 0xd3, 0x85, 0xad, 0x9d, 0x5e, 0xd8, 0xda, 0xb7, 0x0b, 0x5b, 0x7b, 0xb1, 0x1f, 0x32, 0xd5, 0xed, + 0x75, 0x20, 0x11, 0x31, 0x22, 0x42, 0xc6, 0x42, 0x22, 0xd6, 0x21, 0x9b, 0xa1, 0x40, 0xd9, 0x03, + 0x14, 0x8b, 0xa0, 0x17, 0x51, 0x99, 0x6f, 0x26, 0x89, 0x9a, 0x0f, 0x37, 0x47, 0xad, 0x37, 0x2f, + 0x5b, 0x9e, 0xea, 0x28, 0xa1, 0xb2, 0x33, 0x57, 0x2c, 0xa7, 0xfb, 0x3f, 0x02, 0x00, 0x00, 0xff, + 0xff, 0xc9, 0xf9, 0x08, 0x9e, 0x7c, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -273,8 +273,8 @@ const _ = grpc.SupportPackageIsVersion4 type MsgClient interface { // RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount. RegisterInterchainAccount(ctx context.Context, in *MsgRegisterInterchainAccount, opts ...grpc.CallOption) (*MsgRegisterInterchainAccountResponse, error) - // SubmitTx defines a rpc handler for MsgSubmitTx. - SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc.CallOption) (*MsgSubmitTxResponse, error) + // SendTx defines a rpc handler for MsgSendTx. + SendTx(ctx context.Context, in *MsgSendTx, opts ...grpc.CallOption) (*MsgSendTxResponse, error) } type msgClient struct { @@ -294,9 +294,9 @@ func (c *msgClient) RegisterInterchainAccount(ctx context.Context, in *MsgRegist return out, nil } -func (c *msgClient) SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc.CallOption) (*MsgSubmitTxResponse, error) { - out := new(MsgSubmitTxResponse) - err := c.cc.Invoke(ctx, "/ibc.applications.interchain_accounts.controller.v1.Msg/SubmitTx", in, out, opts...) +func (c *msgClient) SendTx(ctx context.Context, in *MsgSendTx, opts ...grpc.CallOption) (*MsgSendTxResponse, error) { + out := new(MsgSendTxResponse) + err := c.cc.Invoke(ctx, "/ibc.applications.interchain_accounts.controller.v1.Msg/SendTx", in, out, opts...) if err != nil { return nil, err } @@ -307,8 +307,8 @@ func (c *msgClient) SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc. type MsgServer interface { // RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount. RegisterInterchainAccount(context.Context, *MsgRegisterInterchainAccount) (*MsgRegisterInterchainAccountResponse, error) - // SubmitTx defines a rpc handler for MsgSubmitTx. - SubmitTx(context.Context, *MsgSubmitTx) (*MsgSubmitTxResponse, error) + // SendTx defines a rpc handler for MsgSendTx. + SendTx(context.Context, *MsgSendTx) (*MsgSendTxResponse, error) } // UnimplementedMsgServer can be embedded to have forward compatible implementations. @@ -318,8 +318,8 @@ type UnimplementedMsgServer struct { func (*UnimplementedMsgServer) RegisterInterchainAccount(ctx context.Context, req *MsgRegisterInterchainAccount) (*MsgRegisterInterchainAccountResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method RegisterInterchainAccount not implemented") } -func (*UnimplementedMsgServer) SubmitTx(ctx context.Context, req *MsgSubmitTx) (*MsgSubmitTxResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method SubmitTx not implemented") +func (*UnimplementedMsgServer) SendTx(ctx context.Context, req *MsgSendTx) (*MsgSendTxResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method SendTx not implemented") } func RegisterMsgServer(s grpc1.Server, srv MsgServer) { @@ -344,20 +344,20 @@ func _Msg_RegisterInterchainAccount_Handler(srv interface{}, ctx context.Context return interceptor(ctx, in, info, handler) } -func _Msg_SubmitTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(MsgSubmitTx) +func _Msg_SendTx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MsgSendTx) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(MsgServer).SubmitTx(ctx, in) + return srv.(MsgServer).SendTx(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/ibc.applications.interchain_accounts.controller.v1.Msg/SubmitTx", + FullMethod: "/ibc.applications.interchain_accounts.controller.v1.Msg/SendTx", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(MsgServer).SubmitTx(ctx, req.(*MsgSubmitTx)) + return srv.(MsgServer).SendTx(ctx, req.(*MsgSendTx)) } return interceptor(ctx, in, info, handler) } @@ -371,8 +371,8 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ Handler: _Msg_RegisterInterchainAccount_Handler, }, { - MethodName: "SubmitTx", - Handler: _Msg_SubmitTx_Handler, + MethodName: "SendTx", + Handler: _Msg_SendTx_Handler, }, }, Streams: []grpc.StreamDesc{}, @@ -453,7 +453,7 @@ func (m *MsgRegisterInterchainAccountResponse) MarshalToSizedBuffer(dAtA []byte) return len(dAtA) - i, nil } -func (m *MsgSubmitTx) Marshal() (dAtA []byte, err error) { +func (m *MsgSendTx) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -463,12 +463,12 @@ func (m *MsgSubmitTx) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *MsgSubmitTx) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgSendTx) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgSubmitTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgSendTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -515,7 +515,7 @@ func (m *MsgSubmitTx) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *MsgSubmitTxResponse) Marshal() (dAtA []byte, err error) { +func (m *MsgSendTxResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -525,12 +525,12 @@ func (m *MsgSubmitTxResponse) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *MsgSubmitTxResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *MsgSendTxResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *MsgSubmitTxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *MsgSendTxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -588,7 +588,7 @@ func (m *MsgRegisterInterchainAccountResponse) Size() (n int) { return n } -func (m *MsgSubmitTx) Size() (n int) { +func (m *MsgSendTx) Size() (n int) { if m == nil { return 0 } @@ -612,7 +612,7 @@ func (m *MsgSubmitTx) Size() (n int) { return n } -func (m *MsgSubmitTxResponse) Size() (n int) { +func (m *MsgSendTxResponse) Size() (n int) { if m == nil { return 0 } @@ -858,7 +858,7 @@ func (m *MsgRegisterInterchainAccountResponse) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgSubmitTx) Unmarshal(dAtA []byte) error { +func (m *MsgSendTx) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -881,10 +881,10 @@ func (m *MsgSubmitTx) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgSubmitTx: wiretype end group for non-group") + return fmt.Errorf("proto: MsgSendTx: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSubmitTx: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgSendTx: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -1057,7 +1057,7 @@ func (m *MsgSubmitTx) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgSubmitTxResponse) Unmarshal(dAtA []byte) error { +func (m *MsgSendTxResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -1080,10 +1080,10 @@ func (m *MsgSubmitTxResponse) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: MsgSubmitTxResponse: wiretype end group for non-group") + return fmt.Errorf("proto: MsgSendTxResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSubmitTxResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: MsgSendTxResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto index e73fa2d8e12..80561d1eeaa 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto @@ -12,11 +12,11 @@ import "ibc/applications/interchain_accounts/v1/packet.proto"; service Msg { // RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount. rpc RegisterInterchainAccount(MsgRegisterInterchainAccount) returns (MsgRegisterInterchainAccountResponse); - // SubmitTx defines a rpc handler for MsgSubmitTx. - rpc SubmitTx(MsgSubmitTx) returns (MsgSubmitTxResponse); + // SendTx defines a rpc handler for MsgSendTx. + rpc SendTx(MsgSendTx) returns (MsgSendTxResponse); } -// MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount +// MsgRegisterInterchainAccount defines the payload for Msg/MsgRegisterInterchainAccount message MsgRegisterInterchainAccount { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; @@ -26,13 +26,13 @@ message MsgRegisterInterchainAccount { string version = 3; } -// MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount +// MsgRegisterInterchainAccountResponse defines the response for Msg/MsgRegisterInterchainAccountResponse message MsgRegisterInterchainAccountResponse { string channel_id = 1 [(gogoproto.moretags) = "yaml:\"channel_id\""]; } -// MsgSubmitTx defines the payload for MsgSubmitTx -message MsgSubmitTx { +// MsgSendTx defines the payload for Msg/SendTx +message MsgSendTx { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; @@ -49,7 +49,7 @@ message MsgSubmitTx { [(gogoproto.moretags) = "yaml:\"packet_data\"", (gogoproto.nullable) = false]; } -// MsgSubmitTxResponse defines the response for MsgSubmitTx -message MsgSubmitTxResponse { +// MsgSendTxResponse defines the response for MsgSendTx +message MsgSendTxResponse { uint64 sequence = 1; } \ No newline at end of file