channelv1

package
v0.0.0-...-c13f9de Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: MIT Imports: 14 Imported by: 0

Documentation

Overview

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Code generated by protoc-gen-go-pulsar. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

View Source
var (
	State_name = map[int32]string{
		0: "STATE_UNINITIALIZED_UNSPECIFIED",
		1: "STATE_INIT",
		2: "STATE_TRYOPEN",
		3: "STATE_OPEN",
		4: "STATE_CLOSED",
		5: "STATE_FLUSHING",
		6: "STATE_FLUSHCOMPLETE",
	}
	State_value = map[string]int32{
		"STATE_UNINITIALIZED_UNSPECIFIED": 0,
		"STATE_INIT":                      1,
		"STATE_TRYOPEN":                   2,
		"STATE_OPEN":                      3,
		"STATE_CLOSED":                    4,
		"STATE_FLUSHING":                  5,
		"STATE_FLUSHCOMPLETE":             6,
	}
)

Enum value maps for State.

View Source
var (
	Order_name = map[int32]string{
		0: "ORDER_NONE_UNSPECIFIED",
		1: "ORDER_UNORDERED",
		2: "ORDER_ORDERED",
	}
	Order_value = map[string]int32{
		"ORDER_NONE_UNSPECIFIED": 0,
		"ORDER_UNORDERED":        1,
		"ORDER_ORDERED":          2,
	}
)

Enum value maps for Order.

View Source
var (
	ResponseResultType_name = map[int32]string{
		0: "RESPONSE_RESULT_TYPE_UNSPECIFIED",
		1: "RESPONSE_RESULT_TYPE_NOOP",
		2: "RESPONSE_RESULT_TYPE_SUCCESS",
		3: "RESPONSE_RESULT_TYPE_FAILURE",
	}
	ResponseResultType_value = map[string]int32{
		"RESPONSE_RESULT_TYPE_UNSPECIFIED": 0,
		"RESPONSE_RESULT_TYPE_NOOP":        1,
		"RESPONSE_RESULT_TYPE_SUCCESS":     2,
		"RESPONSE_RESULT_TYPE_FAILURE":     3,
	}
)

Enum value maps for ResponseResultType.

View Source
var File_ibc_core_channel_v1_channel_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_channel_v1_genesis_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_channel_v1_query_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_channel_v1_tx_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_channel_v1_upgrade_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Acknowledgement

type Acknowledgement struct {

	// response contains either a result or an error and must be non-empty
	//
	// Types that are assignable to Response:
	//
	//	*Acknowledgement_Result
	//	*Acknowledgement_Error
	Response isAcknowledgement_Response `protobuf_oneof:"response"`
	// contains filtered or unexported fields
}

Acknowledgement is the recommended acknowledgement format to be used by app-specific protocols. NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental conflicts with other protobuf message formats used for acknowledgements. The first byte of any message with this format will be the non-ASCII values `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope

func (*Acknowledgement) Descriptor deprecated

func (*Acknowledgement) Descriptor() ([]byte, []int)

Deprecated: Use Acknowledgement.ProtoReflect.Descriptor instead.

func (*Acknowledgement) GetError

func (x *Acknowledgement) GetError() string

func (*Acknowledgement) GetResponse

func (x *Acknowledgement) GetResponse() isAcknowledgement_Response

func (*Acknowledgement) GetResult

func (x *Acknowledgement) GetResult() []byte

func (*Acknowledgement) ProtoMessage

func (*Acknowledgement) ProtoMessage()

func (*Acknowledgement) ProtoReflect

func (x *Acknowledgement) ProtoReflect() protoreflect.Message

func (*Acknowledgement) Reset

func (x *Acknowledgement) Reset()

func (*Acknowledgement) String

func (x *Acknowledgement) String() string

type Acknowledgement_Error

type Acknowledgement_Error struct {
	Error string `protobuf:"bytes,22,opt,name=error,proto3,oneof"`
}

type Acknowledgement_Result

type Acknowledgement_Result struct {
	Result []byte `protobuf:"bytes,21,opt,name=result,proto3,oneof"`
}

type Channel

type Channel struct {

	// current state of the channel end
	State State `protobuf:"varint,1,opt,name=state,proto3,enum=ibc.core.channel.v1.State" json:"state,omitempty"`
	// whether the channel is ordered or unordered
	Ordering Order `protobuf:"varint,2,opt,name=ordering,proto3,enum=ibc.core.channel.v1.Order" json:"ordering,omitempty"`
	// counterparty channel end
	Counterparty *Counterparty `protobuf:"bytes,3,opt,name=counterparty,proto3" json:"counterparty,omitempty"`
	// list of connection identifiers, in order, along which packets sent on
	// this channel will travel
	ConnectionHops []string `protobuf:"bytes,4,rep,name=connection_hops,json=connectionHops,proto3" json:"connection_hops,omitempty"`
	// opaque channel version, which is agreed upon during the handshake
	Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	// upgrade sequence indicates the latest upgrade attempt performed by this channel
	// the value of 0 indicates the channel has never been upgraded
	UpgradeSequence uint64 `protobuf:"varint,6,opt,name=upgrade_sequence,json=upgradeSequence,proto3" json:"upgrade_sequence,omitempty"`
	// contains filtered or unexported fields
}

Channel defines pipeline for exactly-once packet delivery between specific modules on separate blockchains, which has at least one end capable of sending packets and one end capable of receiving packets.

func (*Channel) Descriptor deprecated

func (*Channel) Descriptor() ([]byte, []int)

Deprecated: Use Channel.ProtoReflect.Descriptor instead.

func (*Channel) GetConnectionHops

func (x *Channel) GetConnectionHops() []string

func (*Channel) GetCounterparty

func (x *Channel) GetCounterparty() *Counterparty

func (*Channel) GetOrdering

func (x *Channel) GetOrdering() Order

func (*Channel) GetState

func (x *Channel) GetState() State

func (*Channel) GetUpgradeSequence

func (x *Channel) GetUpgradeSequence() uint64

func (*Channel) GetVersion

func (x *Channel) GetVersion() string

func (*Channel) ProtoMessage

func (*Channel) ProtoMessage()

func (*Channel) ProtoReflect

func (x *Channel) ProtoReflect() protoreflect.Message

func (*Channel) Reset

func (x *Channel) Reset()

func (*Channel) String

func (x *Channel) String() string

type Counterparty

type Counterparty struct {

	// port on the counterparty chain which owns the other end of the channel.
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel end on the counterparty chain
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

Counterparty defines a channel end counterparty

func (*Counterparty) Descriptor deprecated

func (*Counterparty) Descriptor() ([]byte, []int)

Deprecated: Use Counterparty.ProtoReflect.Descriptor instead.

func (*Counterparty) GetChannelId

func (x *Counterparty) GetChannelId() string

func (*Counterparty) GetPortId

func (x *Counterparty) GetPortId() string

func (*Counterparty) ProtoMessage

func (*Counterparty) ProtoMessage()

func (*Counterparty) ProtoReflect

func (x *Counterparty) ProtoReflect() protoreflect.Message

func (*Counterparty) Reset

func (x *Counterparty) Reset()

func (*Counterparty) String

func (x *Counterparty) String() string

type ErrorReceipt

type ErrorReceipt struct {

	// the channel upgrade sequence
	Sequence uint64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// the error message detailing the cause of failure
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

ErrorReceipt defines a type which encapsulates the upgrade sequence and error associated with the upgrade handshake failure. When a channel upgrade handshake is aborted both chains are expected to increment to the next sequence.

func (*ErrorReceipt) Descriptor deprecated

func (*ErrorReceipt) Descriptor() ([]byte, []int)

Deprecated: Use ErrorReceipt.ProtoReflect.Descriptor instead.

func (*ErrorReceipt) GetMessage

func (x *ErrorReceipt) GetMessage() string

func (*ErrorReceipt) GetSequence

func (x *ErrorReceipt) GetSequence() uint64

func (*ErrorReceipt) ProtoMessage

func (*ErrorReceipt) ProtoMessage()

func (*ErrorReceipt) ProtoReflect

func (x *ErrorReceipt) ProtoReflect() protoreflect.Message

func (*ErrorReceipt) Reset

func (x *ErrorReceipt) Reset()

func (*ErrorReceipt) String

func (x *ErrorReceipt) String() string

type GenesisState

type GenesisState struct {
	Channels         []*IdentifiedChannel `protobuf:"bytes,1,rep,name=channels,proto3" json:"channels,omitempty"`
	Acknowledgements []*PacketState       `protobuf:"bytes,2,rep,name=acknowledgements,proto3" json:"acknowledgements,omitempty"`
	Commitments      []*PacketState       `protobuf:"bytes,3,rep,name=commitments,proto3" json:"commitments,omitempty"`
	Receipts         []*PacketState       `protobuf:"bytes,4,rep,name=receipts,proto3" json:"receipts,omitempty"`
	SendSequences    []*PacketSequence    `protobuf:"bytes,5,rep,name=send_sequences,json=sendSequences,proto3" json:"send_sequences,omitempty"`
	RecvSequences    []*PacketSequence    `protobuf:"bytes,6,rep,name=recv_sequences,json=recvSequences,proto3" json:"recv_sequences,omitempty"`
	AckSequences     []*PacketSequence    `protobuf:"bytes,7,rep,name=ack_sequences,json=ackSequences,proto3" json:"ack_sequences,omitempty"`
	// the sequence for the next generated channel identifier
	NextChannelSequence uint64  `protobuf:"varint,8,opt,name=next_channel_sequence,json=nextChannelSequence,proto3" json:"next_channel_sequence,omitempty"`
	Params              *Params `protobuf:"bytes,9,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

GenesisState defines the ibc channel submodule's genesis state.

func (*GenesisState) Descriptor deprecated

func (*GenesisState) Descriptor() ([]byte, []int)

Deprecated: Use GenesisState.ProtoReflect.Descriptor instead.

func (*GenesisState) GetAckSequences

func (x *GenesisState) GetAckSequences() []*PacketSequence

func (*GenesisState) GetAcknowledgements

func (x *GenesisState) GetAcknowledgements() []*PacketState

func (*GenesisState) GetChannels

func (x *GenesisState) GetChannels() []*IdentifiedChannel

func (*GenesisState) GetCommitments

func (x *GenesisState) GetCommitments() []*PacketState

func (*GenesisState) GetNextChannelSequence

func (x *GenesisState) GetNextChannelSequence() uint64

func (*GenesisState) GetParams

func (x *GenesisState) GetParams() *Params

func (*GenesisState) GetReceipts

func (x *GenesisState) GetReceipts() []*PacketState

func (*GenesisState) GetRecvSequences

func (x *GenesisState) GetRecvSequences() []*PacketSequence

func (*GenesisState) GetSendSequences

func (x *GenesisState) GetSendSequences() []*PacketSequence

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) ProtoReflect

func (x *GenesisState) ProtoReflect() protoreflect.Message

func (*GenesisState) Reset

func (x *GenesisState) Reset()

func (*GenesisState) String

func (x *GenesisState) String() string

type IdentifiedChannel

type IdentifiedChannel struct {

	// current state of the channel end
	State State `protobuf:"varint,1,opt,name=state,proto3,enum=ibc.core.channel.v1.State" json:"state,omitempty"`
	// whether the channel is ordered or unordered
	Ordering Order `protobuf:"varint,2,opt,name=ordering,proto3,enum=ibc.core.channel.v1.Order" json:"ordering,omitempty"`
	// counterparty channel end
	Counterparty *Counterparty `protobuf:"bytes,3,opt,name=counterparty,proto3" json:"counterparty,omitempty"`
	// list of connection identifiers, in order, along which packets sent on
	// this channel will travel
	ConnectionHops []string `protobuf:"bytes,4,rep,name=connection_hops,json=connectionHops,proto3" json:"connection_hops,omitempty"`
	// opaque channel version, which is agreed upon during the handshake
	Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	// port identifier
	PortId string `protobuf:"bytes,6,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel identifier
	ChannelId string `protobuf:"bytes,7,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// upgrade sequence indicates the latest upgrade attempt performed by this channel
	// the value of 0 indicates the channel has never been upgraded
	UpgradeSequence uint64 `protobuf:"varint,8,opt,name=upgrade_sequence,json=upgradeSequence,proto3" json:"upgrade_sequence,omitempty"`
	// contains filtered or unexported fields
}

IdentifiedChannel defines a channel with additional port and channel identifier fields.

func (*IdentifiedChannel) Descriptor deprecated

func (*IdentifiedChannel) Descriptor() ([]byte, []int)

Deprecated: Use IdentifiedChannel.ProtoReflect.Descriptor instead.

func (*IdentifiedChannel) GetChannelId

func (x *IdentifiedChannel) GetChannelId() string

func (*IdentifiedChannel) GetConnectionHops

func (x *IdentifiedChannel) GetConnectionHops() []string

func (*IdentifiedChannel) GetCounterparty

func (x *IdentifiedChannel) GetCounterparty() *Counterparty

func (*IdentifiedChannel) GetOrdering

func (x *IdentifiedChannel) GetOrdering() Order

func (*IdentifiedChannel) GetPortId

func (x *IdentifiedChannel) GetPortId() string

func (*IdentifiedChannel) GetState

func (x *IdentifiedChannel) GetState() State

func (*IdentifiedChannel) GetUpgradeSequence

func (x *IdentifiedChannel) GetUpgradeSequence() uint64

func (*IdentifiedChannel) GetVersion

func (x *IdentifiedChannel) GetVersion() string

func (*IdentifiedChannel) ProtoMessage

func (*IdentifiedChannel) ProtoMessage()

func (*IdentifiedChannel) ProtoReflect

func (x *IdentifiedChannel) ProtoReflect() protoreflect.Message

func (*IdentifiedChannel) Reset

func (x *IdentifiedChannel) Reset()

func (*IdentifiedChannel) String

func (x *IdentifiedChannel) String() string

type MsgAcknowledgement

