clientv1

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: 17 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.

Index

Constants

This section is empty.

Variables

View Source
var File_ibc_core_client_v1_client_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_client_v1_genesis_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_client_v1_query_proto protoreflect.FileDescriptor
View Source
var File_ibc_core_client_v1_tx_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ClientConsensusStates

type ClientConsensusStates struct {

	// client identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// consensus states and their heights associated with the client
	ConsensusStates []*ConsensusStateWithHeight `protobuf:"bytes,2,rep,name=consensus_states,json=consensusStates,proto3" json:"consensus_states,omitempty"`
	// contains filtered or unexported fields
}

ClientConsensusStates defines all the stored consensus states for a given client.

func (*ClientConsensusStates) Descriptor deprecated

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

Deprecated: Use ClientConsensusStates.ProtoReflect.Descriptor instead.

func (*ClientConsensusStates) GetClientId

func (x *ClientConsensusStates) GetClientId() string

func (*ClientConsensusStates) GetConsensusStates

func (x *ClientConsensusStates) GetConsensusStates() []*ConsensusStateWithHeight

func (*ClientConsensusStates) ProtoMessage

func (*ClientConsensusStates) ProtoMessage()

func (*ClientConsensusStates) ProtoReflect

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

func (*ClientConsensusStates) Reset

func (x *ClientConsensusStates) Reset()

func (*ClientConsensusStates) String

func (x *ClientConsensusStates) String() string

type ClientUpdateProposal deprecated

type ClientUpdateProposal struct {

	// the title of the update proposal
	Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	// the description of the proposal
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// the client identifier for the client to be updated if the proposal passes
	SubjectClientId string `protobuf:"bytes,3,opt,name=subject_client_id,json=subjectClientId,proto3" json:"subject_client_id,omitempty"`
	// the substitute client identifier for the client standing in for the subject
	// client
	SubstituteClientId string `protobuf:"bytes,4,opt,name=substitute_client_id,json=substituteClientId,proto3" json:"substitute_client_id,omitempty"`
	// contains filtered or unexported fields
}

ClientUpdateProposal is a legacy governance proposal. If it passes, the substitute client's latest consensus state is copied over to the subject client. The proposal handler may fail if the subject and the substitute do not match in client and chain parameters (with exception to latest height, frozen height, and chain-id).

Deprecated: Please use MsgRecoverClient in favour of this message type.

Deprecated: Do not use.

func (*ClientUpdateProposal) Descriptor deprecated

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

Deprecated: Use ClientUpdateProposal.ProtoReflect.Descriptor instead.

func (*ClientUpdateProposal) GetDescription

func (x *ClientUpdateProposal) GetDescription() string

func (*ClientUpdateProposal) GetSubjectClientId

func (x *ClientUpdateProposal) GetSubjectClientId() string

func (*ClientUpdateProposal) GetSubstituteClientId

func (x *ClientUpdateProposal) GetSubstituteClientId() string

func (*ClientUpdateProposal) GetTitle

func (x *ClientUpdateProposal) GetTitle() string

func (*ClientUpdateProposal) ProtoMessage

func (*ClientUpdateProposal) ProtoMessage()

func (*ClientUpdateProposal) ProtoReflect

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

func (*ClientUpdateProposal) Reset

func (x *ClientUpdateProposal) Reset()

func (*ClientUpdateProposal) String

func (x *ClientUpdateProposal) String() string

type ConsensusStateWithHeight

type ConsensusStateWithHeight struct {

	// consensus state height
	Height *Height `protobuf:"bytes,1,opt,name=height,proto3" json:"height,omitempty"`
	// consensus state
	ConsensusState *anypb.Any `protobuf:"bytes,2,opt,name=consensus_state,json=consensusState,proto3" json:"consensus_state,omitempty"`
	// contains filtered or unexported fields
}

ConsensusStateWithHeight defines a consensus state with an additional height field.

func (*ConsensusStateWithHeight) Descriptor deprecated

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

Deprecated: Use ConsensusStateWithHeight.ProtoReflect.Descriptor instead.

func (*ConsensusStateWithHeight) GetConsensusState

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

func (*ConsensusStateWithHeight) GetHeight

func (x *ConsensusStateWithHeight) GetHeight() *Height

func (*ConsensusStateWithHeight) ProtoMessage

func (*ConsensusStateWithHeight) ProtoMessage()

func (*ConsensusStateWithHeight) ProtoReflect

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

func (*ConsensusStateWithHeight) Reset

func (x *ConsensusStateWithHeight) Reset()

func (*ConsensusStateWithHeight) String

func (x *ConsensusStateWithHeight) String() string

type GenesisMetadata