type MsgAcknowledgement struct {
	Packet          *Packet    `protobuf:"bytes,1,opt,name=packet,proto3" json:"packet,omitempty"`
	Acknowledgement []byte     `protobuf:"bytes,2,opt,name=acknowledgement,proto3" json:"acknowledgement,omitempty"`
	ProofAcked      []byte     `protobuf:"bytes,3,opt,name=proof_acked,json=proofAcked,proto3" json:"proof_acked,omitempty"`
	ProofHeight     *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer          string     `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgAcknowledgement receives incoming IBC acknowledgement

func (*MsgAcknowledgement) Descriptor deprecated

func (*MsgAcknowledgement) Descriptor() ([]byte, []int)

Deprecated: Use MsgAcknowledgement.ProtoReflect.Descriptor instead.

func (*MsgAcknowledgement) GetAcknowledgement

func (x *MsgAcknowledgement) GetAcknowledgement() []byte

func (*MsgAcknowledgement) GetPacket

func (x *MsgAcknowledgement) GetPacket() *Packet

func (*MsgAcknowledgement) GetProofAcked

func (x *MsgAcknowledgement) GetProofAcked() []byte

func (*MsgAcknowledgement) GetProofHeight

func (x *MsgAcknowledgement) GetProofHeight() *v1.Height

func (*MsgAcknowledgement) GetSigner

func (x *MsgAcknowledgement) GetSigner() string

func (*MsgAcknowledgement) ProtoMessage

func (*MsgAcknowledgement) ProtoMessage()

func (*MsgAcknowledgement) ProtoReflect

func (x *MsgAcknowledgement) ProtoReflect() protoreflect.Message

func (*MsgAcknowledgement) Reset

func (x *MsgAcknowledgement) Reset()

func (*MsgAcknowledgement) String

func (x *MsgAcknowledgement) String() string

type MsgAcknowledgementResponse

type MsgAcknowledgementResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.

func (*MsgAcknowledgementResponse) Descriptor deprecated

func (*MsgAcknowledgementResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgAcknowledgementResponse.ProtoReflect.Descriptor instead.

func (*MsgAcknowledgementResponse) GetResult

func (*MsgAcknowledgementResponse) ProtoMessage

func (*MsgAcknowledgementResponse) ProtoMessage()

func (*MsgAcknowledgementResponse) ProtoReflect

func (*MsgAcknowledgementResponse) Reset

func (x *MsgAcknowledgementResponse) Reset()

func (*MsgAcknowledgementResponse) String

func (x *MsgAcknowledgementResponse) String() string

type MsgChannelCloseConfirm

type MsgChannelCloseConfirm struct {
	PortId                      string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId                   string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	ProofInit                   []byte     `protobuf:"bytes,3,opt,name=proof_init,json=proofInit,proto3" json:"proof_init,omitempty"`
	ProofHeight                 *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer                      string     `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
	CounterpartyUpgradeSequence uint64     `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B to acknowledge the change of channel state to CLOSED on Chain A.

func (*MsgChannelCloseConfirm) Descriptor deprecated

func (*MsgChannelCloseConfirm) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelCloseConfirm.ProtoReflect.Descriptor instead.

func (*MsgChannelCloseConfirm) GetChannelId

func (x *MsgChannelCloseConfirm) GetChannelId() string

func (*MsgChannelCloseConfirm) GetCounterpartyUpgradeSequence

func (x *MsgChannelCloseConfirm) GetCounterpartyUpgradeSequence() uint64

func (*MsgChannelCloseConfirm) GetPortId

func (x *MsgChannelCloseConfirm) GetPortId() string

func (*MsgChannelCloseConfirm) GetProofHeight

func (x *MsgChannelCloseConfirm) GetProofHeight() *v1.Height

func (*MsgChannelCloseConfirm) GetProofInit

func (x *MsgChannelCloseConfirm) GetProofInit() []byte

func (*MsgChannelCloseConfirm) GetSigner

func (x *MsgChannelCloseConfirm) GetSigner() string

func (*MsgChannelCloseConfirm) ProtoMessage

func (*MsgChannelCloseConfirm) ProtoMessage()

func (*MsgChannelCloseConfirm) ProtoReflect

func (x *MsgChannelCloseConfirm) ProtoReflect() protoreflect.Message

func (*MsgChannelCloseConfirm) Reset

func (x *MsgChannelCloseConfirm) Reset()

func (*MsgChannelCloseConfirm) String

func (x *MsgChannelCloseConfirm) String() string

type MsgChannelCloseConfirmResponse

type MsgChannelCloseConfirmResponse struct {
	// contains filtered or unexported fields
}

MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response type.

func (*MsgChannelCloseConfirmResponse) Descriptor deprecated

func (*MsgChannelCloseConfirmResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelCloseConfirmResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelCloseConfirmResponse) ProtoMessage

func (*MsgChannelCloseConfirmResponse) ProtoMessage()

func (*MsgChannelCloseConfirmResponse) ProtoReflect

func (*MsgChannelCloseConfirmResponse) Reset

func (x *MsgChannelCloseConfirmResponse) Reset()

func (*MsgChannelCloseConfirmResponse) String

type MsgChannelCloseInit

type MsgChannelCloseInit struct {
	PortId    string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Signer    string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelCloseInit defines a msg sent by a Relayer to Chain A to close a channel with Chain B.

func (*MsgChannelCloseInit) Descriptor deprecated

func (*MsgChannelCloseInit) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelCloseInit.ProtoReflect.Descriptor instead.

func (*MsgChannelCloseInit) GetChannelId

func (x *MsgChannelCloseInit) GetChannelId() string

func (*MsgChannelCloseInit) GetPortId

func (x *MsgChannelCloseInit) GetPortId() string

func (*MsgChannelCloseInit) GetSigner

func (x *MsgChannelCloseInit) GetSigner() string

func (*MsgChannelCloseInit) ProtoMessage

func (*MsgChannelCloseInit) ProtoMessage()

func (*MsgChannelCloseInit) ProtoReflect

func (x *MsgChannelCloseInit) ProtoReflect() protoreflect.Message

func (*MsgChannelCloseInit) Reset

func (x *MsgChannelCloseInit) Reset()

func (*MsgChannelCloseInit) String

func (x *MsgChannelCloseInit) String() string

type MsgChannelCloseInitResponse

type MsgChannelCloseInitResponse struct {
	// contains filtered or unexported fields
}

MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.

func (*MsgChannelCloseInitResponse) Descriptor deprecated

func (*MsgChannelCloseInitResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelCloseInitResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelCloseInitResponse) ProtoMessage

func (*MsgChannelCloseInitResponse) ProtoMessage()

func (*MsgChannelCloseInitResponse) ProtoReflect

func (*MsgChannelCloseInitResponse) Reset

func (x *MsgChannelCloseInitResponse) Reset()

func (*MsgChannelCloseInitResponse) String

func (x *MsgChannelCloseInitResponse) String() string

type MsgChannelOpenAck

type MsgChannelOpenAck struct {
	PortId                string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId             string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	CounterpartyChannelId string     `` /* 126-byte string literal not displayed */
	CounterpartyVersion   string     `protobuf:"bytes,4,opt,name=counterparty_version,json=counterpartyVersion,proto3" json:"counterparty_version,omitempty"`
	ProofTry              []byte     `protobuf:"bytes,5,opt,name=proof_try,json=proofTry,proto3" json:"proof_try,omitempty"`
	ProofHeight           *v1.Height `protobuf:"bytes,6,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer                string     `protobuf:"bytes,7,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge the change of channel state to TRYOPEN on Chain B. WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel in the same block as executing this message otherwise the counterparty will be incapable of opening.

func (*MsgChannelOpenAck) Descriptor deprecated

func (*MsgChannelOpenAck) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenAck.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenAck) GetChannelId

func (x *MsgChannelOpenAck) GetChannelId() string

func (*MsgChannelOpenAck) GetCounterpartyChannelId

func (x *MsgChannelOpenAck) GetCounterpartyChannelId() string

func (*MsgChannelOpenAck) GetCounterpartyVersion

func (x *MsgChannelOpenAck) GetCounterpartyVersion() string

func (*MsgChannelOpenAck) GetPortId

func (x *MsgChannelOpenAck) GetPortId() string

func (*MsgChannelOpenAck) GetProofHeight

func (x *MsgChannelOpenAck) GetProofHeight() *v1.Height

func (*MsgChannelOpenAck) GetProofTry

func (x *MsgChannelOpenAck) GetProofTry() []byte

func (*MsgChannelOpenAck) GetSigner

func (x *MsgChannelOpenAck) GetSigner() string

func (*MsgChannelOpenAck) ProtoMessage

func (*MsgChannelOpenAck) ProtoMessage()

func (*MsgChannelOpenAck) ProtoReflect

func (x *MsgChannelOpenAck) ProtoReflect() protoreflect.Message

func (*MsgChannelOpenAck) Reset

func (x *MsgChannelOpenAck) Reset()

func (*MsgChannelOpenAck) String

func (x *MsgChannelOpenAck) String() string

type MsgChannelOpenAckResponse

type MsgChannelOpenAckResponse struct {
	// contains filtered or unexported fields
}

MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.

func (*MsgChannelOpenAckResponse) Descriptor deprecated

func (*MsgChannelOpenAckResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenAckResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenAckResponse) ProtoMessage

func (*MsgChannelOpenAckResponse) ProtoMessage()

func (*MsgChannelOpenAckResponse) ProtoReflect

func (*MsgChannelOpenAckResponse) Reset

func (x *MsgChannelOpenAckResponse) Reset()

func (*MsgChannelOpenAckResponse) String

func (x *MsgChannelOpenAckResponse) String() string

type MsgChannelOpenConfirm

type MsgChannelOpenConfirm struct {
	PortId      string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId   string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	ProofAck    []byte     `protobuf:"bytes,3,opt,name=proof_ack,json=proofAck,proto3" json:"proof_ack,omitempty"`
	ProofHeight *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer      string     `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to acknowledge the change of channel state to OPEN on Chain A.

func (*MsgChannelOpenConfirm) Descriptor deprecated

func (*MsgChannelOpenConfirm) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenConfirm.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenConfirm) GetChannelId

func (x *MsgChannelOpenConfirm) GetChannelId() string

func (*MsgChannelOpenConfirm) GetPortId

func (x *MsgChannelOpenConfirm) GetPortId() string

func (*MsgChannelOpenConfirm) GetProofAck

func (x *MsgChannelOpenConfirm) GetProofAck() []byte

func (*MsgChannelOpenConfirm) GetProofHeight

func (x *MsgChannelOpenConfirm) GetProofHeight() *v1.Height

func (*MsgChannelOpenConfirm) GetSigner

func (x *MsgChannelOpenConfirm) GetSigner() string

func (*MsgChannelOpenConfirm) ProtoMessage

func (*MsgChannelOpenConfirm) ProtoMessage()

func (*MsgChannelOpenConfirm) ProtoReflect

func (x *MsgChannelOpenConfirm) ProtoReflect() protoreflect.Message

func (*MsgChannelOpenConfirm) Reset

func (x *MsgChannelOpenConfirm) Reset()

func (*MsgChannelOpenConfirm) String

func (x *MsgChannelOpenConfirm) String() string

type MsgChannelOpenConfirmResponse

type MsgChannelOpenConfirmResponse struct {
	// contains filtered or unexported fields
}

MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response type.

func (*MsgChannelOpenConfirmResponse) Descriptor deprecated

func (*MsgChannelOpenConfirmResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenConfirmResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenConfirmResponse) ProtoMessage

func (*MsgChannelOpenConfirmResponse) ProtoMessage()

func (*MsgChannelOpenConfirmResponse) ProtoReflect

func (*MsgChannelOpenConfirmResponse) Reset

func (x *MsgChannelOpenConfirmResponse) Reset()

func (*MsgChannelOpenConfirmResponse) String

type MsgChannelOpenInit

type MsgChannelOpenInit struct {
	PortId  string   `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	Channel *Channel `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"`
	Signer  string   `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It is called by a relayer on Chain A.

func (*MsgChannelOpenInit) Descriptor deprecated

func (*MsgChannelOpenInit) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenInit.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenInit) GetChannel

func (x *MsgChannelOpenInit) GetChannel() *Channel

func (*MsgChannelOpenInit) GetPortId

func (x *MsgChannelOpenInit) GetPortId() string

func (*MsgChannelOpenInit) GetSigner

func (x *MsgChannelOpenInit) GetSigner() string

func (*MsgChannelOpenInit) ProtoMessage

func (*MsgChannelOpenInit) ProtoMessage()

func (*MsgChannelOpenInit) ProtoReflect

func (x *MsgChannelOpenInit) ProtoReflect() protoreflect.Message

func (*MsgChannelOpenInit) Reset

func (x *MsgChannelOpenInit) Reset()

func (*MsgChannelOpenInit) String

func (x *MsgChannelOpenInit) String() string

type MsgChannelOpenInitResponse

type MsgChannelOpenInitResponse struct {
	ChannelId string `protobuf:"bytes,1,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Version   string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.

func (*MsgChannelOpenInitResponse) Descriptor deprecated

func (*MsgChannelOpenInitResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenInitResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenInitResponse) GetChannelId

func (x *MsgChannelOpenInitResponse) GetChannelId() string

func (*MsgChannelOpenInitResponse) GetVersion

func (x *MsgChannelOpenInitResponse) GetVersion() string

func (*MsgChannelOpenInitResponse) ProtoMessage

func (*MsgChannelOpenInitResponse) ProtoMessage()

func (*MsgChannelOpenInitResponse) ProtoReflect

func (*MsgChannelOpenInitResponse) Reset

func (x *MsgChannelOpenInitResponse) Reset()

func (*MsgChannelOpenInitResponse) String

func (x *MsgChannelOpenInitResponse) String() string

type MsgChannelOpenTry

type MsgChannelOpenTry struct {
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
	//
	// Deprecated: Do not use.
	PreviousChannelId string `protobuf:"bytes,2,opt,name=previous_channel_id,json=previousChannelId,proto3" json:"previous_channel_id,omitempty"`
	// NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
	Channel             *Channel   `protobuf:"bytes,3,opt,name=channel,proto3" json:"channel,omitempty"`
	CounterpartyVersion string     `protobuf:"bytes,4,opt,name=counterparty_version,json=counterpartyVersion,proto3" json:"counterparty_version,omitempty"`
	ProofInit           []byte     `protobuf:"bytes,5,opt,name=proof_init,json=proofInit,proto3" json:"proof_init,omitempty"`
	ProofHeight         *v1.Height `protobuf:"bytes,6,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer              string     `protobuf:"bytes,7,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel on Chain B. The version field within the Channel field has been deprecated. Its value will be ignored by core IBC.

func (*MsgChannelOpenTry) Descriptor deprecated

func (*MsgChannelOpenTry) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenTry.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenTry) GetChannel

func (x *MsgChannelOpenTry) GetChannel() *Channel

func (*MsgChannelOpenTry) GetCounterpartyVersion

func (x *MsgChannelOpenTry) GetCounterpartyVersion() string

func (*MsgChannelOpenTry) GetPortId

func (x *MsgChannelOpenTry) GetPortId() string

func (*MsgChannelOpenTry) GetPreviousChannelId deprecated

func (x *MsgChannelOpenTry) GetPreviousChannelId() string

Deprecated: Do not use.

func (*MsgChannelOpenTry) GetProofHeight

func (x *MsgChannelOpenTry) GetProofHeight() *v1.Height

func (*MsgChannelOpenTry) GetProofInit

func (x *MsgChannelOpenTry) GetProofInit() []byte

func (*MsgChannelOpenTry) GetSigner

func (x *MsgChannelOpenTry) GetSigner() string

func (*MsgChannelOpenTry) ProtoMessage

func (*MsgChannelOpenTry) ProtoMessage()

func (*MsgChannelOpenTry) ProtoReflect

func (x *MsgChannelOpenTry) ProtoReflect() protoreflect.Message

func (*MsgChannelOpenTry) Reset

func (x *MsgChannelOpenTry) Reset()

func (*MsgChannelOpenTry) String

func (x *MsgChannelOpenTry) String() string

type MsgChannelOpenTryResponse

type MsgChannelOpenTryResponse struct {
	Version   string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.

func (*MsgChannelOpenTryResponse) Descriptor deprecated

func (*MsgChannelOpenTryResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelOpenTryResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelOpenTryResponse) GetChannelId

func (x *MsgChannelOpenTryResponse) GetChannelId() string

func (*MsgChannelOpenTryResponse) GetVersion

func (x *MsgChannelOpenTryResponse) GetVersion() string

func (*MsgChannelOpenTryResponse) ProtoMessage

func (*MsgChannelOpenTryResponse) ProtoMessage()

func (*MsgChannelOpenTryResponse) ProtoReflect

func (*MsgChannelOpenTryResponse) Reset

func (x *MsgChannelOpenTryResponse) Reset()

func (*MsgChannelOpenTryResponse) String

func (x *MsgChannelOpenTryResponse) String() string

type MsgChannelUpgradeAck

type MsgChannelUpgradeAck struct {
	PortId              string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId           string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	CounterpartyUpgrade *Upgrade   `protobuf:"bytes,3,opt,name=counterparty_upgrade,json=counterpartyUpgrade,proto3" json:"counterparty_upgrade,omitempty"`
	ProofChannel        []byte     `protobuf:"bytes,4,opt,name=proof_channel,json=proofChannel,proto3" json:"proof_channel,omitempty"`
	ProofUpgrade        []byte     `protobuf:"bytes,5,opt,name=proof_upgrade,json=proofUpgrade,proto3" json:"proof_upgrade,omitempty"`
	ProofHeight         *v1.Height `protobuf:"bytes,6,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer              string     `protobuf:"bytes,7,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc

func (*MsgChannelUpgradeAck) Descriptor deprecated

func (*MsgChannelUpgradeAck) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeAck.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeAck) GetChannelId

func (x *MsgChannelUpgradeAck) GetChannelId() string

func (*MsgChannelUpgradeAck) GetCounterpartyUpgrade

func (x *MsgChannelUpgradeAck) GetCounterpartyUpgrade() *Upgrade

func (*MsgChannelUpgradeAck) GetPortId

func (x *MsgChannelUpgradeAck) GetPortId() string

func (*MsgChannelUpgradeAck) GetProofChannel

func (x *MsgChannelUpgradeAck) GetProofChannel() []byte

func (*MsgChannelUpgradeAck) GetProofHeight

func (x *MsgChannelUpgradeAck) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeAck) GetProofUpgrade

func (x *MsgChannelUpgradeAck) GetProofUpgrade() []byte

func (*MsgChannelUpgradeAck) GetSigner

func (x *MsgChannelUpgradeAck) GetSigner() string

func (*MsgChannelUpgradeAck) ProtoMessage

func (*MsgChannelUpgradeAck) ProtoMessage()

func (*MsgChannelUpgradeAck) ProtoReflect

func (x *MsgChannelUpgradeAck) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeAck) Reset