type GenesisMetadata struct {

	// store key of metadata without clientID-prefix
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// metadata value
	Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

GenesisMetadata defines the genesis type for metadata that will be used to export all client store keys that are not client or consensus states.

func (*GenesisMetadata) Descriptor deprecated

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

Deprecated: Use GenesisMetadata.ProtoReflect.Descriptor instead.

func (*GenesisMetadata) GetKey

func (x *GenesisMetadata) GetKey() []byte

func (*GenesisMetadata) GetValue

func (x *GenesisMetadata) GetValue() []byte

func (*GenesisMetadata) ProtoMessage

func (*GenesisMetadata) ProtoMessage()

func (*GenesisMetadata) ProtoReflect

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

func (*GenesisMetadata) Reset

func (x *GenesisMetadata) Reset()

func (*GenesisMetadata) String

func (x *GenesisMetadata) String() string

type GenesisState

type GenesisState struct {

	// client states with their corresponding identifiers
	Clients []*IdentifiedClientState `protobuf:"bytes,1,rep,name=clients,proto3" json:"clients,omitempty"`
	// consensus states from each client
	ClientsConsensus []*ClientConsensusStates `protobuf:"bytes,2,rep,name=clients_consensus,json=clientsConsensus,proto3" json:"clients_consensus,omitempty"`
	// metadata from each client
	ClientsMetadata []*IdentifiedGenesisMetadata `protobuf:"bytes,3,rep,name=clients_metadata,json=clientsMetadata,proto3" json:"clients_metadata,omitempty"`
	Params          *Params                      `protobuf:"bytes,4,opt,name=params,proto3" json:"params,omitempty"`
	// Deprecated: create_localhost has been deprecated.
	// The localhost client is automatically created at genesis.
	//
	// Deprecated: Do not use.
	CreateLocalhost bool `protobuf:"varint,5,opt,name=create_localhost,json=createLocalhost,proto3" json:"create_localhost,omitempty"`
	// the sequence for the next generated client identifier
	NextClientSequence uint64 `protobuf:"varint,6,opt,name=next_client_sequence,json=nextClientSequence,proto3" json:"next_client_sequence,omitempty"`
	// contains filtered or unexported fields
}

GenesisState defines the ibc client submodule's genesis state.

func (*GenesisState) Descriptor deprecated

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

Deprecated: Use GenesisState.ProtoReflect.Descriptor instead.

func (*GenesisState) GetClients

func (x *GenesisState) GetClients() []*IdentifiedClientState

func (*GenesisState) GetClientsConsensus

func (x *GenesisState) GetClientsConsensus() []*ClientConsensusStates

func (*GenesisState) GetClientsMetadata

func (x *GenesisState) GetClientsMetadata() []*IdentifiedGenesisMetadata

func (*GenesisState) GetCreateLocalhost deprecated

func (x *GenesisState) GetCreateLocalhost() bool

Deprecated: Do not use.

func (*GenesisState) GetNextClientSequence

func (x *GenesisState) GetNextClientSequence() uint64

func (*GenesisState) GetParams

func (x *GenesisState) GetParams() *Params

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 Height

type Height struct {

	// the revision that the client is currently on
	RevisionNumber uint64 `protobuf:"varint,1,opt,name=revision_number,json=revisionNumber,proto3" json:"revision_number,omitempty"`
	// the height within the given revision
	RevisionHeight uint64 `protobuf:"varint,2,opt,name=revision_height,json=revisionHeight,proto3" json:"revision_height,omitempty"`
	// contains filtered or unexported fields
}

Height is a monotonically increasing data type that can be compared against another Height for the purposes of updating and freezing clients

Normally the RevisionHeight is incremented at each height while keeping RevisionNumber the same. However some consensus algorithms may choose to reset the height in certain conditions e.g. hard forks, state-machine breaking changes In these cases, the RevisionNumber is incremented so that height continues to be monitonically increasing even as the RevisionHeight gets reset

func (*Height) Descriptor deprecated

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

Deprecated: Use Height.ProtoReflect.Descriptor instead.

func (*Height) GetRevisionHeight

func (x *Height) GetRevisionHeight() uint64

func (*Height) GetRevisionNumber

func (x *Height) GetRevisionNumber() uint64

func (*Height) ProtoMessage

func (*Height) ProtoMessage()

func (*Height) ProtoReflect

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

func (*Height) Reset

func (x *Height) Reset()

func (*Height) String

func (x *Height) String() string

type IdentifiedClientState

type IdentifiedClientState struct {

	// client identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// client state
	ClientState *anypb.Any `protobuf:"bytes,2,opt,name=client_state,json=clientState,proto3" json:"client_state,omitempty"`
	// contains filtered or unexported fields
}

IdentifiedClientState defines a client state with an additional client identifier field.

func (*IdentifiedClientState) Descriptor deprecated

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

Deprecated: Use IdentifiedClientState.ProtoReflect.Descriptor instead.

func (*IdentifiedClientState) GetClientId

func (x *IdentifiedClientState) GetClientId() string

func (*IdentifiedClientState) GetClientState

func (x *IdentifiedClientState) GetClientState() *anypb.Any

func (*IdentifiedClientState) ProtoMessage

func (*IdentifiedClientState) ProtoMessage()

func (*IdentifiedClientState) ProtoReflect

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

func (*IdentifiedClientState) Reset

func (x *IdentifiedClientState) Reset()

func (*IdentifiedClientState) String

func (x *IdentifiedClientState) String() string

type IdentifiedGenesisMetadata

type IdentifiedGenesisMetadata struct {
	ClientId       string             `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientMetadata []*GenesisMetadata `protobuf:"bytes,2,rep,name=client_metadata,json=clientMetadata,proto3" json:"client_metadata,omitempty"`
	// contains filtered or unexported fields
}

IdentifiedGenesisMetadata has the client metadata with the corresponding client id.

func (*IdentifiedGenesisMetadata) Descriptor deprecated

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

Deprecated: Use IdentifiedGenesisMetadata.ProtoReflect.Descriptor instead.

func (*IdentifiedGenesisMetadata) GetClientId

func (x *IdentifiedGenesisMetadata) GetClientId() string

func (*IdentifiedGenesisMetadata) GetClientMetadata

func (x *IdentifiedGenesisMetadata) GetClientMetadata() []*GenesisMetadata

func (*IdentifiedGenesisMetadata) ProtoMessage

func (*IdentifiedGenesisMetadata) ProtoMessage()

func (*IdentifiedGenesisMetadata) ProtoReflect

func (*IdentifiedGenesisMetadata) Reset

func (x *IdentifiedGenesisMetadata) Reset()

func (*IdentifiedGenesisMetadata) String

func (x *IdentifiedGenesisMetadata) String() string

type MsgCreateClient

type MsgCreateClient struct {

	// light client state
	ClientState *anypb.Any `protobuf:"bytes,1,opt,name=client_state,json=clientState,proto3" json:"client_state,omitempty"`
	// consensus state associated with the client that corresponds to a given
	// height.
	ConsensusState *anypb.Any `protobuf:"bytes,2,opt,name=consensus_state,json=consensusState,proto3" json:"consensus_state,omitempty"`
	// signer address
	Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgCreateClient defines a message to create an IBC client

func (*MsgCreateClient) Descriptor deprecated

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

Deprecated: Use MsgCreateClient.ProtoReflect.Descriptor instead.

func (*MsgCreateClient) GetClientState

func (x *MsgCreateClient) GetClientState() *anypb.Any

func (*MsgCreateClient) GetConsensusState

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

func (*MsgCreateClient) GetSigner

func (x *MsgCreateClient) GetSigner() string

func (*MsgCreateClient) ProtoMessage

func (*MsgCreateClient) ProtoMessage()

func (*MsgCreateClient) ProtoReflect

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

func (*MsgCreateClient) Reset

func (x *MsgCreateClient) Reset()

func (*MsgCreateClient) String

func (x *MsgCreateClient) String() string

type MsgCreateClientResponse

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

MsgCreateClientResponse defines the Msg/CreateClient response type.

func (*MsgCreateClientResponse) Descriptor deprecated

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

Deprecated: Use MsgCreateClientResponse.ProtoReflect.Descriptor instead.

func (*MsgCreateClientResponse) ProtoMessage

func (*MsgCreateClientResponse) ProtoMessage()

func (*MsgCreateClientResponse) ProtoReflect

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

func (*MsgCreateClientResponse) Reset

func (x *MsgCreateClientResponse) Reset()

func (*MsgCreateClientResponse) String

func (x *MsgCreateClientResponse) String() string

type MsgIBCSoftwareUpgrade

type MsgIBCSoftwareUpgrade struct {
	Plan *v1beta1.Plan `protobuf:"bytes,1,opt,name=plan,proto3" json:"plan,omitempty"`
	// An UpgradedClientState must be provided to perform an IBC breaking upgrade.
	// This will make the chain commit to the correct upgraded (self) client state
	// before the upgrade occurs, so that connecting chains can verify that the
	// new upgraded client is valid by verifying a proof on the previous version
	// of the chain. This will allow IBC connections to persist smoothly across
	// planned chain upgrades. Correspondingly, the UpgradedClientState field has been
	// deprecated in the Cosmos SDK to allow for this logic to exist solely in
	// the 02-client module.
	UpgradedClientState *anypb.Any `protobuf:"bytes,2,opt,name=upgraded_client_state,json=upgradedClientState,proto3" json:"upgraded_client_state,omitempty"`
	// signer address
	Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgIBCSoftwareUpgrade defines the message used to schedule an upgrade of an IBC client using a v1 governance proposal

func (*MsgIBCSoftwareUpgrade) Descriptor deprecated

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

Deprecated: Use MsgIBCSoftwareUpgrade.ProtoReflect.Descriptor instead.

func (*MsgIBCSoftwareUpgrade) GetPlan

func (x *MsgIBCSoftwareUpgrade) GetPlan() *v1beta1.Plan

func (*MsgIBCSoftwareUpgrade) GetSigner

func (x *MsgIBCSoftwareUpgrade) GetSigner() string

func (*MsgIBCSoftwareUpgrade) GetUpgradedClientState

func (x *MsgIBCSoftwareUpgrade) GetUpgradedClientState() *anypb.Any

func (*MsgIBCSoftwareUpgrade) ProtoMessage

func (*MsgIBCSoftwareUpgrade) ProtoMessage()

func (*MsgIBCSoftwareUpgrade) ProtoReflect

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

func (*MsgIBCSoftwareUpgrade) Reset

func (x *MsgIBCSoftwareUpgrade) Reset()

func (*MsgIBCSoftwareUpgrade) String

func (x *MsgIBCSoftwareUpgrade) String() string

type MsgIBCSoftwareUpgradeResponse

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

MsgIBCSoftwareUpgradeResponse defines the Msg/IBCSoftwareUpgrade response type.

func (*MsgIBCSoftwareUpgradeResponse) Descriptor deprecated

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

Deprecated: Use MsgIBCSoftwareUpgradeResponse.ProtoReflect.Descriptor instead.

func (*MsgIBCSoftwareUpgradeResponse) ProtoMessage

func (*MsgIBCSoftwareUpgradeResponse) ProtoMessage()

func (*MsgIBCSoftwareUpgradeResponse) ProtoReflect

func (*MsgIBCSoftwareUpgradeResponse) Reset

func (x *MsgIBCSoftwareUpgradeResponse) Reset()

func (*MsgIBCSoftwareUpgradeResponse) String

type MsgRecoverClient

type MsgRecoverClient struct {

	// the client identifier for the client to be updated if the proposal passes
	SubjectClientId string `protobuf:"bytes,1,opt,name=subject_client_id,json=subjectClientId,proto3" json:"subject_client_id,omitempty"`
	// the substitute client identifier for the client which will replace the subject
	// client
	SubstituteClientId string `protobuf:"bytes,2,opt,name=substitute_client_id,json=substituteClientId,proto3" json:"substitute_client_id,omitempty"`
	// signer address
	Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgRecoverClient defines the message used to recover a frozen or expired client.

func (*MsgRecoverClient) Descriptor deprecated

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

Deprecated: Use MsgRecoverClient.ProtoReflect.Descriptor instead.

func (*MsgRecoverClient) GetSigner

func (x *MsgRecoverClient) GetSigner() string

func (*MsgRecoverClient) GetSubjectClientId

func (x *MsgRecoverClient) GetSubjectClientId() string

func (*MsgRecoverClient) GetSubstituteClientId

func (x *MsgRecoverClient) GetSubstituteClientId() string

func (*MsgRecoverClient) ProtoMessage

func (*MsgRecoverClient) ProtoMessage()

func (*MsgRecoverClient) ProtoReflect

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

func (*MsgRecoverClient) Reset

func (x *MsgRecoverClient) Reset()

func (*MsgRecoverClient) String

func (x *MsgRecoverClient) String() string

type MsgRecoverClientResponse

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

MsgRecoverClientResponse defines the Msg/RecoverClient response type.

func (*MsgRecoverClientResponse) Descriptor deprecated

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

Deprecated: Use MsgRecoverClientResponse.ProtoReflect.Descriptor instead.

func (*MsgRecoverClientResponse) ProtoMessage

func (*MsgRecoverClientResponse) ProtoMessage()

func (*MsgRecoverClientResponse) ProtoReflect

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

func (*MsgRecoverClientResponse) Reset

func (x *MsgRecoverClientResponse) Reset()

func (*MsgRecoverClientResponse) String

func (x *MsgRecoverClientResponse) String() string

type MsgSubmitMisbehaviour deprecated

type MsgSubmitMisbehaviour struct {

	// client unique identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// misbehaviour used for freezing the light client
	Misbehaviour *anypb.Any `protobuf:"bytes,2,opt,name=misbehaviour,proto3" json:"misbehaviour,omitempty"`
	// signer address
	Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for light client misbehaviour. This message has been deprecated. Use MsgUpdateClient instead.

Deprecated: Do not use.

func (*MsgSubmitMisbehaviour) Descriptor deprecated

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

Deprecated: Use MsgSubmitMisbehaviour.ProtoReflect.Descriptor instead.

func (*MsgSubmitMisbehaviour) GetClientId

func (x *MsgSubmitMisbehaviour) GetClientId() string

func (*MsgSubmitMisbehaviour) GetMisbehaviour

func (x *MsgSubmitMisbehaviour) GetMisbehaviour() *anypb.Any

func (*MsgSubmitMisbehaviour) GetSigner

func (x *MsgSubmitMisbehaviour) GetSigner() string

func (*MsgSubmitMisbehaviour) ProtoMessage

func (*MsgSubmitMisbehaviour) ProtoMessage()

func (*MsgSubmitMisbehaviour) ProtoReflect

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

func (*MsgSubmitMisbehaviour) Reset

func (x *MsgSubmitMisbehaviour) Reset()

func (*MsgSubmitMisbehaviour) String

func (x *MsgSubmitMisbehaviour) String() string

type MsgSubmitMisbehaviourResponse

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

MsgSubmitMisbehaviourResponse defines the Msg/SubmitMisbehaviour response type.

func (*MsgSubmitMisbehaviourResponse) Descriptor deprecated

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

Deprecated: Use MsgSubmitMisbehaviourResponse.ProtoReflect.Descriptor instead.

func (*MsgSubmitMisbehaviourResponse) ProtoMessage

func (*MsgSubmitMisbehaviourResponse) ProtoMessage()

func (*MsgSubmitMisbehaviourResponse) ProtoReflect

func (*MsgSubmitMisbehaviourResponse) Reset

func (x *MsgSubmitMisbehaviourResponse) Reset()

func (*MsgSubmitMisbehaviourResponse) String

type MsgUpdateClient

type MsgUpdateClient struct {

	// client unique identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// client message to update the light client
	ClientMessage *anypb.Any `protobuf:"bytes,2,opt,name=client_message,json=clientMessage,proto3" json:"client_message,omitempty"`
	// signer address
	Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgUpdateClient defines an sdk.Msg to update a IBC client state using the given client message.

func (*MsgUpdateClient) Descriptor deprecated

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

Deprecated: Use MsgUpdateClient.ProtoReflect.Descriptor instead.

func (*MsgUpdateClient) GetClientId

func (x *MsgUpdateClient) GetClientId() string

func (*MsgUpdateClient) GetClientMessage

func (x *MsgUpdateClient) GetClientMessage() *anypb.Any

func (*MsgUpdateClient) GetSigner

func (x *MsgUpdateClient) GetSigner() string

func (*MsgUpdateClient) ProtoMessage

func (*MsgUpdateClient) ProtoMessage()

func (*MsgUpdateClient) ProtoReflect

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

func (*MsgUpdateClient) Reset

func (x *MsgUpdateClient) Reset()

func (*MsgUpdateClient) String

func (x *MsgUpdateClient) String() string

type MsgUpdateClientResponse

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

MsgUpdateClientResponse defines the Msg/UpdateClient response type.

func (*MsgUpdateClientResponse) Descriptor deprecated

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

Deprecated: Use MsgUpdateClientResponse.ProtoReflect.Descriptor instead.

func (*MsgUpdateClientResponse) ProtoMessage

func (*MsgUpdateClientResponse) ProtoMessage()

func (*MsgUpdateClientResponse) ProtoReflect

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

func (*MsgUpdateClientResponse) Reset

func (x *MsgUpdateClientResponse) Reset()

func (*MsgUpdateClientResponse) String

func (x *MsgUpdateClientResponse) String() string

type MsgUpdateParams

type MsgUpdateParams struct {

	// signer address
	Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	// params defines the client 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 defines the sdk.Msg type to update the client parameters.

func (*MsgUpdateParams) Descriptor deprecated

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

Deprecated: Use MsgUpdateParams.ProtoReflect.Descriptor instead.

func (*MsgUpdateParams) GetParams

func (x *MsgUpdateParams) GetParams() *Params

func (*MsgUpdateParams) GetSigner

func (x *MsgUpdateParams) GetSigner() string

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 MsgUpgradeClient

type MsgUpgradeClient struct {

	// client unique identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// upgraded client state
	ClientState *anypb.Any `protobuf:"bytes,2,opt,name=client_state,json=clientState,proto3" json:"client_state,omitempty"`
	// upgraded consensus state, only contains enough information to serve as a
	// basis of trust in update logic
	ConsensusState *anypb.Any `protobuf:"bytes,3,opt,name=consensus_state,json=consensusState,proto3" json:"consensus_state,omitempty"`
	// proof that old chain committed to new client
	ProofUpgradeClient []byte `protobuf:"bytes,4,opt,name=proof_upgrade_client,json=proofUpgradeClient,proto3" json:"proof_upgrade_client,omitempty"`
	// proof that old chain committed to new consensus state
	ProofUpgradeConsensusState []byte `` /* 143-byte string literal not displayed */
	// signer address
	Signer string `protobuf:"bytes,6,opt,name=signer,proto3" json:"signer,omitempty"`
	// contains filtered or unexported fields
}

MsgUpgradeClient defines an sdk.Msg to upgrade an IBC client to a new client state

func (*MsgUpgradeClient) Descriptor deprecated

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

Deprecated: Use MsgUpgradeClient.ProtoReflect.Descriptor instead.

func (*MsgUpgradeClient) GetClientId

func (x *MsgUpgradeClient) GetClientId() string

func (*MsgUpgradeClient) GetClientState

func (x *MsgUpgradeClient) GetClientState() *anypb.Any

func (*MsgUpgradeClient) GetConsensusState

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

func (*MsgUpgradeClient) GetProofUpgradeClient

func (x *MsgUpgradeClient) GetProofUpgradeClient() []byte

func (*MsgUpgradeClient) GetProofUpgradeConsensusState

func (x *MsgUpgradeClient) GetProofUpgradeConsensusState() []byte

func (*MsgUpgradeClient) GetSigner

func (x *MsgUpgradeClient) GetSigner() string

func (*MsgUpgradeClient) ProtoMessage

func (*MsgUpgradeClient) ProtoMessage()

func (*MsgUpgradeClient) ProtoReflect

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

func (*MsgUpgradeClient) Reset

func (x *MsgUpgradeClient) Reset()

func (*MsgUpgradeClient) String

func (x *MsgUpgradeClient) String() string

type MsgUpgradeClientResponse

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

MsgUpgradeClientResponse defines the Msg/UpgradeClient response type.

func (*MsgUpgradeClientResponse) Descriptor deprecated

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

Deprecated: Use MsgUpgradeClientResponse.ProtoReflect.Descriptor instead.

func (*MsgUpgradeClientResponse) ProtoMessage

func (*MsgUpgradeClientResponse) ProtoMessage()

func (*MsgUpgradeClientResponse) ProtoReflect

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

func (*MsgUpgradeClientResponse) Reset

func (x *MsgUpgradeClientResponse) Reset()

func (*MsgUpgradeClientResponse) String

func (x *MsgUpgradeClientResponse) String() string

type Params

type Params struct {

	// allowed_clients defines the list of allowed client state types which can be created
	// and interacted with. If a client type is removed from the allowed clients list, usage
	// of this client will be disabled until it is added again to the list.
	AllowedClients []string `protobuf:"bytes,1,rep,name=allowed_clients,json=allowedClients,proto3" json:"allowed_clients,omitempty"`
	// contains filtered or unexported fields
}

Params defines the set of IBC light client parameters.

func (*Params) Descriptor deprecated

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

Deprecated: Use Params.ProtoReflect.Descriptor instead.

func (*Params) GetAllowedClients

func (x *Params) GetAllowedClients() []string

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 QueryClientParamsRequest

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

QueryClientParamsRequest is the request type for the Query/ClientParams RPC method.

func (*QueryClientParamsRequest) Descriptor deprecated

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

Deprecated: Use QueryClientParamsRequest.ProtoReflect.Descriptor instead.

func (*QueryClientParamsRequest) ProtoMessage

func (*QueryClientParamsRequest) ProtoMessage()

func (*QueryClientParamsRequest) ProtoReflect

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

func (*QueryClientParamsRequest) Reset

func (x *QueryClientParamsRequest) Reset()

func (*QueryClientParamsRequest) String

func (x *QueryClientParamsRequest) String() string

type QueryClientParamsResponse

type QueryClientParamsResponse 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
}

QueryClientParamsResponse is the response type for the Query/ClientParams RPC method.

func (*QueryClientParamsResponse) Descriptor deprecated

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

Deprecated: Use QueryClientParamsResponse.ProtoReflect.Descriptor instead.

func (*QueryClientParamsResponse) GetParams

func (x *QueryClientParamsResponse) GetParams() *Params

func (*QueryClientParamsResponse) ProtoMessage

func (*QueryClientParamsResponse) ProtoMessage()

func (*QueryClientParamsResponse) ProtoReflect

func (*QueryClientParamsResponse) Reset

func (x *QueryClientParamsResponse) Reset()

func (*QueryClientParamsResponse) String

func (x *QueryClientParamsResponse) String() string

type QueryClientStateRequest

type QueryClientStateRequest struct {

	// client state unique identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// contains filtered or unexported fields
}

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

func (*QueryClientStateRequest) Descriptor deprecated

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

Deprecated: Use QueryClientStateRequest.ProtoReflect.Descriptor instead.

func (*QueryClientStateRequest) GetClientId

func (x *QueryClientStateRequest) GetClientId() string

func (*QueryClientStateRequest) ProtoMessage

func (*QueryClientStateRequest) ProtoMessage()

func (*QueryClientStateRequest) ProtoReflect

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

func (*QueryClientStateRequest) Reset

func (x *QueryClientStateRequest) Reset()

func (*QueryClientStateRequest) String

func (x *QueryClientStateRequest) String() string

type QueryClientStateResponse

type QueryClientStateResponse struct {

	// client state associated with the request identifier
	ClientState *anypb.Any `protobuf:"bytes,1,opt,name=client_state,json=clientState,proto3" json:"client_state,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 *Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryClientStateResponse is the response type for the Query/ClientState RPC method. Besides the client state, it includes a proof and the height from which the proof was retrieved.

func (*QueryClientStateResponse) Descriptor deprecated

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

Deprecated: Use QueryClientStateResponse.ProtoReflect.Descriptor instead.

func (*QueryClientStateResponse) GetClientState

func (x *QueryClientStateResponse) GetClientState() *anypb.Any

func (*QueryClientStateResponse) GetProof

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

func (*QueryClientStateResponse) GetProofHeight

func (x *QueryClientStateResponse) GetProofHeight() *Height

func (*QueryClientStateResponse) ProtoMessage

func (*QueryClientStateResponse) ProtoMessage()

func (*QueryClientStateResponse) ProtoReflect

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

func (*QueryClientStateResponse) Reset

func (x *QueryClientStateResponse) Reset()

func (*QueryClientStateResponse) String

func (x *QueryClientStateResponse) String() string

type QueryClientStatesRequest

type QueryClientStatesRequest struct {

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

QueryClientStatesRequest is the request type for the Query/ClientStates RPC method

func (*QueryClientStatesRequest) Descriptor deprecated

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

Deprecated: Use QueryClientStatesRequest.ProtoReflect.Descriptor instead.

func (*QueryClientStatesRequest) GetPagination

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

func (*QueryClientStatesRequest) ProtoMessage

func (*QueryClientStatesRequest) ProtoMessage()

func (*QueryClientStatesRequest) ProtoReflect

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

func (*QueryClientStatesRequest) Reset

func (x *QueryClientStatesRequest) Reset()

func (*QueryClientStatesRequest) String

func (x *QueryClientStatesRequest) String() string

type QueryClientStatesResponse

type QueryClientStatesResponse struct {

	// list of stored ClientStates of the chain.
	ClientStates []*IdentifiedClientState `protobuf:"bytes,1,rep,name=client_states,json=clientStates,proto3" json:"client_states,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryClientStatesResponse is the response type for the Query/ClientStates RPC method.

func (*QueryClientStatesResponse) Descriptor deprecated

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

Deprecated: Use QueryClientStatesResponse.ProtoReflect.Descriptor instead.

func (*QueryClientStatesResponse) GetClientStates

func (x *QueryClientStatesResponse) GetClientStates() []*IdentifiedClientState

func (*QueryClientStatesResponse) GetPagination

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

func (*QueryClientStatesResponse) ProtoMessage

func (*QueryClientStatesResponse) ProtoMessage()

func (*QueryClientStatesResponse) ProtoReflect

func (*QueryClientStatesResponse) Reset

func (x *QueryClientStatesResponse) Reset()

func (*QueryClientStatesResponse) String

func (x *QueryClientStatesResponse) String() string

type QueryClientStatusRequest

type QueryClientStatusRequest struct {

	// client unique identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// contains filtered or unexported fields
}

QueryClientStatusRequest is the request type for the Query/ClientStatus RPC method

func (*QueryClientStatusRequest) Descriptor deprecated

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

Deprecated: Use QueryClientStatusRequest.ProtoReflect.Descriptor instead.

func (*QueryClientStatusRequest) GetClientId

func (x *QueryClientStatusRequest) GetClientId() string

func (*QueryClientStatusRequest) ProtoMessage

func (*QueryClientStatusRequest) ProtoMessage()

func (*QueryClientStatusRequest) ProtoReflect

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

func (*QueryClientStatusRequest) Reset

func (x *QueryClientStatusRequest) Reset()

func (*QueryClientStatusRequest) String

func (x *QueryClientStatusRequest) String() string

type QueryClientStatusResponse

type QueryClientStatusResponse struct {
	Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

QueryClientStatusResponse is the response type for the Query/ClientStatus RPC method. It returns the current status of the IBC client.

func (*QueryClientStatusResponse) Descriptor deprecated

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

Deprecated: Use QueryClientStatusResponse.ProtoReflect.Descriptor instead.

func (*QueryClientStatusResponse) GetStatus

func (x *QueryClientStatusResponse) GetStatus() string

func (*QueryClientStatusResponse) ProtoMessage

func (*QueryClientStatusResponse) ProtoMessage()

func (*QueryClientStatusResponse) ProtoReflect

func (*QueryClientStatusResponse) Reset

func (x *QueryClientStatusResponse) Reset()

func (*QueryClientStatusResponse) String

func (x *QueryClientStatusResponse) String() string

type QueryConsensusStateHeightsRequest

type QueryConsensusStateHeightsRequest struct {

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

QueryConsensusStateHeightsRequest is the request type for Query/ConsensusStateHeights RPC method.

func (*QueryConsensusStateHeightsRequest) Descriptor deprecated

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

Deprecated: Use QueryConsensusStateHeightsRequest.ProtoReflect.Descriptor instead.

func (*QueryConsensusStateHeightsRequest) GetClientId

func (x *QueryConsensusStateHeightsRequest) GetClientId() string

func (*QueryConsensusStateHeightsRequest) GetPagination

func (*QueryConsensusStateHeightsRequest) ProtoMessage

func (*QueryConsensusStateHeightsRequest) ProtoMessage()

func (*QueryConsensusStateHeightsRequest) ProtoReflect

func (*QueryConsensusStateHeightsRequest) Reset

func (*QueryConsensusStateHeightsRequest) String

type QueryConsensusStateHeightsResponse

type QueryConsensusStateHeightsResponse struct {

	// consensus state heights
	ConsensusStateHeights []*Height `` /* 126-byte string literal not displayed */
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryConsensusStateHeightsResponse is the response type for the Query/ConsensusStateHeights RPC method

func (*QueryConsensusStateHeightsResponse) Descriptor deprecated

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

Deprecated: Use QueryConsensusStateHeightsResponse.ProtoReflect.Descriptor instead.

func (*QueryConsensusStateHeightsResponse) GetConsensusStateHeights

func (x *QueryConsensusStateHeightsResponse) GetConsensusStateHeights() []*Height

func (*QueryConsensusStateHeightsResponse) GetPagination

func (*QueryConsensusStateHeightsResponse) ProtoMessage

func (*QueryConsensusStateHeightsResponse) ProtoMessage()

func (*QueryConsensusStateHeightsResponse) ProtoReflect

func (*QueryConsensusStateHeightsResponse) Reset

func (*QueryConsensusStateHeightsResponse) String

type QueryConsensusStateRequest

type QueryConsensusStateRequest struct {

	// client identifier
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// consensus state revision number
	RevisionNumber uint64 `protobuf:"varint,2,opt,name=revision_number,json=revisionNumber,proto3" json:"revision_number,omitempty"`
	// consensus state revision height
	RevisionHeight uint64 `protobuf:"varint,3,opt,name=revision_height,json=revisionHeight,proto3" json:"revision_height,omitempty"`
	// latest_height overrides the height field and queries the latest stored
	// ConsensusState
	LatestHeight bool `protobuf:"varint,4,opt,name=latest_height,json=latestHeight,proto3" json:"latest_height,omitempty"`
	// contains filtered or unexported fields
}

QueryConsensusStateRequest is the request type for the Query/ConsensusState RPC method. Besides the consensus state, it includes a proof and the height from which the proof was retrieved.

func (*QueryConsensusStateRequest) Descriptor deprecated

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

Deprecated: Use QueryConsensusStateRequest.ProtoReflect.Descriptor instead.

func (*QueryConsensusStateRequest) GetClientId

func (x *QueryConsensusStateRequest) GetClientId() string

func (*QueryConsensusStateRequest) GetLatestHeight

func (x *QueryConsensusStateRequest) GetLatestHeight() bool

func (*QueryConsensusStateRequest) GetRevisionHeight

func (x *QueryConsensusStateRequest) GetRevisionHeight() uint64

func (*QueryConsensusStateRequest) GetRevisionNumber

func (x *QueryConsensusStateRequest) GetRevisionNumber() uint64

func (*QueryConsensusStateRequest) ProtoMessage

func (*QueryConsensusStateRequest) ProtoMessage()

func (*QueryConsensusStateRequest) ProtoReflect

func (*QueryConsensusStateRequest) Reset

func (x *QueryConsensusStateRequest) Reset()

func (*QueryConsensusStateRequest) String

func (x *QueryConsensusStateRequest) String() string

type QueryConsensusStateResponse

type QueryConsensusStateResponse struct {

	// consensus state associated with the client identifier at the given height
	ConsensusState *anypb.Any `protobuf:"bytes,1,opt,name=consensus_state,json=consensusState,proto3" json:"consensus_state,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 *Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// contains filtered or unexported fields
}

QueryConsensusStateResponse is the response type for the Query/ConsensusState RPC method

func (*QueryConsensusStateResponse) Descriptor deprecated

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

Deprecated: Use QueryConsensusStateResponse.ProtoReflect.Descriptor instead.

func (*QueryConsensusStateResponse) GetConsensusState

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

func (*QueryConsensusStateResponse) GetProof

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

func (*QueryConsensusStateResponse) GetProofHeight

func (x *QueryConsensusStateResponse) GetProofHeight() *Height

func (*QueryConsensusStateResponse) ProtoMessage

func (*QueryConsensusStateResponse) ProtoMessage()

func (*QueryConsensusStateResponse) ProtoReflect

func (*QueryConsensusStateResponse) Reset

func (x *QueryConsensusStateResponse) Reset()

func (*QueryConsensusStateResponse) String

func (x *QueryConsensusStateResponse) String() string

type QueryConsensusStatesRequest

type QueryConsensusStatesRequest struct {

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

QueryConsensusStatesRequest is the request type for the Query/ConsensusStates RPC method.

func (*QueryConsensusStatesRequest) Descriptor deprecated

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

Deprecated: Use QueryConsensusStatesRequest.ProtoReflect.Descriptor instead.

func (*QueryConsensusStatesRequest) GetClientId

func (x *QueryConsensusStatesRequest) GetClientId() string

func (*QueryConsensusStatesRequest) GetPagination

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

func (*QueryConsensusStatesRequest) ProtoMessage

func (*QueryConsensusStatesRequest) ProtoMessage()

func (*QueryConsensusStatesRequest) ProtoReflect

func (*QueryConsensusStatesRequest) Reset

func (x *QueryConsensusStatesRequest) Reset()

func (*QueryConsensusStatesRequest) String

func (x *QueryConsensusStatesRequest) String() string

type QueryConsensusStatesResponse

type QueryConsensusStatesResponse struct {

	// consensus states associated with the identifier
	ConsensusStates []*ConsensusStateWithHeight `protobuf:"bytes,1,rep,name=consensus_states,json=consensusStates,proto3" json:"consensus_states,omitempty"`
	// pagination response
	Pagination *v1beta1.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
	// contains filtered or unexported fields
}

QueryConsensusStatesResponse is the response type for the Query/ConsensusStates RPC method

func (*QueryConsensusStatesResponse) Descriptor deprecated

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

Deprecated: Use QueryConsensusStatesResponse.ProtoReflect.Descriptor instead.

func (*QueryConsensusStatesResponse) GetConsensusStates

func (x *QueryConsensusStatesResponse) GetConsensusStates() []*ConsensusStateWithHeight

func (*QueryConsensusStatesResponse) GetPagination

func (*QueryConsensusStatesResponse) ProtoMessage

func (*QueryConsensusStatesResponse) ProtoMessage()

func (*QueryConsensusStatesResponse) ProtoReflect

func (*QueryConsensusStatesResponse) Reset

func (x *QueryConsensusStatesResponse) Reset()

func (*QueryConsensusStatesResponse) String

type QueryUpgradedClientStateRequest

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

QueryUpgradedClientStateRequest is the request type for the Query/UpgradedClientState RPC method

func (*QueryUpgradedClientStateRequest) Descriptor deprecated

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

Deprecated: Use QueryUpgradedClientStateRequest.ProtoReflect.Descriptor instead.

func (*QueryUpgradedClientStateRequest) ProtoMessage

func (*QueryUpgradedClientStateRequest) ProtoMessage()

func (*QueryUpgradedClientStateRequest) ProtoReflect

func (*QueryUpgradedClientStateRequest) Reset

func (*QueryUpgradedClientStateRequest) String

type QueryUpgradedClientStateResponse

type QueryUpgradedClientStateResponse struct {

	// client state associated with the request identifier
	UpgradedClientState *anypb.Any `protobuf:"bytes,1,opt,name=upgraded_client_state,json=upgradedClientState,proto3" json:"upgraded_client_state,omitempty"`
	// contains filtered or unexported fields
}

QueryUpgradedClientStateResponse is the response type for the Query/UpgradedClientState RPC method.

func (*QueryUpgradedClientStateResponse) Descriptor deprecated

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

Deprecated: Use QueryUpgradedClientStateResponse.ProtoReflect.Descriptor instead.

func (*QueryUpgradedClientStateResponse) GetUpgradedClientState

func (x *QueryUpgradedClientStateResponse) GetUpgradedClientState() *anypb.Any

func (*QueryUpgradedClientStateResponse) ProtoMessage

func (*QueryUpgradedClientStateResponse) ProtoMessage()

func (*QueryUpgradedClientStateResponse) ProtoReflect

func (*QueryUpgradedClientStateResponse) Reset

func (*QueryUpgradedClientStateResponse) String

type QueryUpgradedConsensusStateRequest

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

QueryUpgradedConsensusStateRequest is the request type for the Query/UpgradedConsensusState RPC method

func (*QueryUpgradedConsensusStateRequest) Descriptor deprecated

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

Deprecated: Use QueryUpgradedConsensusStateRequest.ProtoReflect.Descriptor instead.

func (*QueryUpgradedConsensusStateRequest) ProtoMessage

func (*QueryUpgradedConsensusStateRequest) ProtoMessage()

func (*QueryUpgradedConsensusStateRequest) ProtoReflect

func (*QueryUpgradedConsensusStateRequest) Reset

func (*QueryUpgradedConsensusStateRequest) String

type QueryUpgradedConsensusStateResponse

type QueryUpgradedConsensusStateResponse struct {

	// Consensus state associated with the request identifier
	UpgradedConsensusState *anypb.Any `` /* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

QueryUpgradedConsensusStateResponse is the response type for the Query/UpgradedConsensusState RPC method.

func (*QueryUpgradedConsensusStateResponse) Descriptor deprecated

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

Deprecated: Use QueryUpgradedConsensusStateResponse.ProtoReflect.Descriptor instead.

func (*QueryUpgradedConsensusStateResponse) GetUpgradedConsensusState

func (x *QueryUpgradedConsensusStateResponse) GetUpgradedConsensusState() *anypb.Any

func (*QueryUpgradedConsensusStateResponse) ProtoMessage

func (*QueryUpgradedConsensusStateResponse) ProtoMessage()

func (*QueryUpgradedConsensusStateResponse) ProtoReflect

func (*QueryUpgradedConsensusStateResponse) Reset

func (*QueryUpgradedConsensusStateResponse) String

type QueryVerifyMembershipRequest

type QueryVerifyMembershipRequest struct {

	// client unique identifier.
	ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	// the proof to be verified by the client.
	Proof []byte `protobuf:"bytes,2,opt,name=proof,proto3" json:"proof,omitempty"`
	// the height of the commitment root at which the proof is verified.
	ProofHeight *Height `protobuf:"bytes,3,opt,name=proof_height,json=proofHeight,proto3" json:"proof_height,omitempty"`
	// the commitment key path.
	MerklePath *v1.MerklePath `protobuf:"bytes,4,opt,name=merkle_path,json=merklePath,proto3" json:"merkle_path,omitempty"`
	// the value which is proven.
	Value []byte `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"`
	// optional time delay
	TimeDelay uint64 `protobuf:"varint,6,opt,name=time_delay,json=timeDelay,proto3" json:"time_delay,omitempty"`
	// optional block delay
	BlockDelay uint64 `protobuf:"varint,7,opt,name=block_delay,json=blockDelay,proto3" json:"block_delay,omitempty"`
	// contains filtered or unexported fields
}

QueryVerifyMembershipRequest is the request type for the Query/VerifyMembership RPC method

func (*QueryVerifyMembershipRequest) Descriptor deprecated

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

Deprecated: Use QueryVerifyMembershipRequest.ProtoReflect.Descriptor instead.

func (*QueryVerifyMembershipRequest) GetBlockDelay

func (x *QueryVerifyMembershipRequest) GetBlockDelay() uint64

func (*QueryVerifyMembershipRequest) GetClientId

func (x *QueryVerifyMembershipRequest) GetClientId() string

func (*QueryVerifyMembershipRequest) GetMerklePath

func (x *QueryVerifyMembershipRequest) GetMerklePath() *v1.MerklePath

func (*QueryVerifyMembershipRequest) GetProof

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

func (*QueryVerifyMembershipRequest) GetProofHeight

func (x *QueryVerifyMembershipRequest) GetProofHeight() *Height

func (*QueryVerifyMembershipRequest) GetTimeDelay

func (x *QueryVerifyMembershipRequest) GetTimeDelay() uint64

func (*QueryVerifyMembershipRequest) GetValue

func (x *QueryVerifyMembershipRequest) GetValue() []byte

func (*QueryVerifyMembershipRequest) ProtoMessage

func (*QueryVerifyMembershipRequest) ProtoMessage()

func (*QueryVerifyMembershipRequest) ProtoReflect

func (*QueryVerifyMembershipRequest) Reset

func (x *QueryVerifyMembershipRequest) Reset()

func (*QueryVerifyMembershipRequest) String

type QueryVerifyMembershipResponse

type QueryVerifyMembershipResponse struct {

	// boolean indicating success or failure of proof verification.
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

QueryVerifyMembershipResponse is the response type for the Query/VerifyMembership RPC method

func (*QueryVerifyMembershipResponse) Descriptor deprecated

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

Deprecated: Use QueryVerifyMembershipResponse.ProtoReflect.Descriptor instead.

func (*QueryVerifyMembershipResponse) GetSuccess

func (x *QueryVerifyMembershipResponse) GetSuccess() bool

func (*QueryVerifyMembershipResponse) ProtoMessage

func (*QueryVerifyMembershipResponse) ProtoMessage()

func (*QueryVerifyMembershipResponse) ProtoReflect

func (*QueryVerifyMembershipResponse) Reset

func (x *QueryVerifyMembershipResponse) Reset()

func (*QueryVerifyMembershipResponse) String

type UpgradeProposal deprecated

type UpgradeProposal struct {
	Title       string        `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string        `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Plan        *v1beta1.Plan `protobuf:"bytes,3,opt,name=plan,proto3" json:"plan,omitempty"`
	// An UpgradedClientState must be provided to perform an IBC breaking upgrade.
	// This will make the chain commit to the correct upgraded (self) client state
	// before the upgrade occurs, so that connecting chains can verify that the
	// new upgraded client is valid by verifying a proof on the previous version
	// of the chain. This will allow IBC connections to persist smoothly across
	// planned chain upgrades
	UpgradedClientState *anypb.Any `protobuf:"bytes,4,opt,name=upgraded_client_state,json=upgradedClientState,proto3" json:"upgraded_client_state,omitempty"`
	// contains filtered or unexported fields
}

UpgradeProposal is a gov Content type for initiating an IBC breaking upgrade.

Deprecated: Please use MsgIBCSoftwareUpgrade in favour of this message type.

Deprecated: Do not use.

func (*UpgradeProposal) Descriptor deprecated

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

Deprecated: Use UpgradeProposal.ProtoReflect.Descriptor instead.

func (*UpgradeProposal) GetDescription

func (x *UpgradeProposal) GetDescription() string

func (*UpgradeProposal) GetPlan

func (x *UpgradeProposal) GetPlan() *v1beta1.Plan

func (*UpgradeProposal) GetTitle

func (x *UpgradeProposal) GetTitle() string

func (*UpgradeProposal) GetUpgradedClientState

func (x *UpgradeProposal) GetUpgradedClientState() *anypb.Any

func (*UpgradeProposal) ProtoMessage

func (*UpgradeProposal) ProtoMessage()

func (*UpgradeProposal) ProtoReflect

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

func (*UpgradeProposal) Reset

func (x *UpgradeProposal) Reset()

func (*UpgradeProposal) String

func (x *UpgradeProposal) String() string

Jump to

Keyboard shortcuts

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