func (x *MsgChannelUpgradeAck) Reset()

func (*MsgChannelUpgradeAck) String

func (x *MsgChannelUpgradeAck) String() string

type MsgChannelUpgradeAckResponse

type MsgChannelUpgradeAckResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type

func (*MsgChannelUpgradeAckResponse) Descriptor deprecated

func (*MsgChannelUpgradeAckResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeAckResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeAckResponse) GetResult

func (*MsgChannelUpgradeAckResponse) ProtoMessage

func (*MsgChannelUpgradeAckResponse) ProtoMessage()

func (*MsgChannelUpgradeAckResponse) ProtoReflect

func (*MsgChannelUpgradeAckResponse) Reset

func (x *MsgChannelUpgradeAckResponse) Reset()

func (*MsgChannelUpgradeAckResponse) String

type MsgChannelUpgradeCancel

type MsgChannelUpgradeCancel struct {
	PortId            string        `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId         string        `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	ErrorReceipt      *ErrorReceipt `protobuf:"bytes,3,opt,name=error_receipt,json=errorReceipt,proto3" json:"error_receipt,omitempty"`
	ProofErrorReceipt []byte        `protobuf:"bytes,4,opt,name=proof_error_receipt,json=proofErrorReceipt,proto3" json:"proof_error_receipt,omitempty"`
	ProofHeight       *v1.Height    `protobuf:"bytes,5,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer            string        `protobuf:"bytes,6,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc

func (*MsgChannelUpgradeCancel) Descriptor deprecated

func (*MsgChannelUpgradeCancel) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeCancel.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeCancel) GetChannelId

func (x *MsgChannelUpgradeCancel) GetChannelId() string

func (*MsgChannelUpgradeCancel) GetErrorReceipt

func (x *MsgChannelUpgradeCancel) GetErrorReceipt() *ErrorReceipt

func (*MsgChannelUpgradeCancel) GetPortId

func (x *MsgChannelUpgradeCancel) GetPortId() string

func (*MsgChannelUpgradeCancel) GetProofErrorReceipt

func (x *MsgChannelUpgradeCancel) GetProofErrorReceipt() []byte

func (*MsgChannelUpgradeCancel) GetProofHeight

func (x *MsgChannelUpgradeCancel) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeCancel) GetSigner

func (x *MsgChannelUpgradeCancel) GetSigner() string

func (*MsgChannelUpgradeCancel) ProtoMessage

func (*MsgChannelUpgradeCancel) ProtoMessage()

func (*MsgChannelUpgradeCancel) ProtoReflect

func (x *MsgChannelUpgradeCancel) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeCancel) Reset

func (x *MsgChannelUpgradeCancel) Reset()

func (*MsgChannelUpgradeCancel) String

func (x *MsgChannelUpgradeCancel) String() string

type MsgChannelUpgradeCancelResponse

type MsgChannelUpgradeCancelResponse struct {
	// contains filtered or unexported fields
}

MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type

func (*MsgChannelUpgradeCancelResponse) Descriptor deprecated

func (*MsgChannelUpgradeCancelResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeCancelResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeCancelResponse) ProtoMessage

func (*MsgChannelUpgradeCancelResponse) ProtoMessage()

func (*MsgChannelUpgradeCancelResponse) ProtoReflect

func (*MsgChannelUpgradeCancelResponse) Reset

func (*MsgChannelUpgradeCancelResponse) String

type MsgChannelUpgradeConfirm

type MsgChannelUpgradeConfirm struct {
	PortId                   string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId                string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	CounterpartyChannelState State      `` /* 167-byte string literal not displayed */
	CounterpartyUpgrade      *Upgrade   `protobuf:"bytes,4,opt,name=counterparty_upgrade,json=counterpartyUpgrade,proto3" json:"counterparty_upgrade,omitempty"`
	ProofChannel             []byte     `protobuf:"bytes,5,opt,name=proof_channel,json=proofChannel,proto3" json:"proof_channel,omitempty"`
	ProofUpgrade             []byte     `protobuf:"bytes,6,opt,name=proof_upgrade,json=proofUpgrade,proto3" json:"proof_upgrade,omitempty"`
	ProofHeight              *v1.Height `protobuf:"bytes,7,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer                   string     `protobuf:"bytes,8,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc

func (*MsgChannelUpgradeConfirm) Descriptor deprecated

func (*MsgChannelUpgradeConfirm) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeConfirm.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeConfirm) GetChannelId

func (x *MsgChannelUpgradeConfirm) GetChannelId() string

func (*MsgChannelUpgradeConfirm) GetCounterpartyChannelState

func (x *MsgChannelUpgradeConfirm) GetCounterpartyChannelState() State

func (*MsgChannelUpgradeConfirm) GetCounterpartyUpgrade

func (x *MsgChannelUpgradeConfirm) GetCounterpartyUpgrade() *Upgrade

func (*MsgChannelUpgradeConfirm) GetPortId

func (x *MsgChannelUpgradeConfirm) GetPortId() string

func (*MsgChannelUpgradeConfirm) GetProofChannel

func (x *MsgChannelUpgradeConfirm) GetProofChannel() []byte

func (*MsgChannelUpgradeConfirm) GetProofHeight

func (x *MsgChannelUpgradeConfirm) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeConfirm) GetProofUpgrade

func (x *MsgChannelUpgradeConfirm) GetProofUpgrade() []byte

func (*MsgChannelUpgradeConfirm) GetSigner

func (x *MsgChannelUpgradeConfirm) GetSigner() string

func (*MsgChannelUpgradeConfirm) ProtoMessage

func (*MsgChannelUpgradeConfirm) ProtoMessage()

func (*MsgChannelUpgradeConfirm) ProtoReflect

func (x *MsgChannelUpgradeConfirm) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeConfirm) Reset

func (x *MsgChannelUpgradeConfirm) Reset()

func (*MsgChannelUpgradeConfirm) String

func (x *MsgChannelUpgradeConfirm) String() string

type MsgChannelUpgradeConfirmResponse

type MsgChannelUpgradeConfirmResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type

func (*MsgChannelUpgradeConfirmResponse) Descriptor deprecated

func (*MsgChannelUpgradeConfirmResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeConfirmResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeConfirmResponse) GetResult

func (*MsgChannelUpgradeConfirmResponse) ProtoMessage

func (*MsgChannelUpgradeConfirmResponse) ProtoMessage()

func (*MsgChannelUpgradeConfirmResponse) ProtoReflect

func (*MsgChannelUpgradeConfirmResponse) Reset

func (*MsgChannelUpgradeConfirmResponse) String

type MsgChannelUpgradeInit

type MsgChannelUpgradeInit struct {
	PortId    string         `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string         `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Fields    *UpgradeFields `protobuf:"bytes,3,opt,name=fields,proto3" json:"fields,omitempty"`
	Signer    string         `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc WARNING: Initializing a channel upgrade in the same block as opening the channel may result in the counterparty being incapable of opening.

func (*MsgChannelUpgradeInit) Descriptor deprecated

func (*MsgChannelUpgradeInit) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeInit.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeInit) GetChannelId

func (x *MsgChannelUpgradeInit) GetChannelId() string

func (*MsgChannelUpgradeInit) GetFields

func (x *MsgChannelUpgradeInit) GetFields() *UpgradeFields

func (*MsgChannelUpgradeInit) GetPortId

func (x *MsgChannelUpgradeInit) GetPortId() string

func (*MsgChannelUpgradeInit) GetSigner

func (x *MsgChannelUpgradeInit) GetSigner() string

func (*MsgChannelUpgradeInit) ProtoMessage

func (*MsgChannelUpgradeInit) ProtoMessage()

func (*MsgChannelUpgradeInit) ProtoReflect

func (x *MsgChannelUpgradeInit) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeInit) Reset

func (x *MsgChannelUpgradeInit) Reset()

func (*MsgChannelUpgradeInit) String

func (x *MsgChannelUpgradeInit) String() string

type MsgChannelUpgradeInitResponse

type MsgChannelUpgradeInitResponse struct {
	Upgrade         *Upgrade `protobuf:"bytes,1,opt,name=upgrade,proto3" json:"upgrade,omitempty"`
	UpgradeSequence uint64   `protobuf:"varint,2,opt,name=upgrade_sequence,json=upgradeSequence,proto3" json:"upgrade_sequence,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type

func (*MsgChannelUpgradeInitResponse) Descriptor deprecated

func (*MsgChannelUpgradeInitResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeInitResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeInitResponse) GetUpgrade

func (x *MsgChannelUpgradeInitResponse) GetUpgrade() *Upgrade

func (*MsgChannelUpgradeInitResponse) GetUpgradeSequence

func (x *MsgChannelUpgradeInitResponse) GetUpgradeSequence() uint64

func (*MsgChannelUpgradeInitResponse) ProtoMessage

func (*MsgChannelUpgradeInitResponse) ProtoMessage()

func (*MsgChannelUpgradeInitResponse) ProtoReflect

func (*MsgChannelUpgradeInitResponse) Reset

func (x *MsgChannelUpgradeInitResponse) Reset()

func (*MsgChannelUpgradeInitResponse) String

type MsgChannelUpgradeOpen

type MsgChannelUpgradeOpen struct {
	PortId                      string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId                   string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	CounterpartyChannelState    State      `` /* 167-byte string literal not displayed */
	CounterpartyUpgradeSequence uint64     `` /* 145-byte string literal not displayed */
	ProofChannel                []byte     `protobuf:"bytes,5,opt,name=proof_channel,json=proofChannel,proto3" json:"proof_channel,omitempty"`
	ProofHeight                 *v1.Height `protobuf:"bytes,6,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer                      string     `protobuf:"bytes,7,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc

func (*MsgChannelUpgradeOpen) Descriptor deprecated

func (*MsgChannelUpgradeOpen) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeOpen.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeOpen) GetChannelId

func (x *MsgChannelUpgradeOpen) GetChannelId() string

func (*MsgChannelUpgradeOpen) GetCounterpartyChannelState

func (x *MsgChannelUpgradeOpen) GetCounterpartyChannelState() State

func (*MsgChannelUpgradeOpen) GetCounterpartyUpgradeSequence

func (x *MsgChannelUpgradeOpen) GetCounterpartyUpgradeSequence() uint64

func (*MsgChannelUpgradeOpen) GetPortId

func (x *MsgChannelUpgradeOpen) GetPortId() string

func (*MsgChannelUpgradeOpen) GetProofChannel

func (x *MsgChannelUpgradeOpen) GetProofChannel() []byte

func (*MsgChannelUpgradeOpen) GetProofHeight

func (x *MsgChannelUpgradeOpen) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeOpen) GetSigner

func (x *MsgChannelUpgradeOpen) GetSigner() string

func (*MsgChannelUpgradeOpen) ProtoMessage

func (*MsgChannelUpgradeOpen) ProtoMessage()

func (*MsgChannelUpgradeOpen) ProtoReflect

func (x *MsgChannelUpgradeOpen) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeOpen) Reset

func (x *MsgChannelUpgradeOpen) Reset()

func (*MsgChannelUpgradeOpen) String

func (x *MsgChannelUpgradeOpen) String() string

type MsgChannelUpgradeOpenResponse

type MsgChannelUpgradeOpenResponse struct {
	// contains filtered or unexported fields
}

MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type

func (*MsgChannelUpgradeOpenResponse) Descriptor deprecated

func (*MsgChannelUpgradeOpenResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeOpenResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeOpenResponse) ProtoMessage

func (*MsgChannelUpgradeOpenResponse) ProtoMessage()

func (*MsgChannelUpgradeOpenResponse) ProtoReflect

func (*MsgChannelUpgradeOpenResponse) Reset

func (x *MsgChannelUpgradeOpenResponse) Reset()

func (*MsgChannelUpgradeOpenResponse) String

type MsgChannelUpgradeTimeout

type MsgChannelUpgradeTimeout struct {
	PortId              string     `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId           string     `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	CounterpartyChannel *Channel   `protobuf:"bytes,3,opt,name=counterparty_channel,json=counterpartyChannel,proto3" json:"counterparty_channel,omitempty"`
	ProofChannel        []byte     `protobuf:"bytes,4,opt,name=proof_channel,json=proofChannel,proto3" json:"proof_channel,omitempty"`
	ProofHeight         *v1.Height `protobuf:"bytes,5,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer              string     `protobuf:"bytes,6,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc

func (*MsgChannelUpgradeTimeout) Descriptor deprecated

func (*MsgChannelUpgradeTimeout) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeTimeout.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeTimeout) GetChannelId

func (x *MsgChannelUpgradeTimeout) GetChannelId() string

func (*MsgChannelUpgradeTimeout) GetCounterpartyChannel

func (x *MsgChannelUpgradeTimeout) GetCounterpartyChannel() *Channel

func (*MsgChannelUpgradeTimeout) GetPortId

func (x *MsgChannelUpgradeTimeout) GetPortId() string

func (*MsgChannelUpgradeTimeout) GetProofChannel

func (x *MsgChannelUpgradeTimeout) GetProofChannel() []byte

func (*MsgChannelUpgradeTimeout) GetProofHeight

func (x *MsgChannelUpgradeTimeout) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeTimeout) GetSigner

func (x *MsgChannelUpgradeTimeout) GetSigner() string

func (*MsgChannelUpgradeTimeout) ProtoMessage

func (*MsgChannelUpgradeTimeout) ProtoMessage()

func (*MsgChannelUpgradeTimeout) ProtoReflect

func (x *MsgChannelUpgradeTimeout) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeTimeout) Reset

func (x *MsgChannelUpgradeTimeout) Reset()

func (*MsgChannelUpgradeTimeout) String

func (x *MsgChannelUpgradeTimeout) String() string

type MsgChannelUpgradeTimeoutResponse

type MsgChannelUpgradeTimeoutResponse struct {
	// contains filtered or unexported fields
}

MsgChannelUpgradeTimeoutRepsonse defines the MsgChannelUpgradeTimeout response type

func (*MsgChannelUpgradeTimeoutResponse) Descriptor deprecated

func (*MsgChannelUpgradeTimeoutResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeTimeoutResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeTimeoutResponse) ProtoMessage

func (*MsgChannelUpgradeTimeoutResponse) ProtoMessage()

func (*MsgChannelUpgradeTimeoutResponse) ProtoReflect

func (*MsgChannelUpgradeTimeoutResponse) Reset

func (*MsgChannelUpgradeTimeoutResponse) String

type MsgChannelUpgradeTry

type MsgChannelUpgradeTry struct {
	PortId                        string         `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId                     string         `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	ProposedUpgradeConnectionHops []string       `` /* 152-byte string literal not displayed */
	CounterpartyUpgradeFields     *UpgradeFields `` /* 138-byte string literal not displayed */
	CounterpartyUpgradeSequence   uint64         `` /* 145-byte string literal not displayed */
	ProofChannel                  []byte         `protobuf:"bytes,6,opt,name=proof_channel,json=proofChannel,proto3" json:"proof_channel,omitempty"`
	ProofUpgrade                  []byte         `protobuf:"bytes,7,opt,name=proof_upgrade,json=proofUpgrade,proto3" json:"proof_upgrade,omitempty"`
	ProofHeight                   *v1.Height     `protobuf:"bytes,8,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer                        string         `protobuf:"bytes,9,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc

func (*MsgChannelUpgradeTry) Descriptor deprecated

func (*MsgChannelUpgradeTry) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeTry.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeTry) GetChannelId

func (x *MsgChannelUpgradeTry) GetChannelId() string

func (*MsgChannelUpgradeTry) GetCounterpartyUpgradeFields

func (x *MsgChannelUpgradeTry) GetCounterpartyUpgradeFields() *UpgradeFields

func (*MsgChannelUpgradeTry) GetCounterpartyUpgradeSequence

func (x *MsgChannelUpgradeTry) GetCounterpartyUpgradeSequence() uint64

func (*MsgChannelUpgradeTry) GetPortId

func (x *MsgChannelUpgradeTry) GetPortId() string

func (*MsgChannelUpgradeTry) GetProofChannel

func (x *MsgChannelUpgradeTry) GetProofChannel() []byte

func (*MsgChannelUpgradeTry) GetProofHeight

func (x *MsgChannelUpgradeTry) GetProofHeight() *v1.Height

func (*MsgChannelUpgradeTry) GetProofUpgrade

func (x *MsgChannelUpgradeTry) GetProofUpgrade() []byte

func (*MsgChannelUpgradeTry) GetProposedUpgradeConnectionHops

func (x *MsgChannelUpgradeTry) GetProposedUpgradeConnectionHops() []string

func (*MsgChannelUpgradeTry) GetSigner

func (x *MsgChannelUpgradeTry) GetSigner() string

func (*MsgChannelUpgradeTry) ProtoMessage

func (*MsgChannelUpgradeTry) ProtoMessage()

func (*MsgChannelUpgradeTry) ProtoReflect

func (x *MsgChannelUpgradeTry) ProtoReflect() protoreflect.Message

func (*MsgChannelUpgradeTry) Reset

func (x *MsgChannelUpgradeTry) Reset()

func (*MsgChannelUpgradeTry) String

func (x *MsgChannelUpgradeTry) String() string

type MsgChannelUpgradeTryResponse

type MsgChannelUpgradeTryResponse struct {
	Upgrade         *Upgrade           `protobuf:"bytes,1,opt,name=upgrade,proto3" json:"upgrade,omitempty"`
	UpgradeSequence uint64             `protobuf:"varint,2,opt,name=upgrade_sequence,json=upgradeSequence,proto3" json:"upgrade_sequence,omitempty"`
	Result          ResponseResultType `protobuf:"varint,3,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type

func (*MsgChannelUpgradeTryResponse) Descriptor deprecated

func (*MsgChannelUpgradeTryResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgChannelUpgradeTryResponse.ProtoReflect.Descriptor instead.

func (*MsgChannelUpgradeTryResponse) GetResult

func (*MsgChannelUpgradeTryResponse) GetUpgrade

func (x *MsgChannelUpgradeTryResponse) GetUpgrade() *Upgrade

func (*MsgChannelUpgradeTryResponse) GetUpgradeSequence

func (x *MsgChannelUpgradeTryResponse) GetUpgradeSequence() uint64

func (*MsgChannelUpgradeTryResponse) ProtoMessage

func (*MsgChannelUpgradeTryResponse) ProtoMessage()

func (*MsgChannelUpgradeTryResponse) ProtoReflect

func (*MsgChannelUpgradeTryResponse) Reset

func (x *MsgChannelUpgradeTryResponse) Reset()

func (*MsgChannelUpgradeTryResponse) String

type MsgPruneAcknowledgements

type MsgPruneAcknowledgements struct {
	PortId    string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Limit     uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	Signer    string `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.

func (*MsgPruneAcknowledgements) Descriptor deprecated

func (*MsgPruneAcknowledgements) Descriptor() ([]byte, []int)

Deprecated: Use MsgPruneAcknowledgements.ProtoReflect.Descriptor instead.

func (*MsgPruneAcknowledgements) GetChannelId

func (x *MsgPruneAcknowledgements) GetChannelId() string

func (*MsgPruneAcknowledgements) GetLimit

func (x *MsgPruneAcknowledgements) GetLimit() uint64

func (*MsgPruneAcknowledgements) GetPortId

func (x *MsgPruneAcknowledgements) GetPortId() string

func (*MsgPruneAcknowledgements) GetSigner

func (x *MsgPruneAcknowledgements) GetSigner() string

func (*MsgPruneAcknowledgements) ProtoMessage

func (*MsgPruneAcknowledgements) ProtoMessage()

func (*MsgPruneAcknowledgements) ProtoReflect

func (x *MsgPruneAcknowledgements) ProtoReflect() protoreflect.Message

func (*MsgPruneAcknowledgements) Reset

func (x *MsgPruneAcknowledgements) Reset()

func (*MsgPruneAcknowledgements) String

func (x *MsgPruneAcknowledgements) String() string

type MsgPruneAcknowledgementsResponse

type MsgPruneAcknowledgementsResponse struct {

	// Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate).
	TotalPrunedSequences uint64 `protobuf:"varint,1,opt,name=total_pruned_sequences,json=totalPrunedSequences,proto3" json:"total_pruned_sequences,omitempty"`
	// Number of sequences left after pruning.
	TotalRemainingSequences uint64 `` /* 133-byte string literal not displayed */
	// contains filtered or unexported fields
}

MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.

func (*MsgPruneAcknowledgementsResponse) Descriptor deprecated

func (*MsgPruneAcknowledgementsResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgPruneAcknowledgementsResponse.ProtoReflect.Descriptor instead.

func (*MsgPruneAcknowledgementsResponse) GetTotalPrunedSequences

func (x *MsgPruneAcknowledgementsResponse) GetTotalPrunedSequences() uint64

func (*MsgPruneAcknowledgementsResponse) GetTotalRemainingSequences

func (x *MsgPruneAcknowledgementsResponse) GetTotalRemainingSequences() uint64

func (*MsgPruneAcknowledgementsResponse) ProtoMessage

func (*MsgPruneAcknowledgementsResponse) ProtoMessage()

func (*MsgPruneAcknowledgementsResponse) ProtoReflect

func (*MsgPruneAcknowledgementsResponse) Reset

func (*MsgPruneAcknowledgementsResponse) String

type MsgRecvPacket

type MsgRecvPacket struct {
	Packet          *Packet    `protobuf:"bytes,1,opt,name=packet,proto3" json:"packet,omitempty"`
	ProofCommitment []byte     `protobuf:"bytes,2,opt,name=proof_commitment,json=proofCommitment,proto3" json:"proof_commitment,omitempty"`
	ProofHeight     *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	Signer          string     `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgRecvPacket receives incoming IBC packet

func (*MsgRecvPacket) Descriptor deprecated

func (*MsgRecvPacket) Descriptor() ([]byte, []int)

Deprecated: Use MsgRecvPacket.ProtoReflect.Descriptor instead.

func (*MsgRecvPacket) GetPacket

func (x *MsgRecvPacket) GetPacket() *Packet

func (*MsgRecvPacket) GetProofCommitment

func (x *MsgRecvPacket) GetProofCommitment() []byte

func (*MsgRecvPacket) GetProofHeight

func (x *MsgRecvPacket) GetProofHeight() *v1.Height

func (*MsgRecvPacket) GetSigner

func (x *MsgRecvPacket) GetSigner() string

func (*MsgRecvPacket) ProtoMessage

func (*MsgRecvPacket) ProtoMessage()

func (*MsgRecvPacket) ProtoReflect

func (x *MsgRecvPacket) ProtoReflect() protoreflect.Message

func (*MsgRecvPacket) Reset

func (x *MsgRecvPacket) Reset()

func (*MsgRecvPacket) String

func (x *MsgRecvPacket) String() string

type MsgRecvPacketResponse

type MsgRecvPacketResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgRecvPacketResponse defines the Msg/RecvPacket response type.

func (*MsgRecvPacketResponse) Descriptor deprecated

func (*MsgRecvPacketResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgRecvPacketResponse.ProtoReflect.Descriptor instead.

func (*MsgRecvPacketResponse) GetResult

func (*MsgRecvPacketResponse) ProtoMessage

func (*MsgRecvPacketResponse) ProtoMessage()

func (*MsgRecvPacketResponse) ProtoReflect

func (x *MsgRecvPacketResponse) ProtoReflect() protoreflect.Message

func (*MsgRecvPacketResponse) Reset

func (x *MsgRecvPacketResponse) Reset()

func (*MsgRecvPacketResponse) String

func (x *MsgRecvPacketResponse) String() string

type MsgTimeout

type MsgTimeout struct {
	Packet           *Packet    `protobuf:"bytes,1,opt,name=packet,proto3" json:"packet,omitempty"`
	ProofUnreceived  []byte     `protobuf:"bytes,2,opt,name=proof_unreceived,json=proofUnreceived,proto3" json:"proof_unreceived,omitempty"`
	ProofHeight      *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	NextSequenceRecv uint64     `protobuf:"varint,4,opt,name=next_sequence_recv,json=nextSequenceRecv,proto3" json:"next_sequence_recv,omitempty"`
	Signer           string     `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgTimeout receives timed-out packet

func (*MsgTimeout) Descriptor deprecated

func (*MsgTimeout) Descriptor() ([]byte, []int)

Deprecated: Use MsgTimeout.ProtoReflect.Descriptor instead.

func (*MsgTimeout) GetNextSequenceRecv

func (x *MsgTimeout) GetNextSequenceRecv() uint64

func (*MsgTimeout) GetPacket

func (x *MsgTimeout) GetPacket() *Packet

func (*MsgTimeout) GetProofHeight

func (x *MsgTimeout) GetProofHeight() *v1.Height

func (*MsgTimeout) GetProofUnreceived

func (x *MsgTimeout) GetProofUnreceived() []byte

func (*MsgTimeout) GetSigner

func (x *MsgTimeout) GetSigner() string

func (*MsgTimeout) ProtoMessage

func (*MsgTimeout) ProtoMessage()

func (*MsgTimeout) ProtoReflect

func (x *MsgTimeout) ProtoReflect() protoreflect.Message

func (*MsgTimeout) Reset

func (x *MsgTimeout) Reset()

func (*MsgTimeout) String

func (x *MsgTimeout) String() string

type MsgTimeoutOnClose

type MsgTimeoutOnClose struct {
	Packet                      *Packet    `protobuf:"bytes,1,opt,name=packet,proto3" json:"packet,omitempty"`
	ProofUnreceived             []byte     `protobuf:"bytes,2,opt,name=proof_unreceived,json=proofUnreceived,proto3" json:"proof_unreceived,omitempty"`
	ProofClose                  []byte     `protobuf:"bytes,3,opt,name=proof_close,json=proofClose,proto3" json:"proof_close,omitempty"`
	ProofHeight                 *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	NextSequenceRecv            uint64     `protobuf:"varint,5,opt,name=next_sequence_recv,json=nextSequenceRecv,proto3" json:"next_sequence_recv,omitempty"`
	Signer                      string     `protobuf:"bytes,6,opt,name=signer,proto3" json:"signer,omitempty"`
	CounterpartyUpgradeSequence uint64     `` /* 145-byte string literal not displayed */
	// contains filtered or unexported fields
}

MsgTimeoutOnClose timed-out packet upon counterparty channel closure.

func (*MsgTimeoutOnClose) Descriptor deprecated

func (*MsgTimeoutOnClose) Descriptor() ([]byte, []int)

Deprecated: Use MsgTimeoutOnClose.ProtoReflect.Descriptor instead.

func (*MsgTimeoutOnClose) GetCounterpartyUpgradeSequence

func (x *MsgTimeoutOnClose) GetCounterpartyUpgradeSequence() uint64

func (*MsgTimeoutOnClose) GetNextSequenceRecv

func (x *MsgTimeoutOnClose) GetNextSequenceRecv() uint64

func (*MsgTimeoutOnClose) GetPacket

func (x *MsgTimeoutOnClose) GetPacket() *Packet

func (*MsgTimeoutOnClose) GetProofClose

func (x *MsgTimeoutOnClose) GetProofClose() []byte

func (*MsgTimeoutOnClose) GetProofHeight

func (x *MsgTimeoutOnClose) GetProofHeight() *v1.Height

func (*MsgTimeoutOnClose) GetProofUnreceived

func (x *MsgTimeoutOnClose) GetProofUnreceived() []byte

func (*MsgTimeoutOnClose) GetSigner

func (x *MsgTimeoutOnClose) GetSigner() string

func (*MsgTimeoutOnClose) ProtoMessage

func (*MsgTimeoutOnClose) ProtoMessage()

func (*MsgTimeoutOnClose) ProtoReflect

func (x *MsgTimeoutOnClose) ProtoReflect() protoreflect.Message

func (*MsgTimeoutOnClose) Reset

func (x *MsgTimeoutOnClose) Reset()

func (*MsgTimeoutOnClose) String

func (x *MsgTimeoutOnClose) String() string

type MsgTimeoutOnCloseResponse

type MsgTimeoutOnCloseResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.

func (*MsgTimeoutOnCloseResponse) Descriptor deprecated

func (*MsgTimeoutOnCloseResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgTimeoutOnCloseResponse.ProtoReflect.Descriptor instead.

func (*MsgTimeoutOnCloseResponse) GetResult

func (*MsgTimeoutOnCloseResponse) ProtoMessage

func (*MsgTimeoutOnCloseResponse) ProtoMessage()

func (*MsgTimeoutOnCloseResponse) ProtoReflect

func (*MsgTimeoutOnCloseResponse) Reset

func (x *MsgTimeoutOnCloseResponse) Reset()

func (*MsgTimeoutOnCloseResponse) String

func (x *MsgTimeoutOnCloseResponse) String() string

type MsgTimeoutResponse

type MsgTimeoutResponse struct {
	Result ResponseResultType `protobuf:"varint,1,opt,name=result,proto3,enum=ibc.core.channel.v1.ResponseResultType" json:"result,omitempty"`
	// contains filtered or unexported fields
}

MsgTimeoutResponse defines the Msg/Timeout response type.

func (*MsgTimeoutResponse) Descriptor deprecated

func (*MsgTimeoutResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgTimeoutResponse.ProtoReflect.Descriptor instead.

func (*MsgTimeoutResponse) GetResult

func (x *MsgTimeoutResponse) GetResult() ResponseResultType

func (*MsgTimeoutResponse) ProtoMessage

func (*MsgTimeoutResponse) ProtoMessage()

func (*MsgTimeoutResponse) ProtoReflect

func (x *MsgTimeoutResponse) ProtoReflect() protoreflect.Message

func (*MsgTimeoutResponse) Reset

func (x *MsgTimeoutResponse) Reset()

func (*MsgTimeoutResponse) String

func (x *MsgTimeoutResponse) String() string

type MsgUpdateParams

type MsgUpdateParams struct {

	// authority is the address that controls the module (defaults to x/gov unless overwritten).
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// params defines the channel parameters to update.
	//
	// NOTE: All parameters must be supplied.
	Params *Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

MsgUpdateParams is the MsgUpdateParams request type.

func (*MsgUpdateParams) Descriptor deprecated

func (*MsgUpdateParams) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateParams.ProtoReflect.Descriptor instead.

func (*MsgUpdateParams) GetAuthority

func (x *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (x *MsgUpdateParams) GetParams() *Params

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) ProtoReflect

func (x *MsgUpdateParams) ProtoReflect() protoreflect.Message

func (*MsgUpdateParams) Reset

func (x *MsgUpdateParams) Reset()

func (*MsgUpdateParams) String

func (x *MsgUpdateParams) String() string

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
	// contains filtered or unexported fields
}

MsgUpdateParamsResponse defines the MsgUpdateParams response type.

func (*MsgUpdateParamsResponse) Descriptor deprecated

func (*MsgUpdateParamsResponse) Descriptor() ([]byte, []int)

Deprecated: Use MsgUpdateParamsResponse.ProtoReflect.Descriptor instead.

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) ProtoReflect

func (x *MsgUpdateParamsResponse) ProtoReflect() protoreflect.Message

func (*MsgUpdateParamsResponse) Reset

func (x *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) String

func (x *MsgUpdateParamsResponse) String() string

type Order

type Order int32

Order defines if a channel is ORDERED or UNORDERED

const (
	// zero-value for channel ordering
	Order_ORDER_NONE_UNSPECIFIED Order = 0
	// packets can be delivered in any order, which may differ from the order in
	// which they were sent.
	Order_ORDER_UNORDERED Order = 1
	// packets are delivered exactly in the order which they were sent
	Order_ORDER_ORDERED Order = 2
)

func (Order) Descriptor

func (Order) Descriptor() protoreflect.EnumDescriptor

func (Order) Enum

func (x Order) Enum() *Order

func (Order) EnumDescriptor deprecated

func (Order) EnumDescriptor() ([]byte, []int)

Deprecated: Use Order.Descriptor instead.

func (Order) Number

func (x Order) Number() protoreflect.EnumNumber

func (Order) String

func (x Order) String() string

func (Order) Type

func (Order) Type() protoreflect.EnumType

type Packet

type Packet struct {

	// number corresponds to the order of sends and receives, where a Packet
	// with an earlier sequence number must be sent and received before a Packet
	// with a later sequence number.
	Sequence uint64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// identifies the port on the sending chain.
	SourcePort string `protobuf:"bytes,2,opt,name=source_port,json=sourcePort,proto3" json:"source_port,omitempty"`
	// identifies the channel end on the sending chain.
	SourceChannel string `protobuf:"bytes,3,opt,name=source_channel,json=sourceChannel,proto3" json:"source_channel,omitempty"`
	// identifies the port on the receiving chain.
	DestinationPort string `protobuf:"bytes,4,opt,name=destination_port,json=destinationPort,proto3" json:"destination_port,omitempty"`
	// identifies the channel end on the receiving chain.
	DestinationChannel string `protobuf:"bytes,5,opt,name=destination_channel,json=destinationChannel,proto3" json:"destination_channel,omitempty"`
	// actual opaque bytes transferred directly to the application module
	Data []byte `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
	// block height after which the packet times out
	TimeoutHeight *v1.Height `protobuf:"bytes,7,opt,name=timeout_height,json=timeoutHeight,proto3" json:"timeout_height,omitempty"`
	// block timestamp (in nanoseconds) after which the packet times out
	TimeoutTimestamp uint64 `protobuf:"varint,8,opt,name=timeout_timestamp,json=timeoutTimestamp,proto3" json:"timeout_timestamp,omitempty"`
	// contains filtered or unexported fields
}

Packet defines a type that carries data across different chains through IBC

func (*Packet) Descriptor deprecated

func (*Packet) Descriptor() ([]byte, []int)

Deprecated: Use Packet.ProtoReflect.Descriptor instead.

func (*Packet) GetData

func (x *Packet) GetData() []byte

func (*Packet) GetDestinationChannel

func (x *Packet) GetDestinationChannel() string

func (*Packet) GetDestinationPort

func (x *Packet) GetDestinationPort() string

func (*Packet) GetSequence

func (x *Packet) GetSequence() uint64

func (*Packet) GetSourceChannel

func (x *Packet) GetSourceChannel() string

func (*Packet) GetSourcePort

func (x *Packet) GetSourcePort() string

func (*Packet) GetTimeoutHeight

func (x *Packet) GetTimeoutHeight() *v1.Height

func (*Packet) GetTimeoutTimestamp

func (x *Packet) GetTimeoutTimestamp() uint64

func (*Packet) ProtoMessage

func (*Packet) ProtoMessage()

func (*Packet) ProtoReflect

func (x *Packet) ProtoReflect() protoreflect.Message

func (*Packet) Reset

func (x *Packet) Reset()

func (*Packet) String

func (x *Packet) String() string

type PacketId

type PacketId struct {

	// channel port identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// packet sequence
	Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// contains filtered or unexported fields
}

PacketId is an identifier for a unique Packet Source chains refer to packets by source port/channel Destination chains refer to packets by destination port/channel

func (*PacketId) Descriptor deprecated

func (*PacketId) Descriptor() ([]byte, []int)

Deprecated: Use PacketId.ProtoReflect.Descriptor instead.

func (*PacketId) GetChannelId

func (x *PacketId) GetChannelId() string

func (*PacketId) GetPortId

func (x *PacketId) GetPortId() string

func (*PacketId) GetSequence

func (x *PacketId) GetSequence() uint64

func (*PacketId) ProtoMessage

func (*PacketId) ProtoMessage()

func (*PacketId) ProtoReflect

func (x *PacketId) ProtoReflect() protoreflect.Message

func (*PacketId) Reset

func (x *PacketId) Reset()

func (*PacketId) String

func (x *PacketId) String() string

type PacketSequence

type PacketSequence struct {
	PortId    string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	Sequence  uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// contains filtered or unexported fields
}

PacketSequence defines the genesis type necessary to retrieve and store next send and receive sequences.

func (*PacketSequence) Descriptor deprecated

func (*PacketSequence) Descriptor() ([]byte, []int)

Deprecated: Use PacketSequence.ProtoReflect.Descriptor instead.

func (*PacketSequence) GetChannelId

func (x *PacketSequence) GetChannelId() string

func (*PacketSequence) GetPortId

func (x *PacketSequence) GetPortId() string

func (*PacketSequence) GetSequence

func (x *PacketSequence) GetSequence() uint64

func (*PacketSequence) ProtoMessage

func (*PacketSequence) ProtoMessage()

func (*PacketSequence) ProtoReflect

func (x *PacketSequence) ProtoReflect() protoreflect.Message

func (*PacketSequence) Reset

func (x *PacketSequence) Reset()

func (*PacketSequence) String

func (x *PacketSequence) String() string

type PacketState

type PacketState struct {

	// channel port identifier.
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier.
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// packet sequence.
	Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// embedded data that represents packet state.
	Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

PacketState defines the generic type necessary to retrieve and store packet commitments, acknowledgements, and receipts. Caller is responsible for knowing the context necessary to interpret this state as a commitment, acknowledgement, or a receipt.

func (*PacketState) Descriptor deprecated

func (*PacketState) Descriptor() ([]byte, []int)

Deprecated: Use PacketState.ProtoReflect.Descriptor instead.

func (*PacketState) GetChannelId

func (x *PacketState) GetChannelId() string

func (*PacketState) GetData

func (x *PacketState) GetData() []byte

func (*PacketState) GetPortId

func (x *PacketState) GetPortId() string

func (*PacketState) GetSequence

func (x *PacketState) GetSequence() uint64

func (*PacketState) ProtoMessage

func (*PacketState) ProtoMessage()

func (*PacketState) ProtoReflect

func (x *PacketState) ProtoReflect() protoreflect.Message

func (*PacketState) Reset

func (x *PacketState) Reset()

func (*PacketState) String

func (x *PacketState) String() string

type Params

type Params struct {

	// the relative timeout after which channel upgrades will time out.
	UpgradeTimeout *Timeout `protobuf:"bytes,1,opt,name=upgrade_timeout,json=upgradeTimeout,proto3" json:"upgrade_timeout,omitempty"`
	// contains filtered or unexported fields
}

Params defines the set of IBC channel parameters.

func (*Params) Descriptor deprecated

func (*Params) Descriptor() ([]byte, []int)

Deprecated: Use Params.ProtoReflect.Descriptor instead.

func (*Params) GetUpgradeTimeout

func (x *Params) GetUpgradeTimeout() *Timeout

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) ProtoReflect

func (x *Params) ProtoReflect() protoreflect.Message

func (*Params) Reset

func (x *Params) Reset()

func (*Params) String

func (x *Params) String() string

type QueryChannelClientStateRequest

type QueryChannelClientStateRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelClientStateRequest is the request type for the Query/ClientState RPC method

func (*QueryChannelClientStateRequest) Descriptor deprecated

func (*QueryChannelClientStateRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelClientStateRequest.ProtoReflect.Descriptor instead.

func (*QueryChannelClientStateRequest) GetChannelId

func (x *QueryChannelClientStateRequest) GetChannelId() string

func (*QueryChannelClientStateRequest) GetPortId

func (x *QueryChannelClientStateRequest) GetPortId() string

func (*QueryChannelClientStateRequest) ProtoMessage

func (*QueryChannelClientStateRequest) ProtoMessage()

func (*QueryChannelClientStateRequest) ProtoReflect

func (*QueryChannelClientStateRequest) Reset

func (x *QueryChannelClientStateRequest) Reset()

func (*QueryChannelClientStateRequest) String

type QueryChannelClientStateResponse

type QueryChannelClientStateResponse struct {

	// client state associated with the channel
	IdentifiedClientState *v1.IdentifiedClientState `` /* 126-byte string literal not displayed */
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelClientStateResponse is the Response type for the Query/QueryChannelClientState RPC method

func (*QueryChannelClientStateResponse) Descriptor deprecated

func (*QueryChannelClientStateResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelClientStateResponse.ProtoReflect.Descriptor instead.

func (*QueryChannelClientStateResponse) GetIdentifiedClientState

func (x *QueryChannelClientStateResponse) GetIdentifiedClientState() *v1.IdentifiedClientState

func (*QueryChannelClientStateResponse) GetProof

func (x *QueryChannelClientStateResponse) GetProof() []byte

func (*QueryChannelClientStateResponse) GetProofHeight

func (x *QueryChannelClientStateResponse) GetProofHeight() *v1.Height

func (*QueryChannelClientStateResponse) ProtoMessage

func (*QueryChannelClientStateResponse) ProtoMessage()

func (*QueryChannelClientStateResponse) ProtoReflect

func (*QueryChannelClientStateResponse) Reset

func (*QueryChannelClientStateResponse) String

type QueryChannelConsensusStateRequest

type QueryChannelConsensusStateRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// revision number of the consensus state
	RevisionNumber uint64 `protobuf:"varint,3,opt,name=revision_number,json=revisionNumber,proto3" json:"revision_number,omitempty"`
	// revision height of the consensus state
	RevisionHeight uint64 `protobuf:"varint,4,opt,name=revision_height,json=revisionHeight,proto3" json:"revision_height,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelConsensusStateRequest is the request type for the Query/ConsensusState RPC method

func (*QueryChannelConsensusStateRequest) Descriptor deprecated

func (*QueryChannelConsensusStateRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelConsensusStateRequest.ProtoReflect.Descriptor instead.

func (*QueryChannelConsensusStateRequest) GetChannelId

func (x *QueryChannelConsensusStateRequest) GetChannelId() string

func (*QueryChannelConsensusStateRequest) GetPortId

func (*QueryChannelConsensusStateRequest) GetRevisionHeight

func (x *QueryChannelConsensusStateRequest) GetRevisionHeight() uint64

func (*QueryChannelConsensusStateRequest) GetRevisionNumber

func (x *QueryChannelConsensusStateRequest) GetRevisionNumber() uint64

func (*QueryChannelConsensusStateRequest) ProtoMessage

func (*QueryChannelConsensusStateRequest) ProtoMessage()

func (*QueryChannelConsensusStateRequest) ProtoReflect

func (*QueryChannelConsensusStateRequest) Reset

func (*QueryChannelConsensusStateRequest) String

type QueryChannelConsensusStateResponse

type QueryChannelConsensusStateResponse struct {

	// consensus state associated with the channel
	ConsensusState *anypb.Any `protobuf:"bytes,1,opt,name=consensus_state,json=consensusState,proto3" json:"consensus_state,omitempty"`
	// client ID associated with the consensus state
	ClientId string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,3,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelClientStateResponse is the Response type for the Query/QueryChannelClientState RPC method

func (*QueryChannelConsensusStateResponse) Descriptor deprecated

func (*QueryChannelConsensusStateResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelConsensusStateResponse.ProtoReflect.Descriptor instead.

func (*QueryChannelConsensusStateResponse) GetClientId

func (x *QueryChannelConsensusStateResponse) GetClientId() string

func (*QueryChannelConsensusStateResponse) GetConsensusState

func (x *QueryChannelConsensusStateResponse) GetConsensusState() *anypb.Any

func (*QueryChannelConsensusStateResponse) GetProof

func (x *QueryChannelConsensusStateResponse) GetProof() []byte

func (*QueryChannelConsensusStateResponse) GetProofHeight

func (x *QueryChannelConsensusStateResponse) GetProofHeight() *v1.Height

func (*QueryChannelConsensusStateResponse) ProtoMessage

func (*QueryChannelConsensusStateResponse) ProtoMessage()

func (*QueryChannelConsensusStateResponse) ProtoReflect

func (*QueryChannelConsensusStateResponse) Reset

func (*QueryChannelConsensusStateResponse) String

type QueryChannelParamsRequest

type QueryChannelParamsRequest struct {
	// contains filtered or unexported fields
}

QueryChannelParamsRequest is the request type for the Query/ChannelParams RPC method.

func (*QueryChannelParamsRequest) Descriptor deprecated

func (*QueryChannelParamsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelParamsRequest.ProtoReflect.Descriptor instead.

func (*QueryChannelParamsRequest) ProtoMessage

func (*QueryChannelParamsRequest) ProtoMessage()

func (*QueryChannelParamsRequest) ProtoReflect

func (*QueryChannelParamsRequest) Reset

func (x *QueryChannelParamsRequest) Reset()

func (*QueryChannelParamsRequest) String

func (x *QueryChannelParamsRequest) String() string

type QueryChannelParamsResponse

type QueryChannelParamsResponse struct {

	// params defines the parameters of the module.
	Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelParamsResponse is the response type for the Query/ChannelParams RPC method.

func (*QueryChannelParamsResponse) Descriptor deprecated

func (*QueryChannelParamsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelParamsResponse.ProtoReflect.Descriptor instead.

func (*QueryChannelParamsResponse) GetParams

func (x *QueryChannelParamsResponse) GetParams() *Params

func (*QueryChannelParamsResponse) ProtoMessage

func (*QueryChannelParamsResponse) ProtoMessage()

func (*QueryChannelParamsResponse) ProtoReflect

func (*QueryChannelParamsResponse) Reset

func (x *QueryChannelParamsResponse) Reset()

func (*QueryChannelParamsResponse) String

func (x *QueryChannelParamsResponse) String() string

type QueryChannelRequest

type QueryChannelRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelRequest is the request type for the Query/Channel RPC method

func (*QueryChannelRequest) Descriptor deprecated

func (*QueryChannelRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelRequest.ProtoReflect.Descriptor instead.

func (*QueryChannelRequest) GetChannelId

func (x *QueryChannelRequest) GetChannelId() string

func (*QueryChannelRequest) GetPortId

func (x *QueryChannelRequest) GetPortId() string

func (*QueryChannelRequest) ProtoMessage

func (*QueryChannelRequest) ProtoMessage()

func (*QueryChannelRequest) ProtoReflect

func (x *QueryChannelRequest) ProtoReflect() protoreflect.Message

func (*QueryChannelRequest) Reset

func (x *QueryChannelRequest) Reset()

func (*QueryChannelRequest) String

func (x *QueryChannelRequest) String() string

type QueryChannelResponse

type QueryChannelResponse struct {

	// channel associated with the request identifiers
	Channel *Channel `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelResponse is the response type for the Query/Channel RPC method. Besides the Channel end, it includes a proof and the height from which the proof was retrieved.

func (*QueryChannelResponse) Descriptor deprecated

func (*QueryChannelResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelResponse.ProtoReflect.Descriptor instead.

func (*QueryChannelResponse) GetChannel

func (x *QueryChannelResponse) GetChannel() *Channel

func (*QueryChannelResponse) GetProof

func (x *QueryChannelResponse) GetProof() []byte

func (*QueryChannelResponse) GetProofHeight

func (x *QueryChannelResponse) GetProofHeight() *v1.Height

func (*QueryChannelResponse) ProtoMessage

func (*QueryChannelResponse) ProtoMessage()

func (*QueryChannelResponse) ProtoReflect

func (x *QueryChannelResponse) ProtoReflect() protoreflect.Message

func (*QueryChannelResponse) Reset

func (x *QueryChannelResponse) Reset()

func (*QueryChannelResponse) String

func (x *QueryChannelResponse) String() string

type QueryChannelsRequest

type QueryChannelsRequest struct {

	// pagination request
	Pagination *v1beta1.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelsRequest is the request type for the Query/Channels RPC method

func (*QueryChannelsRequest) Descriptor deprecated

func (*QueryChannelsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelsRequest.ProtoReflect.Descriptor instead.

func (*QueryChannelsRequest) GetPagination

func (x *QueryChannelsRequest) GetPagination() *v1beta1.PageRequest

func (*QueryChannelsRequest) ProtoMessage

func (*QueryChannelsRequest) ProtoMessage()

func (*QueryChannelsRequest) ProtoReflect

func (x *QueryChannelsRequest) ProtoReflect() protoreflect.Message

func (*QueryChannelsRequest) Reset

func (x *QueryChannelsRequest) Reset()

func (*QueryChannelsRequest) String

func (x *QueryChannelsRequest) String() string

type QueryChannelsResponse

type QueryChannelsResponse struct {

	// list of stored channels of the chain.
	Channels []*IdentifiedChannel `protobuf:"bytes,1,rep,name=channels,proto3" json:"channels,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,3,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryChannelsResponse is the response type for the Query/Channels RPC method.

func (*QueryChannelsResponse) Descriptor deprecated

func (*QueryChannelsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryChannelsResponse.ProtoReflect.Descriptor instead.

func (*QueryChannelsResponse) GetChannels

func (x *QueryChannelsResponse) GetChannels() []*IdentifiedChannel

func (*QueryChannelsResponse) GetHeight

func (x *QueryChannelsResponse) GetHeight() *v1.Height

func (*QueryChannelsResponse) GetPagination

func (x *QueryChannelsResponse) GetPagination() *v1beta1.PageResponse

func (*QueryChannelsResponse) ProtoMessage

func (*QueryChannelsResponse) ProtoMessage()

func (*QueryChannelsResponse) ProtoReflect

func (x *QueryChannelsResponse) ProtoReflect() protoreflect.Message

func (*QueryChannelsResponse) Reset

func (x *QueryChannelsResponse) Reset()

func (*QueryChannelsResponse) String

func (x *QueryChannelsResponse) String() string

type QueryConnectionChannelsRequest

type QueryConnectionChannelsRequest struct {

	// connection unique identifier
	Connection string `protobuf:"bytes,1,opt,name=connection,proto3" json:"connection,omitempty"`
	// pagination request
	Pagination *v1beta1.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryConnectionChannelsRequest is the request type for the Query/QueryConnectionChannels RPC method

func (*QueryConnectionChannelsRequest) Descriptor deprecated

func (*QueryConnectionChannelsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryConnectionChannelsRequest.ProtoReflect.Descriptor instead.

func (*QueryConnectionChannelsRequest) GetConnection

func (x *QueryConnectionChannelsRequest) GetConnection() string

func (*QueryConnectionChannelsRequest) GetPagination

func (*QueryConnectionChannelsRequest) ProtoMessage

func (*QueryConnectionChannelsRequest) ProtoMessage()

func (*QueryConnectionChannelsRequest) ProtoReflect

func (*QueryConnectionChannelsRequest) Reset

func (x *QueryConnectionChannelsRequest) Reset()

func (*QueryConnectionChannelsRequest) String

type QueryConnectionChannelsResponse

type QueryConnectionChannelsResponse struct {

	// list of channels associated with a connection.
	Channels []*IdentifiedChannel `protobuf:"bytes,1,rep,name=channels,proto3" json:"channels,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,3,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryConnectionChannelsResponse is the Response type for the Query/QueryConnectionChannels RPC method

func (*QueryConnectionChannelsResponse) Descriptor deprecated

func (*QueryConnectionChannelsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryConnectionChannelsResponse.ProtoReflect.Descriptor instead.

func (*QueryConnectionChannelsResponse) GetChannels

func (*QueryConnectionChannelsResponse) GetHeight

func (x *QueryConnectionChannelsResponse) GetHeight() *v1.Height

func (*QueryConnectionChannelsResponse) GetPagination

func (*QueryConnectionChannelsResponse) ProtoMessage

func (*QueryConnectionChannelsResponse) ProtoMessage()

func (*QueryConnectionChannelsResponse) ProtoReflect

func (*QueryConnectionChannelsResponse) Reset

func (*QueryConnectionChannelsResponse) String

type QueryNextSequenceReceiveRequest

type QueryNextSequenceReceiveRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryNextSequenceReceiveRequest is the request type for the Query/QueryNextSequenceReceiveRequest RPC method

func (*QueryNextSequenceReceiveRequest) Descriptor deprecated

func (*QueryNextSequenceReceiveRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryNextSequenceReceiveRequest.ProtoReflect.Descriptor instead.

func (*QueryNextSequenceReceiveRequest) GetChannelId

func (x *QueryNextSequenceReceiveRequest) GetChannelId() string

func (*QueryNextSequenceReceiveRequest) GetPortId

func (x *QueryNextSequenceReceiveRequest) GetPortId() string

func (*QueryNextSequenceReceiveRequest) ProtoMessage

func (*QueryNextSequenceReceiveRequest) ProtoMessage()

func (*QueryNextSequenceReceiveRequest) ProtoReflect

func (*QueryNextSequenceReceiveRequest) Reset

func (*QueryNextSequenceReceiveRequest) String

type QueryNextSequenceReceiveResponse

type QueryNextSequenceReceiveResponse struct {

	// next sequence receive number
	NextSequenceReceive uint64 `protobuf:"varint,1,opt,name=next_sequence_receive,json=nextSequenceReceive,proto3" json:"next_sequence_receive,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QuerySequenceResponse is the response type for the Query/QueryNextSequenceReceiveResponse RPC method

func (*QueryNextSequenceReceiveResponse) Descriptor deprecated

func (*QueryNextSequenceReceiveResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryNextSequenceReceiveResponse.ProtoReflect.Descriptor instead.

func (*QueryNextSequenceReceiveResponse) GetNextSequenceReceive

func (x *QueryNextSequenceReceiveResponse) GetNextSequenceReceive() uint64

func (*QueryNextSequenceReceiveResponse) GetProof

func (x *QueryNextSequenceReceiveResponse) GetProof() []byte

func (*QueryNextSequenceReceiveResponse) GetProofHeight

func (x *QueryNextSequenceReceiveResponse) GetProofHeight() *v1.Height

func (*QueryNextSequenceReceiveResponse) ProtoMessage

func (*QueryNextSequenceReceiveResponse) ProtoMessage()

func (*QueryNextSequenceReceiveResponse) ProtoReflect

func (*QueryNextSequenceReceiveResponse) Reset

func (*QueryNextSequenceReceiveResponse) String

type QueryNextSequenceSendRequest

type QueryNextSequenceSendRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryNextSequenceSendRequest is the request type for the Query/QueryNextSequenceSend RPC method

func (*QueryNextSequenceSendRequest) Descriptor deprecated

func (*QueryNextSequenceSendRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryNextSequenceSendRequest.ProtoReflect.Descriptor instead.

func (*QueryNextSequenceSendRequest) GetChannelId

func (x *QueryNextSequenceSendRequest) GetChannelId() string

func (*QueryNextSequenceSendRequest) GetPortId

func (x *QueryNextSequenceSendRequest) GetPortId() string

func (*QueryNextSequenceSendRequest) ProtoMessage

func (*QueryNextSequenceSendRequest) ProtoMessage()

func (*QueryNextSequenceSendRequest) ProtoReflect

func (*QueryNextSequenceSendRequest) Reset

func (x *QueryNextSequenceSendRequest) Reset()

func (*QueryNextSequenceSendRequest) String

type QueryNextSequenceSendResponse

type QueryNextSequenceSendResponse struct {

	// next sequence send number
	NextSequenceSend uint64 `protobuf:"varint,1,opt,name=next_sequence_send,json=nextSequenceSend,proto3" json:"next_sequence_send,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryNextSequenceSendResponse is the request type for the Query/QueryNextSequenceSend RPC method

func (*QueryNextSequenceSendResponse) Descriptor deprecated

func (*QueryNextSequenceSendResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryNextSequenceSendResponse.ProtoReflect.Descriptor instead.

func (*QueryNextSequenceSendResponse) GetNextSequenceSend

func (x *QueryNextSequenceSendResponse) GetNextSequenceSend() uint64

func (*QueryNextSequenceSendResponse) GetProof

func (x *QueryNextSequenceSendResponse) GetProof() []byte

func (*QueryNextSequenceSendResponse) GetProofHeight

func (x *QueryNextSequenceSendResponse) GetProofHeight() *v1.Height

func (*QueryNextSequenceSendResponse) ProtoMessage

func (*QueryNextSequenceSendResponse) ProtoMessage()

func (*QueryNextSequenceSendResponse) ProtoReflect

func (*QueryNextSequenceSendResponse) Reset

func (x *QueryNextSequenceSendResponse) Reset()

func (*QueryNextSequenceSendResponse) String

type QueryPacketAcknowledgementRequest

type QueryPacketAcknowledgementRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// packet sequence
	Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketAcknowledgementRequest is the request type for the Query/PacketAcknowledgement RPC method

func (*QueryPacketAcknowledgementRequest) Descriptor deprecated

func (*QueryPacketAcknowledgementRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketAcknowledgementRequest.ProtoReflect.Descriptor instead.

func (*QueryPacketAcknowledgementRequest) GetChannelId

func (x *QueryPacketAcknowledgementRequest) GetChannelId() string

func (*QueryPacketAcknowledgementRequest) GetPortId

func (*QueryPacketAcknowledgementRequest) GetSequence

func (x *QueryPacketAcknowledgementRequest) GetSequence() uint64

func (*QueryPacketAcknowledgementRequest) ProtoMessage

func (*QueryPacketAcknowledgementRequest) ProtoMessage()

func (*QueryPacketAcknowledgementRequest) ProtoReflect

func (*QueryPacketAcknowledgementRequest) Reset

func (*QueryPacketAcknowledgementRequest) String

type QueryPacketAcknowledgementResponse

type QueryPacketAcknowledgementResponse struct {

	// packet associated with the request fields
	Acknowledgement []byte `protobuf:"bytes,1,opt,name=acknowledgement,proto3" json:"acknowledgement,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketAcknowledgementResponse defines the client query response for a packet which also includes a proof and the height from which the proof was retrieved

func (*QueryPacketAcknowledgementResponse) Descriptor deprecated

func (*QueryPacketAcknowledgementResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketAcknowledgementResponse.ProtoReflect.Descriptor instead.

func (*QueryPacketAcknowledgementResponse) GetAcknowledgement

func (x *QueryPacketAcknowledgementResponse) GetAcknowledgement() []byte

func (*QueryPacketAcknowledgementResponse) GetProof

func (x *QueryPacketAcknowledgementResponse) GetProof() []byte

func (*QueryPacketAcknowledgementResponse) GetProofHeight

func (x *QueryPacketAcknowledgementResponse) GetProofHeight() *v1.Height

func (*QueryPacketAcknowledgementResponse) ProtoMessage

func (*QueryPacketAcknowledgementResponse) ProtoMessage()

func (*QueryPacketAcknowledgementResponse) ProtoReflect

func (*QueryPacketAcknowledgementResponse) Reset

func (*QueryPacketAcknowledgementResponse) String

type QueryPacketAcknowledgementsRequest

type QueryPacketAcknowledgementsRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// pagination request
	Pagination *v1beta1.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// list of packet sequences
	PacketCommitmentSequences []uint64 `` /* 146-byte string literal not displayed */
	// contains filtered or unexported fields
}

QueryPacketAcknowledgementsRequest is the request type for the Query/QueryPacketCommitments RPC method

func (*QueryPacketAcknowledgementsRequest) Descriptor deprecated

func (*QueryPacketAcknowledgementsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketAcknowledgementsRequest.ProtoReflect.Descriptor instead.

func (*QueryPacketAcknowledgementsRequest) GetChannelId

func (x *QueryPacketAcknowledgementsRequest) GetChannelId() string

func (*QueryPacketAcknowledgementsRequest) GetPacketCommitmentSequences

func (x *QueryPacketAcknowledgementsRequest) GetPacketCommitmentSequences() []uint64

func (*QueryPacketAcknowledgementsRequest) GetPagination

func (*QueryPacketAcknowledgementsRequest) GetPortId

func (*QueryPacketAcknowledgementsRequest) ProtoMessage

func (*QueryPacketAcknowledgementsRequest) ProtoMessage()

func (*QueryPacketAcknowledgementsRequest) ProtoReflect

func (*QueryPacketAcknowledgementsRequest) Reset

func (*QueryPacketAcknowledgementsRequest) String

type QueryPacketAcknowledgementsResponse

type QueryPacketAcknowledgementsResponse struct {
	Acknowledgements []*PacketState `protobuf:"bytes,1,rep,name=acknowledgements,proto3" json:"acknowledgements,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,3,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketAcknowledgemetsResponse is the request type for the Query/QueryPacketAcknowledgements RPC method

func (*QueryPacketAcknowledgementsResponse) Descriptor deprecated

func (*QueryPacketAcknowledgementsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketAcknowledgementsResponse.ProtoReflect.Descriptor instead.

func (*QueryPacketAcknowledgementsResponse) GetAcknowledgements

func (x *QueryPacketAcknowledgementsResponse) GetAcknowledgements() []*PacketState

func (*QueryPacketAcknowledgementsResponse) GetHeight

func (*QueryPacketAcknowledgementsResponse) GetPagination

func (*QueryPacketAcknowledgementsResponse) ProtoMessage

func (*QueryPacketAcknowledgementsResponse) ProtoMessage()

func (*QueryPacketAcknowledgementsResponse) ProtoReflect

func (*QueryPacketAcknowledgementsResponse) Reset

func (*QueryPacketAcknowledgementsResponse) String

type QueryPacketCommitmentRequest

type QueryPacketCommitmentRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// packet sequence
	Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketCommitmentRequest is the request type for the Query/PacketCommitment RPC method

func (*QueryPacketCommitmentRequest) Descriptor deprecated

func (*QueryPacketCommitmentRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketCommitmentRequest.ProtoReflect.Descriptor instead.

func (*QueryPacketCommitmentRequest) GetChannelId

func (x *QueryPacketCommitmentRequest) GetChannelId() string

func (*QueryPacketCommitmentRequest) GetPortId

func (x *QueryPacketCommitmentRequest) GetPortId() string

func (*QueryPacketCommitmentRequest) GetSequence

func (x *QueryPacketCommitmentRequest) GetSequence() uint64

func (*QueryPacketCommitmentRequest) ProtoMessage

func (*QueryPacketCommitmentRequest) ProtoMessage()

func (*QueryPacketCommitmentRequest) ProtoReflect

func (*QueryPacketCommitmentRequest) Reset

func (x *QueryPacketCommitmentRequest) Reset()

func (*QueryPacketCommitmentRequest) String

type QueryPacketCommitmentResponse

type QueryPacketCommitmentResponse struct {

	// packet associated with the request fields
	Commitment []byte `protobuf:"bytes,1,opt,name=commitment,proto3" json:"commitment,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketCommitmentResponse defines the client query response for a packet which also includes a proof and the height from which the proof was retrieved

func (*QueryPacketCommitmentResponse) Descriptor deprecated

func (*QueryPacketCommitmentResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketCommitmentResponse.ProtoReflect.Descriptor instead.

func (*QueryPacketCommitmentResponse) GetCommitment

func (x *QueryPacketCommitmentResponse) GetCommitment() []byte

func (*QueryPacketCommitmentResponse) GetProof

func (x *QueryPacketCommitmentResponse) GetProof() []byte

func (*QueryPacketCommitmentResponse) GetProofHeight

func (x *QueryPacketCommitmentResponse) GetProofHeight() *v1.Height

func (*QueryPacketCommitmentResponse) ProtoMessage

func (*QueryPacketCommitmentResponse) ProtoMessage()

func (*QueryPacketCommitmentResponse) ProtoReflect

func (*QueryPacketCommitmentResponse) Reset

func (x *QueryPacketCommitmentResponse) Reset()

func (*QueryPacketCommitmentResponse) String

type QueryPacketCommitmentsRequest

type QueryPacketCommitmentsRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// pagination request
	Pagination *v1beta1.PageRequest `protobuf:"bytes,3,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketCommitmentsRequest is the request type for the Query/QueryPacketCommitments RPC method

func (*QueryPacketCommitmentsRequest) Descriptor deprecated

func (*QueryPacketCommitmentsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketCommitmentsRequest.ProtoReflect.Descriptor instead.

func (*QueryPacketCommitmentsRequest) GetChannelId

func (x *QueryPacketCommitmentsRequest) GetChannelId() string

func (*QueryPacketCommitmentsRequest) GetPagination

func (*QueryPacketCommitmentsRequest) GetPortId

func (x *QueryPacketCommitmentsRequest) GetPortId() string

func (*QueryPacketCommitmentsRequest) ProtoMessage

func (*QueryPacketCommitmentsRequest) ProtoMessage()

func (*QueryPacketCommitmentsRequest) ProtoReflect

func (*QueryPacketCommitmentsRequest) Reset

func (x *QueryPacketCommitmentsRequest) Reset()

func (*QueryPacketCommitmentsRequest) String

type QueryPacketCommitmentsResponse

type QueryPacketCommitmentsResponse struct {
	Commitments []*PacketState `protobuf:"bytes,1,rep,name=commitments,proto3" json:"commitments,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,3,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketCommitmentsResponse is the request type for the Query/QueryPacketCommitments RPC method

func (*QueryPacketCommitmentsResponse) Descriptor deprecated

func (*QueryPacketCommitmentsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketCommitmentsResponse.ProtoReflect.Descriptor instead.

func (*QueryPacketCommitmentsResponse) GetCommitments

func (x *QueryPacketCommitmentsResponse) GetCommitments() []*PacketState

func (*QueryPacketCommitmentsResponse) GetHeight

func (x *QueryPacketCommitmentsResponse) GetHeight() *v1.Height

func (*QueryPacketCommitmentsResponse) GetPagination

func (*QueryPacketCommitmentsResponse) ProtoMessage

func (*QueryPacketCommitmentsResponse) ProtoMessage()

func (*QueryPacketCommitmentsResponse) ProtoReflect

func (*QueryPacketCommitmentsResponse) Reset

func (x *QueryPacketCommitmentsResponse) Reset()

func (*QueryPacketCommitmentsResponse) String

type QueryPacketReceiptRequest

type QueryPacketReceiptRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// packet sequence
	Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketReceiptRequest is the request type for the Query/PacketReceipt RPC method

func (*QueryPacketReceiptRequest) Descriptor deprecated

func (*QueryPacketReceiptRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketReceiptRequest.ProtoReflect.Descriptor instead.

func (*QueryPacketReceiptRequest) GetChannelId

func (x *QueryPacketReceiptRequest) GetChannelId() string

func (*QueryPacketReceiptRequest) GetPortId

func (x *QueryPacketReceiptRequest) GetPortId() string

func (*QueryPacketReceiptRequest) GetSequence

func (x *QueryPacketReceiptRequest) GetSequence() uint64

func (*QueryPacketReceiptRequest) ProtoMessage

func (*QueryPacketReceiptRequest) ProtoMessage()

func (*QueryPacketReceiptRequest) ProtoReflect

func (*QueryPacketReceiptRequest) Reset

func (x *QueryPacketReceiptRequest) Reset()

func (*QueryPacketReceiptRequest) String

func (x *QueryPacketReceiptRequest) String() string

type QueryPacketReceiptResponse

type QueryPacketReceiptResponse struct {

	// success flag for if receipt exists
	Received bool `protobuf:"varint,2,opt,name=received,proto3" json:"received,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,3,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,4,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryPacketReceiptResponse defines the client query response for a packet receipt which also includes a proof, and the height from which the proof was retrieved

func (*QueryPacketReceiptResponse) Descriptor deprecated

func (*QueryPacketReceiptResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryPacketReceiptResponse.ProtoReflect.Descriptor instead.

func (*QueryPacketReceiptResponse) GetProof

func (x *QueryPacketReceiptResponse) GetProof() []byte

func (*QueryPacketReceiptResponse) GetProofHeight

func (x *QueryPacketReceiptResponse) GetProofHeight() *v1.Height

func (*QueryPacketReceiptResponse) GetReceived

func (x *QueryPacketReceiptResponse) GetReceived() bool

func (*QueryPacketReceiptResponse) ProtoMessage

func (*QueryPacketReceiptResponse) ProtoMessage()

func (*QueryPacketReceiptResponse) ProtoReflect

func (*QueryPacketReceiptResponse) Reset

func (x *QueryPacketReceiptResponse) Reset()

func (*QueryPacketReceiptResponse) String

func (x *QueryPacketReceiptResponse) String() string

type QueryUnreceivedAcksRequest

type QueryUnreceivedAcksRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// list of acknowledgement sequences
	PacketAckSequences []uint64 `protobuf:"varint,3,rep,packed,name=packet_ack_sequences,json=packetAckSequences,proto3" json:"packet_ack_sequences,omitempty"`
	// contains filtered or unexported fields
}

QueryUnreceivedAcks is the request type for the Query/UnreceivedAcks RPC method

func (*QueryUnreceivedAcksRequest) Descriptor deprecated

func (*QueryUnreceivedAcksRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryUnreceivedAcksRequest.ProtoReflect.Descriptor instead.

func (*QueryUnreceivedAcksRequest) GetChannelId

func (x *QueryUnreceivedAcksRequest) GetChannelId() string

func (*QueryUnreceivedAcksRequest) GetPacketAckSequences

func (x *QueryUnreceivedAcksRequest) GetPacketAckSequences() []uint64

func (*QueryUnreceivedAcksRequest) GetPortId

func (x *QueryUnreceivedAcksRequest) GetPortId() string

func (*QueryUnreceivedAcksRequest) ProtoMessage

func (*QueryUnreceivedAcksRequest) ProtoMessage()

func (*QueryUnreceivedAcksRequest) ProtoReflect

func (*QueryUnreceivedAcksRequest) Reset

func (x *QueryUnreceivedAcksRequest) Reset()

func (*QueryUnreceivedAcksRequest) String

func (x *QueryUnreceivedAcksRequest) String() string

type QueryUnreceivedAcksResponse

type QueryUnreceivedAcksResponse struct {

	// list of unreceived acknowledgement sequences
	Sequences []uint64 `protobuf:"varint,1,rep,packed,name=sequences,proto3" json:"sequences,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,2,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryUnreceivedAcksResponse is the response type for the Query/UnreceivedAcks RPC method

func (*QueryUnreceivedAcksResponse) Descriptor deprecated

func (*QueryUnreceivedAcksResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryUnreceivedAcksResponse.ProtoReflect.Descriptor instead.

func (*QueryUnreceivedAcksResponse) GetHeight

func (x *QueryUnreceivedAcksResponse) GetHeight() *v1.Height

func (*QueryUnreceivedAcksResponse) GetSequences

func (x *QueryUnreceivedAcksResponse) GetSequences() []uint64

func (*QueryUnreceivedAcksResponse) ProtoMessage

func (*QueryUnreceivedAcksResponse) ProtoMessage()

func (*QueryUnreceivedAcksResponse) ProtoReflect

func (*QueryUnreceivedAcksResponse) Reset

func (x *QueryUnreceivedAcksResponse) Reset()

func (*QueryUnreceivedAcksResponse) String

func (x *QueryUnreceivedAcksResponse) String() string

type QueryUnreceivedPacketsRequest

type QueryUnreceivedPacketsRequest struct {

	// port unique identifier
	PortId string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	// channel unique identifier
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// list of packet sequences
	PacketCommitmentSequences []uint64 `` /* 146-byte string literal not displayed */
	// contains filtered or unexported fields
}

QueryUnreceivedPacketsRequest is the request type for the Query/UnreceivedPackets RPC method

func (*QueryUnreceivedPacketsRequest) Descriptor deprecated

func (*QueryUnreceivedPacketsRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryUnreceivedPacketsRequest.ProtoReflect.Descriptor instead.

func (*QueryUnreceivedPacketsRequest) GetChannelId

func (x *QueryUnreceivedPacketsRequest) GetChannelId() string

func (*QueryUnreceivedPacketsRequest) GetPacketCommitmentSequences

func (x *QueryUnreceivedPacketsRequest) GetPacketCommitmentSequences() []uint64

func (*QueryUnreceivedPacketsRequest) GetPortId

func (x *QueryUnreceivedPacketsRequest) GetPortId() string

func (*QueryUnreceivedPacketsRequest) ProtoMessage

func (*QueryUnreceivedPacketsRequest) ProtoMessage()

func (*QueryUnreceivedPacketsRequest) ProtoReflect

func (*QueryUnreceivedPacketsRequest) Reset

func (x *QueryUnreceivedPacketsRequest) Reset()

func (*QueryUnreceivedPacketsRequest) String

type QueryUnreceivedPacketsResponse

type QueryUnreceivedPacketsResponse struct {

	// list of unreceived packet sequences
	Sequences []uint64 `protobuf:"varint,1,rep,packed,name=sequences,proto3" json:"sequences,omitempty"`
	// query block height
	Height *v1.Height `protobuf:"bytes,2,opt,name=height,proto3" json:"height,omitempty"`
	// contains filtered or unexported fields
}

QueryUnreceivedPacketsResponse is the response type for the Query/UnreceivedPacketCommitments RPC method

func (*QueryUnreceivedPacketsResponse) Descriptor deprecated

func (*QueryUnreceivedPacketsResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryUnreceivedPacketsResponse.ProtoReflect.Descriptor instead.

func (*QueryUnreceivedPacketsResponse) GetHeight

func (x *QueryUnreceivedPacketsResponse) GetHeight() *v1.Height

func (*QueryUnreceivedPacketsResponse) GetSequences

func (x *QueryUnreceivedPacketsResponse) GetSequences() []uint64

func (*QueryUnreceivedPacketsResponse) ProtoMessage

func (*QueryUnreceivedPacketsResponse) ProtoMessage()

func (*QueryUnreceivedPacketsResponse) ProtoReflect

func (*QueryUnreceivedPacketsResponse) Reset

func (x *QueryUnreceivedPacketsResponse) Reset()

func (*QueryUnreceivedPacketsResponse) String

type QueryUpgradeErrorRequest

type QueryUpgradeErrorRequest struct {
	PortId    string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryUpgradeErrorRequest is the request type for the Query/QueryUpgradeError RPC method

func (*QueryUpgradeErrorRequest) Descriptor deprecated

func (*QueryUpgradeErrorRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryUpgradeErrorRequest.ProtoReflect.Descriptor instead.

func (*QueryUpgradeErrorRequest) GetChannelId

func (x *QueryUpgradeErrorRequest) GetChannelId() string

func (*QueryUpgradeErrorRequest) GetPortId

func (x *QueryUpgradeErrorRequest) GetPortId() string

func (*QueryUpgradeErrorRequest) ProtoMessage

func (*QueryUpgradeErrorRequest) ProtoMessage()

func (*QueryUpgradeErrorRequest) ProtoReflect

func (x *QueryUpgradeErrorRequest) ProtoReflect() protoreflect.Message

func (*QueryUpgradeErrorRequest) Reset

func (x *QueryUpgradeErrorRequest) Reset()

func (*QueryUpgradeErrorRequest) String

func (x *QueryUpgradeErrorRequest) String() string

type QueryUpgradeErrorResponse

type QueryUpgradeErrorResponse struct {
	ErrorReceipt *ErrorReceipt `protobuf:"bytes,1,opt,name=error_receipt,json=errorReceipt,proto3" json:"error_receipt,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryUpgradeErrorResponse is the response type for the Query/QueryUpgradeError RPC method

func (*QueryUpgradeErrorResponse) Descriptor deprecated

func (*QueryUpgradeErrorResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryUpgradeErrorResponse.ProtoReflect.Descriptor instead.

func (*QueryUpgradeErrorResponse) GetErrorReceipt

func (x *QueryUpgradeErrorResponse) GetErrorReceipt() *ErrorReceipt

func (*QueryUpgradeErrorResponse) GetProof

func (x *QueryUpgradeErrorResponse) GetProof() []byte

func (*QueryUpgradeErrorResponse) GetProofHeight

func (x *QueryUpgradeErrorResponse) GetProofHeight() *v1.Height

func (*QueryUpgradeErrorResponse) ProtoMessage

func (*QueryUpgradeErrorResponse) ProtoMessage()

func (*QueryUpgradeErrorResponse) ProtoReflect

func (*QueryUpgradeErrorResponse) Reset

func (x *QueryUpgradeErrorResponse) Reset()

func (*QueryUpgradeErrorResponse) String

func (x *QueryUpgradeErrorResponse) String() string

type QueryUpgradeRequest

type QueryUpgradeRequest struct {
	PortId    string `protobuf:"bytes,1,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	ChannelId string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// contains filtered or unexported fields
}

QueryUpgradeRequest is the request type for the QueryUpgradeRequest RPC method

func (*QueryUpgradeRequest) Descriptor deprecated

func (*QueryUpgradeRequest) Descriptor() ([]byte, []int)

Deprecated: Use QueryUpgradeRequest.ProtoReflect.Descriptor instead.

func (*QueryUpgradeRequest) GetChannelId

func (x *QueryUpgradeRequest) GetChannelId() string

func (*QueryUpgradeRequest) GetPortId

func (x *QueryUpgradeRequest) GetPortId() string

func (*QueryUpgradeRequest) ProtoMessage

func (*QueryUpgradeRequest) ProtoMessage()

func (*QueryUpgradeRequest) ProtoReflect

func (x *QueryUpgradeRequest) ProtoReflect() protoreflect.Message

func (*QueryUpgradeRequest) Reset

func (x *QueryUpgradeRequest) Reset()

func (*QueryUpgradeRequest) String

func (x *QueryUpgradeRequest) String() string

type QueryUpgradeResponse

type QueryUpgradeResponse struct {
	Upgrade *Upgrade `protobuf:"bytes,1,opt,name=upgrade,proto3" json:"upgrade,omitempty"`
	// merkle proof of existence
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// height at which the proof was retrieved
	ProofHeight *v1.Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryUpgradeResponse is the response type for the QueryUpgradeResponse RPC method

func (*QueryUpgradeResponse) Descriptor deprecated

func (*QueryUpgradeResponse) Descriptor() ([]byte, []int)

Deprecated: Use QueryUpgradeResponse.ProtoReflect.Descriptor instead.

func (*QueryUpgradeResponse) GetProof

func (x *QueryUpgradeResponse) GetProof() []byte

func (*QueryUpgradeResponse) GetProofHeight

func (x *QueryUpgradeResponse) GetProofHeight() *v1.Height

func (*QueryUpgradeResponse) GetUpgrade

func (x *QueryUpgradeResponse) GetUpgrade() *Upgrade

func (*QueryUpgradeResponse) ProtoMessage

func (*QueryUpgradeResponse) ProtoMessage()

func (*QueryUpgradeResponse) ProtoReflect

func (x *QueryUpgradeResponse) ProtoReflect() protoreflect.Message

func (*QueryUpgradeResponse) Reset

func (x *QueryUpgradeResponse) Reset()

func (*QueryUpgradeResponse) String

func (x *QueryUpgradeResponse) String() string

type ResponseResultType

type ResponseResultType int32

ResponseResultType defines the possible outcomes of the execution of a message

const (
	// Default zero value enumeration
	ResponseResultType_RESPONSE_RESULT_TYPE_UNSPECIFIED ResponseResultType = 0
	// The message did not call the IBC application callbacks (because, for example, the packet had already been relayed)
	ResponseResultType_RESPONSE_RESULT_TYPE_NOOP ResponseResultType = 1
	// The message was executed successfully
	ResponseResultType_RESPONSE_RESULT_TYPE_SUCCESS ResponseResultType = 2
	// The message was executed unsuccessfully
	ResponseResultType_RESPONSE_RESULT_TYPE_FAILURE ResponseResultType = 3
)

func (ResponseResultType) Descriptor

func (ResponseResultType) Enum

func (ResponseResultType) EnumDescriptor deprecated

func (ResponseResultType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ResponseResultType.Descriptor instead.

func (ResponseResultType) Number

func (ResponseResultType) String

func (x ResponseResultType) String() string

func (ResponseResultType) Type

type State

type State int32

State defines if a channel is in one of the following states: CLOSED, INIT, TRYOPEN, OPEN, FLUSHING, FLUSHCOMPLETE or UNINITIALIZED.

const (
	// Default State
	State_STATE_UNINITIALIZED_UNSPECIFIED State = 0
	// A channel has just started the opening handshake.
	State_STATE_INIT State = 1
	// A channel has acknowledged the handshake step on the counterparty chain.
	State_STATE_TRYOPEN State = 2
	// A channel has completed the handshake. Open channels are
	// ready to send and receive packets.
	State_STATE_OPEN State = 3
	// A channel has been closed and can no longer be used to send or receive
	// packets.
	State_STATE_CLOSED State = 4
	// A channel has just accepted the upgrade handshake attempt and is flushing in-flight packets.
	State_STATE_FLUSHING State = 5
	// A channel has just completed flushing any in-flight packets.
	State_STATE_FLUSHCOMPLETE State = 6
)

func (State) Descriptor

func (State) Descriptor() protoreflect.EnumDescriptor

func (State) Enum

func (x State) Enum() *State

func (State) EnumDescriptor deprecated

func (State) EnumDescriptor() ([]byte, []int)

Deprecated: Use State.Descriptor instead.

func (State) Number

func (x State) Number() protoreflect.EnumNumber

func (State) String

func (x State) String() string

func (State) Type

func (State) Type() protoreflect.EnumType

type Timeout

type Timeout struct {

	// block height after which the packet or upgrade times out
	Height *v1.Height `protobuf:"bytes,1,opt,name=height,proto3" json:"height,omitempty"`
	// block timestamp (in nanoseconds) after which the packet or upgrade times out
	Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

Timeout defines an execution deadline structure for 04-channel handlers. This includes packet lifecycle handlers as well as the upgrade handshake handlers. A valid Timeout contains either one or both of a timestamp and block height (sequence).

func (*Timeout) Descriptor deprecated

func (*Timeout) Descriptor() ([]byte, []int)

Deprecated: Use Timeout.ProtoReflect.Descriptor instead.

func (*Timeout) GetHeight

func (x *Timeout) GetHeight() *v1.Height

func (*Timeout) GetTimestamp

func (x *Timeout) GetTimestamp() uint64

func (*Timeout) ProtoMessage

func (*Timeout) ProtoMessage()

func (*Timeout) ProtoReflect

func (x *Timeout) ProtoReflect() protoreflect.Message

func (*Timeout) Reset

func (x *Timeout) Reset()

func (*Timeout) String

func (x *Timeout) String() string

type Upgrade

type Upgrade struct {
	Fields           *UpgradeFields `protobuf:"bytes,1,opt,name=fields,proto3" json:"fields,omitempty"`
	Timeout          *Timeout       `protobuf:"bytes,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
	NextSequenceSend uint64         `protobuf:"varint,3,opt,name=next_sequence_send,json=nextSequenceSend,proto3" json:"next_sequence_send,omitempty"`
	// contains filtered or unexported fields
}

Upgrade is a verifiable type which contains the relevant information for an attempted upgrade. It provides the proposed changes to the channel end, the timeout for this upgrade attempt and the next packet sequence which allows the counterparty to efficiently know the highest sequence it has received. The next sequence send is used for pruning and upgrading from unordered to ordered channels.

func (*Upgrade) Descriptor deprecated

func (*Upgrade) Descriptor() ([]byte, []int)

Deprecated: Use Upgrade.ProtoReflect.Descriptor instead.

func (*Upgrade) GetFields

func (x *Upgrade) GetFields() *UpgradeFields

func (*Upgrade) GetNextSequenceSend

func (x *Upgrade) GetNextSequenceSend() uint64

func (*Upgrade) GetTimeout

func (x *Upgrade) GetTimeout() *Timeout

func (*Upgrade) ProtoMessage

func (*Upgrade) ProtoMessage()

func (*Upgrade) ProtoReflect

func (x *Upgrade) ProtoReflect() protoreflect.Message

func (*Upgrade) Reset

func (x *Upgrade) Reset()

func (*Upgrade) String

func (x *Upgrade) String() string

type UpgradeFields

type UpgradeFields struct {
	Ordering       Order    `protobuf:"varint,1,opt,name=ordering,proto3,enum=ibc.core.channel.v1.Order" json:"ordering,omitempty"`
	ConnectionHops []string `protobuf:"bytes,2,rep,name=connection_hops,json=connectionHops,proto3" json:"connection_hops,omitempty"`
	Version        string   `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

UpgradeFields are the fields in a channel end which may be changed during a channel upgrade.

func (*UpgradeFields) Descriptor deprecated

func (*UpgradeFields) Descriptor() ([]byte, []int)

Deprecated: Use UpgradeFields.ProtoReflect.Descriptor instead.

func (*UpgradeFields) GetConnectionHops

func (x *UpgradeFields) GetConnectionHops() []string

func (*UpgradeFields) GetOrdering

func (x *UpgradeFields) GetOrdering() Order

func (*UpgradeFields) GetVersion

func (x *UpgradeFields) GetVersion() string

func (*UpgradeFields) ProtoMessage

func (*UpgradeFields) ProtoMessage()

func (*UpgradeFields) ProtoReflect

func (x *UpgradeFields) ProtoReflect() protoreflect.Message

func (*UpgradeFields) Reset

func (x *UpgradeFields) Reset()

func (*UpgradeFields) String

func (x *UpgradeFields) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL