import { Timestamp } from "../../google/protobuf/timestamp"; import { ConsensusParams, ConsensusParamsAmino } from "../types/params"; import { ProofOps, ProofOpsAmino } from "../crypto/proof"; import { PublicKey, PublicKeyAmino } from "../crypto/keys"; import { BlockIDFlag } from "../types/validator"; import { BinaryReader, BinaryWriter } from "../../binary"; export declare const protobufPackage = "tendermint.abci"; export declare enum CheckTxType { NEW = 0, RECHECK = 1, UNRECOGNIZED = -1 } export declare const CheckTxTypeAmino: typeof CheckTxType; export declare function checkTxTypeFromJSON(object: any): CheckTxType; export declare function checkTxTypeToJSON(object: CheckTxType): string; export declare enum ResponseOfferSnapshot_Result { /** UNKNOWN - Unknown result, abort all snapshot restoration */ UNKNOWN = 0, /** ACCEPT - Snapshot accepted, apply chunks */ ACCEPT = 1, /** ABORT - Abort all snapshot restoration */ ABORT = 2, /** REJECT - Reject this specific snapshot, try others */ REJECT = 3, /** REJECT_FORMAT - Reject all snapshots of this format, try others */ REJECT_FORMAT = 4, /** REJECT_SENDER - Reject all snapshots from the sender(s), try others */ REJECT_SENDER = 5, UNRECOGNIZED = -1 } export declare const ResponseOfferSnapshot_ResultAmino: typeof ResponseOfferSnapshot_Result; export declare function responseOfferSnapshot_ResultFromJSON(object: any): ResponseOfferSnapshot_Result; export declare function responseOfferSnapshot_ResultToJSON(object: ResponseOfferSnapshot_Result): string; export declare enum ResponseApplySnapshotChunk_Result { /** UNKNOWN - Unknown result, abort all snapshot restoration */ UNKNOWN = 0, /** ACCEPT - Chunk successfully accepted */ ACCEPT = 1, /** ABORT - Abort all snapshot restoration */ ABORT = 2, /** RETRY - Retry chunk (combine with refetch and reject) */ RETRY = 3, /** RETRY_SNAPSHOT - Retry snapshot (combine with refetch and reject) */ RETRY_SNAPSHOT = 4, /** REJECT_SNAPSHOT - Reject this snapshot, try others */ REJECT_SNAPSHOT = 5, UNRECOGNIZED = -1 } export declare const ResponseApplySnapshotChunk_ResultAmino: typeof ResponseApplySnapshotChunk_Result; export declare function responseApplySnapshotChunk_ResultFromJSON(object: any): ResponseApplySnapshotChunk_Result; export declare function responseApplySnapshotChunk_ResultToJSON(object: ResponseApplySnapshotChunk_Result): string; export declare enum ResponseProcessProposal_ProposalStatus { UNKNOWN = 0, ACCEPT = 1, REJECT = 2, UNRECOGNIZED = -1 } export declare const ResponseProcessProposal_ProposalStatusAmino: typeof ResponseProcessProposal_ProposalStatus; export declare function responseProcessProposal_ProposalStatusFromJSON(object: any): ResponseProcessProposal_ProposalStatus; export declare function responseProcessProposal_ProposalStatusToJSON(object: ResponseProcessProposal_ProposalStatus): string; export declare enum ResponseVerifyVoteExtension_VerifyStatus { UNKNOWN = 0, ACCEPT = 1, /** * REJECT - Rejecting the vote extension will reject the entire precommit by the sender. * Incorrectly implementing this thus has liveness implications as it may affect * CometBFT's ability to receive 2/3+ valid votes to finalize the block. * Honest nodes should never be rejected. */ REJECT = 2, UNRECOGNIZED = -1 } export declare const ResponseVerifyVoteExtension_VerifyStatusAmino: typeof ResponseVerifyVoteExtension_VerifyStatus; export declare function responseVerifyVoteExtension_VerifyStatusFromJSON(object: any): ResponseVerifyVoteExtension_VerifyStatus; export declare function responseVerifyVoteExtension_VerifyStatusToJSON(object: ResponseVerifyVoteExtension_VerifyStatus): string; export declare enum MisbehaviorType { UNKNOWN = 0, DUPLICATE_VOTE = 1, LIGHT_CLIENT_ATTACK = 2, UNRECOGNIZED = -1 } export declare const MisbehaviorTypeAmino: typeof MisbehaviorType; export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType; export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string; export interface Request { echo?: RequestEcho | undefined; flush?: RequestFlush | undefined; info?: RequestInfo | undefined; initChain?: RequestInitChain | undefined; query?: RequestQuery | undefined; checkTx?: RequestCheckTx | undefined; commit?: RequestCommit | undefined; listSnapshots?: RequestListSnapshots | undefined; offerSnapshot?: RequestOfferSnapshot | undefined; loadSnapshotChunk?: RequestLoadSnapshotChunk | undefined; applySnapshotChunk?: RequestApplySnapshotChunk | undefined; prepareProposal?: RequestPrepareProposal | undefined; processProposal?: RequestProcessProposal | undefined; extendVote?: RequestExtendVote | undefined; verifyVoteExtension?: RequestVerifyVoteExtension | undefined; finalizeBlock?: RequestFinalizeBlock | undefined; } export interface RequestProtoMsg { typeUrl: "/tendermint.abci.Request"; value: Uint8Array; } export interface RequestAmino { echo?: RequestEchoAmino | undefined; flush?: RequestFlushAmino | undefined; info?: RequestInfoAmino | undefined; init_chain?: RequestInitChainAmino | undefined; query?: RequestQueryAmino | undefined; check_tx?: RequestCheckTxAmino | undefined; commit?: RequestCommitAmino | undefined; list_snapshots?: RequestListSnapshotsAmino | undefined; offer_snapshot?: RequestOfferSnapshotAmino | undefined; load_snapshot_chunk?: RequestLoadSnapshotChunkAmino | undefined; apply_snapshot_chunk?: RequestApplySnapshotChunkAmino | undefined; prepare_proposal?: RequestPrepareProposalAmino | undefined; process_proposal?: RequestProcessProposalAmino | undefined; extend_vote?: RequestExtendVoteAmino | undefined; verify_vote_extension?: RequestVerifyVoteExtensionAmino | undefined; finalize_block?: RequestFinalizeBlockAmino | undefined; } export interface RequestAminoMsg { type: "/tendermint.abci.Request"; value: RequestAmino; } export interface RequestEcho { message: string; } export interface RequestEchoProtoMsg { typeUrl: "/tendermint.abci.RequestEcho"; value: Uint8Array; } export interface RequestEchoAmino { message?: string; } export interface RequestEchoAminoMsg { type: "/tendermint.abci.RequestEcho"; value: RequestEchoAmino; } export interface RequestFlush { } export interface RequestFlushProtoMsg { typeUrl: "/tendermint.abci.RequestFlush"; value: Uint8Array; } export interface RequestFlushAmino { } export interface RequestFlushAminoMsg { type: "/tendermint.abci.RequestFlush"; value: RequestFlushAmino; } export interface RequestInfo { version: string; blockVersion: bigint; p2pVersion: bigint; abciVersion: string; } export interface RequestInfoProtoMsg { typeUrl: "/tendermint.abci.RequestInfo"; value: Uint8Array; } export interface RequestInfoAmino { version?: string; block_version?: string; p2p_version?: string; abci_version?: string; } export interface RequestInfoAminoMsg { type: "/tendermint.abci.RequestInfo"; value: RequestInfoAmino; } export interface RequestInitChain { time: Timestamp | undefined; chainId: string; consensusParams?: ConsensusParams | undefined; validators: ValidatorUpdate[]; appStateBytes: Uint8Array; initialHeight: bigint; } export interface RequestInitChainProtoMsg { typeUrl: "/tendermint.abci.RequestInitChain"; value: Uint8Array; } export interface RequestInitChainAmino { time?: string | undefined; chain_id?: string; consensus_params?: ConsensusParamsAmino | undefined; validators?: ValidatorUpdateAmino[]; app_state_bytes?: string; initial_height?: string; } export interface RequestInitChainAminoMsg { type: "/tendermint.abci.RequestInitChain"; value: RequestInitChainAmino; } export interface RequestQuery { data: Uint8Array; path: string; height: bigint; prove: boolean; } export interface RequestQueryProtoMsg { typeUrl: "/tendermint.abci.RequestQuery"; value: Uint8Array; } export interface RequestQueryAmino { data?: string; path?: string; height?: string; prove?: boolean; } export interface RequestQueryAminoMsg { type: "/tendermint.abci.RequestQuery"; value: RequestQueryAmino; } export interface RequestCheckTx { tx: Uint8Array; type: CheckTxType; } export interface RequestCheckTxProtoMsg { typeUrl: "/tendermint.abci.RequestCheckTx"; value: Uint8Array; } export interface RequestCheckTxAmino { tx?: string; type?: CheckTxType; } export interface RequestCheckTxAminoMsg { type: "/tendermint.abci.RequestCheckTx"; value: RequestCheckTxAmino; } export interface RequestCommit { } export interface RequestCommitProtoMsg { typeUrl: "/tendermint.abci.RequestCommit"; value: Uint8Array; } export interface RequestCommitAmino { } export interface RequestCommitAminoMsg { type: "/tendermint.abci.RequestCommit"; value: RequestCommitAmino; } /** lists available snapshots */ export interface RequestListSnapshots { } export interface RequestListSnapshotsProtoMsg { typeUrl: "/tendermint.abci.RequestListSnapshots"; value: Uint8Array; } /** lists available snapshots */ export interface RequestListSnapshotsAmino { } export interface RequestListSnapshotsAminoMsg { type: "/tendermint.abci.RequestListSnapshots"; value: RequestListSnapshotsAmino; } /** offers a snapshot to the application */ export interface RequestOfferSnapshot { /** snapshot offered by peers */ snapshot?: Snapshot | undefined; /** light client-verified app hash for snapshot height */ appHash: Uint8Array; } export interface RequestOfferSnapshotProtoMsg { typeUrl: "/tendermint.abci.RequestOfferSnapshot"; value: Uint8Array; } /** offers a snapshot to the application */ export interface RequestOfferSnapshotAmino { /** snapshot offered by peers */ snapshot?: SnapshotAmino | undefined; /** light client-verified app hash for snapshot height */ app_hash?: string; } export interface RequestOfferSnapshotAminoMsg { type: "/tendermint.abci.RequestOfferSnapshot"; value: RequestOfferSnapshotAmino; } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunk { height: bigint; format: number; chunk: number; } export interface RequestLoadSnapshotChunkProtoMsg { typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk"; value: Uint8Array; } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunkAmino { height?: string; format?: number; chunk?: number; } export interface RequestLoadSnapshotChunkAminoMsg { type: "/tendermint.abci.RequestLoadSnapshotChunk"; value: RequestLoadSnapshotChunkAmino; } /** Applies a snapshot chunk */ export interface RequestApplySnapshotChunk { index: number; chunk: Uint8Array; sender: string; } export interface RequestApplySnapshotChunkProtoMsg { typeUrl: "/tendermint.abci.RequestApplySnapshotChunk"; value: Uint8Array; } /** Applies a snapshot chunk */ export interface RequestApplySnapshotChunkAmino { index?: number; chunk?: string; sender?: string; } export interface RequestApplySnapshotChunkAminoMsg { type: "/tendermint.abci.RequestApplySnapshotChunk"; value: RequestApplySnapshotChunkAmino; } export interface RequestPrepareProposal { /** the modified transactions cannot exceed this size. */ maxTxBytes: bigint; /** * txs is an array of transactions that will be included in a block, * sent to the app for possible modifications. */ txs: Uint8Array[]; localLastCommit: ExtendedCommitInfo | undefined; misbehavior: Misbehavior[]; height: bigint; time: Timestamp | undefined; nextValidatorsHash: Uint8Array; /** address of the public key of the validator proposing the block. */ proposerAddress: Uint8Array; } export interface RequestPrepareProposalProtoMsg { typeUrl: "/tendermint.abci.RequestPrepareProposal"; value: Uint8Array; } export interface RequestPrepareProposalAmino { /** the modified transactions cannot exceed this size. */ max_tx_bytes?: string; /** * txs is an array of transactions that will be included in a block, * sent to the app for possible modifications. */ txs?: string[]; local_last_commit?: ExtendedCommitInfoAmino | undefined; misbehavior?: MisbehaviorAmino[]; height?: string; time?: string | undefined; next_validators_hash?: string; /** address of the public key of the validator proposing the block. */ proposer_address?: string; } export interface RequestPrepareProposalAminoMsg { type: "/tendermint.abci.RequestPrepareProposal"; value: RequestPrepareProposalAmino; } export interface RequestProcessProposal { txs: Uint8Array[]; proposedLastCommit: CommitInfo | undefined; misbehavior: Misbehavior[]; /** hash is the merkle root hash of the fields of the proposed block. */ hash: Uint8Array; height: bigint; time: Timestamp | undefined; nextValidatorsHash: Uint8Array; /** address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } export interface RequestProcessProposalProtoMsg { typeUrl: "/tendermint.abci.RequestProcessProposal"; value: Uint8Array; } export interface RequestProcessProposalAmino { txs?: string[]; proposed_last_commit?: CommitInfoAmino | undefined; misbehavior?: MisbehaviorAmino[]; /** hash is the merkle root hash of the fields of the proposed block. */ hash?: string; height?: string; time?: string | undefined; next_validators_hash?: string; /** address of the public key of the original proposer of the block. */ proposer_address?: string; } export interface RequestProcessProposalAminoMsg { type: "/tendermint.abci.RequestProcessProposal"; value: RequestProcessProposalAmino; } /** Extends a vote with application-injected data */ export interface RequestExtendVote { /** the hash of the block that this vote may be referring to */ hash: Uint8Array; /** the height of the extended vote */ height: bigint; /** info of the block that this vote may be referring to */ time: Timestamp | undefined; txs: Uint8Array[]; proposedLastCommit: CommitInfo | undefined; misbehavior: Misbehavior[]; nextValidatorsHash: Uint8Array; /** address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } export interface RequestExtendVoteProtoMsg { typeUrl: "/tendermint.abci.RequestExtendVote"; value: Uint8Array; } /** Extends a vote with application-injected data */ export interface RequestExtendVoteAmino { /** the hash of the block that this vote may be referring to */ hash?: string; /** the height of the extended vote */ height?: string; /** info of the block that this vote may be referring to */ time?: string | undefined; txs?: string[]; proposed_last_commit?: CommitInfoAmino | undefined; misbehavior?: MisbehaviorAmino[]; next_validators_hash?: string; /** address of the public key of the original proposer of the block. */ proposer_address?: string; } export interface RequestExtendVoteAminoMsg { type: "/tendermint.abci.RequestExtendVote"; value: RequestExtendVoteAmino; } /** Verify the vote extension */ export interface RequestVerifyVoteExtension { /** the hash of the block that this received vote corresponds to */ hash: Uint8Array; /** the validator that signed the vote extension */ validatorAddress: Uint8Array; height: bigint; voteExtension: Uint8Array; } export interface RequestVerifyVoteExtensionProtoMsg { typeUrl: "/tendermint.abci.RequestVerifyVoteExtension"; value: Uint8Array; } /** Verify the vote extension */ export interface RequestVerifyVoteExtensionAmino { /** the hash of the block that this received vote corresponds to */ hash?: string; /** the validator that signed the vote extension */ validator_address?: string; height?: string; vote_extension?: string; } export interface RequestVerifyVoteExtensionAminoMsg { type: "/tendermint.abci.RequestVerifyVoteExtension"; value: RequestVerifyVoteExtensionAmino; } export interface RequestFinalizeBlock { txs: Uint8Array[]; decidedLastCommit: CommitInfo | undefined; misbehavior: Misbehavior[]; /** hash is the merkle root hash of the fields of the decided block. */ hash: Uint8Array; height: bigint; time: Timestamp | undefined; nextValidatorsHash: Uint8Array; /** proposer_address is the address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } export interface RequestFinalizeBlockProtoMsg { typeUrl: "/tendermint.abci.RequestFinalizeBlock"; value: Uint8Array; } export interface RequestFinalizeBlockAmino { txs?: string[]; decided_last_commit?: CommitInfoAmino | undefined; misbehavior?: MisbehaviorAmino[]; /** hash is the merkle root hash of the fields of the decided block. */ hash?: string; height?: string; time?: string | undefined; next_validators_hash?: string; /** proposer_address is the address of the public key of the original proposer of the block. */ proposer_address?: string; } export interface RequestFinalizeBlockAminoMsg { type: "/tendermint.abci.RequestFinalizeBlock"; value: RequestFinalizeBlockAmino; } export interface Response { exception?: ResponseException | undefined; echo?: ResponseEcho | undefined; flush?: ResponseFlush | undefined; info?: ResponseInfo | undefined; initChain?: ResponseInitChain | undefined; query?: ResponseQuery | undefined; checkTx?: ResponseCheckTx | undefined; commit?: ResponseCommit | undefined; listSnapshots?: ResponseListSnapshots | undefined; offerSnapshot?: ResponseOfferSnapshot | undefined; loadSnapshotChunk?: ResponseLoadSnapshotChunk | undefined; applySnapshotChunk?: ResponseApplySnapshotChunk | undefined; prepareProposal?: ResponsePrepareProposal | undefined; processProposal?: ResponseProcessProposal | undefined; extendVote?: ResponseExtendVote | undefined; verifyVoteExtension?: ResponseVerifyVoteExtension | undefined; finalizeBlock?: ResponseFinalizeBlock | undefined; } export interface ResponseProtoMsg { typeUrl: "/tendermint.abci.Response"; value: Uint8Array; } export interface ResponseAmino { exception?: ResponseExceptionAmino | undefined; echo?: ResponseEchoAmino | undefined; flush?: ResponseFlushAmino | undefined; info?: ResponseInfoAmino | undefined; init_chain?: ResponseInitChainAmino | undefined; query?: ResponseQueryAmino | undefined; check_tx?: ResponseCheckTxAmino | undefined; commit?: ResponseCommitAmino | undefined; list_snapshots?: ResponseListSnapshotsAmino | undefined; offer_snapshot?: ResponseOfferSnapshotAmino | undefined; load_snapshot_chunk?: ResponseLoadSnapshotChunkAmino | undefined; apply_snapshot_chunk?: ResponseApplySnapshotChunkAmino | undefined; prepare_proposal?: ResponsePrepareProposalAmino | undefined; process_proposal?: ResponseProcessProposalAmino | undefined; extend_vote?: ResponseExtendVoteAmino | undefined; verify_vote_extension?: ResponseVerifyVoteExtensionAmino | undefined; finalize_block?: ResponseFinalizeBlockAmino | undefined; } export interface ResponseAminoMsg { type: "/tendermint.abci.Response"; value: ResponseAmino; } /** nondeterministic */ export interface ResponseException { error: string; } export interface ResponseExceptionProtoMsg { typeUrl: "/tendermint.abci.ResponseException"; value: Uint8Array; } /** nondeterministic */ export interface ResponseExceptionAmino { error?: string; } export interface ResponseExceptionAminoMsg { type: "/tendermint.abci.ResponseException"; value: ResponseExceptionAmino; } export interface ResponseEcho { message: string; } export interface ResponseEchoProtoMsg { typeUrl: "/tendermint.abci.ResponseEcho"; value: Uint8Array; } export interface ResponseEchoAmino { message?: string; } export interface ResponseEchoAminoMsg { type: "/tendermint.abci.ResponseEcho"; value: ResponseEchoAmino; } export interface ResponseFlush { } export interface ResponseFlushProtoMsg { typeUrl: "/tendermint.abci.ResponseFlush"; value: Uint8Array; } export interface ResponseFlushAmino { } export interface ResponseFlushAminoMsg { type: "/tendermint.abci.ResponseFlush"; value: ResponseFlushAmino; } export interface ResponseInfo { data: string; version: string; appVersion: bigint; lastBlockHeight: bigint; lastBlockAppHash: Uint8Array; } export interface ResponseInfoProtoMsg { typeUrl: "/tendermint.abci.ResponseInfo"; value: Uint8Array; } export interface ResponseInfoAmino { data?: string; version?: string; app_version?: string; last_block_height?: string; last_block_app_hash?: string; } export interface ResponseInfoAminoMsg { type: "/tendermint.abci.ResponseInfo"; value: ResponseInfoAmino; } export interface ResponseInitChain { consensusParams?: ConsensusParams | undefined; validators: ValidatorUpdate[]; appHash: Uint8Array; } export interface ResponseInitChainProtoMsg { typeUrl: "/tendermint.abci.ResponseInitChain"; value: Uint8Array; } export interface ResponseInitChainAmino { consensus_params?: ConsensusParamsAmino | undefined; validators?: ValidatorUpdateAmino[]; app_hash?: string; } export interface ResponseInitChainAminoMsg { type: "/tendermint.abci.ResponseInitChain"; value: ResponseInitChainAmino; } export interface ResponseQuery { code: number; /** bytes data = 2; // use "value" instead. */ log: string; /** nondeterministic */ info: string; index: bigint; key: Uint8Array; value: Uint8Array; proofOps?: ProofOps | undefined; height: bigint; codespace: string; } export interface ResponseQueryProtoMsg { typeUrl: "/tendermint.abci.ResponseQuery"; value: Uint8Array; } export interface ResponseQueryAmino { code?: number; /** bytes data = 2; // use "value" instead. */ log?: string; /** nondeterministic */ info?: string; index?: string; key?: string; value?: string; proof_ops?: ProofOpsAmino | undefined; height?: string; codespace?: string; } export interface ResponseQueryAminoMsg { type: "/tendermint.abci.ResponseQuery"; value: ResponseQueryAmino; } export interface ResponseCheckTx { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gasWanted: bigint; gasUsed: bigint; events: Event[]; codespace: string; } export interface ResponseCheckTxProtoMsg { typeUrl: "/tendermint.abci.ResponseCheckTx"; value: Uint8Array; } export interface ResponseCheckTxAmino { code?: number; data?: string; /** nondeterministic */ log?: string; /** nondeterministic */ info?: string; gas_wanted?: string; gas_used?: string; events?: EventAmino[]; codespace?: string; } export interface ResponseCheckTxAminoMsg { type: "/tendermint.abci.ResponseCheckTx"; value: ResponseCheckTxAmino; } export interface ResponseCommit { retainHeight: bigint; } export interface ResponseCommitProtoMsg { typeUrl: "/tendermint.abci.ResponseCommit"; value: Uint8Array; } export interface ResponseCommitAmino { retain_height?: string; } export interface ResponseCommitAminoMsg { type: "/tendermint.abci.ResponseCommit"; value: ResponseCommitAmino; } export interface ResponseListSnapshots { snapshots: Snapshot[]; } export interface ResponseListSnapshotsProtoMsg { typeUrl: "/tendermint.abci.ResponseListSnapshots"; value: Uint8Array; } export interface ResponseListSnapshotsAmino { snapshots?: SnapshotAmino[]; } export interface ResponseListSnapshotsAminoMsg { type: "/tendermint.abci.ResponseListSnapshots"; value: ResponseListSnapshotsAmino; } export interface ResponseOfferSnapshot { result: ResponseOfferSnapshot_Result; } export interface ResponseOfferSnapshotProtoMsg { typeUrl: "/tendermint.abci.ResponseOfferSnapshot"; value: Uint8Array; } export interface ResponseOfferSnapshotAmino { result?: ResponseOfferSnapshot_Result; } export interface ResponseOfferSnapshotAminoMsg { type: "/tendermint.abci.ResponseOfferSnapshot"; value: ResponseOfferSnapshotAmino; } export interface ResponseLoadSnapshotChunk { chunk: Uint8Array; } export interface ResponseLoadSnapshotChunkProtoMsg { typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk"; value: Uint8Array; } export interface ResponseLoadSnapshotChunkAmino { chunk?: string; } export interface ResponseLoadSnapshotChunkAminoMsg { type: "/tendermint.abci.ResponseLoadSnapshotChunk"; value: ResponseLoadSnapshotChunkAmino; } export interface ResponseApplySnapshotChunk { result: ResponseApplySnapshotChunk_Result; /** Chunks to refetch and reapply */ refetchChunks: number[]; /** Chunk senders to reject and ban */ rejectSenders: string[]; } export interface ResponseApplySnapshotChunkProtoMsg { typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk"; value: Uint8Array; } export interface ResponseApplySnapshotChunkAmino { result?: ResponseApplySnapshotChunk_Result; /** Chunks to refetch and reapply */ refetch_chunks?: number[]; /** Chunk senders to reject and ban */ reject_senders?: string[]; } export interface ResponseApplySnapshotChunkAminoMsg { type: "/tendermint.abci.ResponseApplySnapshotChunk"; value: ResponseApplySnapshotChunkAmino; } export interface ResponsePrepareProposal { txs: Uint8Array[]; } export interface ResponsePrepareProposalProtoMsg { typeUrl: "/tendermint.abci.ResponsePrepareProposal"; value: Uint8Array; } export interface ResponsePrepareProposalAmino { txs?: string[]; } export interface ResponsePrepareProposalAminoMsg { type: "/tendermint.abci.ResponsePrepareProposal"; value: ResponsePrepareProposalAmino; } export interface ResponseProcessProposal { status: ResponseProcessProposal_ProposalStatus; } export interface ResponseProcessProposalProtoMsg { typeUrl: "/tendermint.abci.ResponseProcessProposal"; value: Uint8Array; } export interface ResponseProcessProposalAmino { status?: ResponseProcessProposal_ProposalStatus; } export interface ResponseProcessProposalAminoMsg { type: "/tendermint.abci.ResponseProcessProposal"; value: ResponseProcessProposalAmino; } export interface ResponseExtendVote { voteExtension: Uint8Array; } export interface ResponseExtendVoteProtoMsg { typeUrl: "/tendermint.abci.ResponseExtendVote"; value: Uint8Array; } export interface ResponseExtendVoteAmino { vote_extension?: string; } export interface ResponseExtendVoteAminoMsg { type: "/tendermint.abci.ResponseExtendVote"; value: ResponseExtendVoteAmino; } export interface ResponseVerifyVoteExtension { status: ResponseVerifyVoteExtension_VerifyStatus; } export interface ResponseVerifyVoteExtensionProtoMsg { typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension"; value: Uint8Array; } export interface ResponseVerifyVoteExtensionAmino { status?: ResponseVerifyVoteExtension_VerifyStatus; } export interface ResponseVerifyVoteExtensionAminoMsg { type: "/tendermint.abci.ResponseVerifyVoteExtension"; value: ResponseVerifyVoteExtensionAmino; } export interface ResponseFinalizeBlock { /** set of block events emmitted as part of executing the block */ events: Event[]; /** * the result of executing each transaction including the events * the particular transction emitted. This should match the order * of the transactions delivered in the block itself */ txResults: ExecTxResult[]; /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */ validatorUpdates: ValidatorUpdate[]; /** updates to the consensus params, if any. */ consensusParamUpdates?: ConsensusParams | undefined; /** * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was * deterministic. It is up to the application to decide which algorithm to use. */ appHash: Uint8Array; } export interface ResponseFinalizeBlockProtoMsg { typeUrl: "/tendermint.abci.ResponseFinalizeBlock"; value: Uint8Array; } export interface ResponseFinalizeBlockAmino { /** set of block events emmitted as part of executing the block */ events?: EventAmino[]; /** * the result of executing each transaction including the events * the particular transction emitted. This should match the order * of the transactions delivered in the block itself */ tx_results?: ExecTxResultAmino[]; /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */ validator_updates?: ValidatorUpdateAmino[]; /** updates to the consensus params, if any. */ consensus_param_updates?: ConsensusParamsAmino | undefined; /** * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was * deterministic. It is up to the application to decide which algorithm to use. */ app_hash?: string; } export interface ResponseFinalizeBlockAminoMsg { type: "/tendermint.abci.ResponseFinalizeBlock"; value: ResponseFinalizeBlockAmino; } export interface CommitInfo { round: number; votes: VoteInfo[]; } export interface CommitInfoProtoMsg { typeUrl: "/tendermint.abci.CommitInfo"; value: Uint8Array; } export interface CommitInfoAmino { round?: number; votes?: VoteInfoAmino[]; } export interface CommitInfoAminoMsg { type: "/tendermint.abci.CommitInfo"; value: CommitInfoAmino; } /** * ExtendedCommitInfo is similar to CommitInfo except that it is only used in * the PrepareProposal request such that CometBFT can provide vote extensions * to the application. */ export interface ExtendedCommitInfo { /** The round at which the block proposer decided in the previous height. */ round: number; /** * List of validators' addresses in the last validator set with their voting * information, including vote extensions. */ votes: ExtendedVoteInfo[]; } export interface ExtendedCommitInfoProtoMsg { typeUrl: "/tendermint.abci.ExtendedCommitInfo"; value: Uint8Array; } /** * ExtendedCommitInfo is similar to CommitInfo except that it is only used in * the PrepareProposal request such that CometBFT can provide vote extensions * to the application. */ export interface ExtendedCommitInfoAmino { /** The round at which the block proposer decided in the previous height. */ round?: number; /** * List of validators' addresses in the last validator set with their voting * information, including vote extensions. */ votes?: ExtendedVoteInfoAmino[]; } export interface ExtendedCommitInfoAminoMsg { type: "/tendermint.abci.ExtendedCommitInfo"; value: ExtendedCommitInfoAmino; } /** * Event allows application developers to attach additional information to * ResponseFinalizeBlock and ResponseCheckTx. * Later, transactions may be queried using these events. */ export interface Event { type: string; attributes: EventAttribute[]; } export interface EventProtoMsg { typeUrl: "/tendermint.abci.Event"; value: Uint8Array; } /** * Event allows application developers to attach additional information to * ResponseFinalizeBlock and ResponseCheckTx. * Later, transactions may be queried using these events. */ export interface EventAmino { type?: string; attributes?: EventAttributeAmino[]; } export interface EventAminoMsg { type: "/tendermint.abci.Event"; value: EventAmino; } /** EventAttribute is a single key-value pair, associated with an event. */ export interface EventAttribute { key: string; value: string; /** nondeterministic */ index: boolean; } export interface EventAttributeProtoMsg { typeUrl: "/tendermint.abci.EventAttribute"; value: Uint8Array; } /** EventAttribute is a single key-value pair, associated with an event. */ export interface EventAttributeAmino { key?: string; value?: string; /** nondeterministic */ index?: boolean; } export interface EventAttributeAminoMsg { type: "/tendermint.abci.EventAttribute"; value: EventAttributeAmino; } /** * ExecTxResult contains results of executing one individual transaction. * * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted */ export interface ExecTxResult { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gasWanted: bigint; gasUsed: bigint; events: Event[]; codespace: string; } export interface ExecTxResultProtoMsg { typeUrl: "/tendermint.abci.ExecTxResult"; value: Uint8Array; } /** * ExecTxResult contains results of executing one individual transaction. * * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted */ export interface ExecTxResultAmino { code?: number; data?: string; /** nondeterministic */ log?: string; /** nondeterministic */ info?: string; gas_wanted?: string; gas_used?: string; events?: EventAmino[]; codespace?: string; } export interface ExecTxResultAminoMsg { type: "/tendermint.abci.ExecTxResult"; value: ExecTxResultAmino; } /** * TxResult contains results of executing the transaction. * * One usage is indexing transaction results. */ export interface TxResult { height: bigint; index: number; tx: Uint8Array; result: ExecTxResult | undefined; } export interface TxResultProtoMsg { typeUrl: "/tendermint.abci.TxResult"; value: Uint8Array; } /** * TxResult contains results of executing the transaction. * * One usage is indexing transaction results. */ export interface TxResultAmino { height?: string; index?: number; tx?: string; result?: ExecTxResultAmino | undefined; } export interface TxResultAminoMsg { type: "/tendermint.abci.TxResult"; value: TxResultAmino; } export interface Validator { /** * The first 20 bytes of SHA256(public key) * PubKey pub_key = 2 [(gogoproto.nullable)=false]; */ address: Uint8Array; /** The voting power */ power: bigint; } export interface ValidatorProtoMsg { typeUrl: "/tendermint.abci.Validator"; value: Uint8Array; } export interface ValidatorAmino { /** * The first 20 bytes of SHA256(public key) * PubKey pub_key = 2 [(gogoproto.nullable)=false]; */ address?: string; /** The voting power */ power?: string; } export interface ValidatorAminoMsg { type: "/tendermint.abci.Validator"; value: ValidatorAmino; } export interface ValidatorUpdate { pubKey: PublicKey | undefined; power: bigint; } export interface ValidatorUpdateProtoMsg { typeUrl: "/tendermint.abci.ValidatorUpdate"; value: Uint8Array; } export interface ValidatorUpdateAmino { pub_key?: PublicKeyAmino | undefined; power?: string; } export interface ValidatorUpdateAminoMsg { type: "/tendermint.abci.ValidatorUpdate"; value: ValidatorUpdateAmino; } export interface VoteInfo { validator: Validator | undefined; blockIdFlag: BlockIDFlag; } export interface VoteInfoProtoMsg { typeUrl: "/tendermint.abci.VoteInfo"; value: Uint8Array; } export interface VoteInfoAmino { validator?: ValidatorAmino | undefined; block_id_flag?: BlockIDFlag; } export interface VoteInfoAminoMsg { type: "/tendermint.abci.VoteInfo"; value: VoteInfoAmino; } export interface ExtendedVoteInfo { /** The validator that sent the vote. */ validator: Validator | undefined; /** Non-deterministic extension provided by the sending validator's application. */ voteExtension: Uint8Array; /** Vote extension signature created by CometBFT */ extensionSignature: Uint8Array; /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */ blockIdFlag: BlockIDFlag; } export interface ExtendedVoteInfoProtoMsg { typeUrl: "/tendermint.abci.ExtendedVoteInfo"; value: Uint8Array; } export interface ExtendedVoteInfoAmino { /** The validator that sent the vote. */ validator?: ValidatorAmino | undefined; /** Non-deterministic extension provided by the sending validator's application. */ vote_extension?: string; /** Vote extension signature created by CometBFT */ extension_signature?: string; /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */ block_id_flag?: BlockIDFlag; } export interface ExtendedVoteInfoAminoMsg { type: "/tendermint.abci.ExtendedVoteInfo"; value: ExtendedVoteInfoAmino; } export interface Misbehavior { type: MisbehaviorType; /** The offending validator */ validator: Validator | undefined; /** The height when the offense occurred */ height: bigint; /** The corresponding time where the offense occurred */ time: Timestamp | undefined; /** * Total voting power of the validator set in case the ABCI application does * not store historical validators. * https://github.com/tendermint/tendermint/issues/4581 */ totalVotingPower: bigint; } export interface MisbehaviorProtoMsg { typeUrl: "/tendermint.abci.Misbehavior"; value: Uint8Array; } export interface MisbehaviorAmino { type?: MisbehaviorType; /** The offending validator */ validator?: ValidatorAmino | undefined; /** The height when the offense occurred */ height?: string; /** The corresponding time where the offense occurred */ time?: string | undefined; /** * Total voting power of the validator set in case the ABCI application does * not store historical validators. * https://github.com/tendermint/tendermint/issues/4581 */ total_voting_power?: string; } export interface MisbehaviorAminoMsg { type: "/tendermint.abci.Misbehavior"; value: MisbehaviorAmino; } export interface Snapshot { /** The height at which the snapshot was taken */ height: bigint; /** The application-specific snapshot format */ format: number; /** Number of chunks in the snapshot */ chunks: number; /** Arbitrary snapshot hash, equal only if identical */ hash: Uint8Array; /** Arbitrary application metadata */ metadata: Uint8Array; } export interface SnapshotProtoMsg { typeUrl: "/tendermint.abci.Snapshot"; value: Uint8Array; } export interface SnapshotAmino { /** The height at which the snapshot was taken */ height?: string; /** The application-specific snapshot format */ format?: number; /** Number of chunks in the snapshot */ chunks?: number; /** Arbitrary snapshot hash, equal only if identical */ hash?: string; /** Arbitrary application metadata */ metadata?: string; } export interface SnapshotAminoMsg { type: "/tendermint.abci.Snapshot"; value: SnapshotAmino; } export declare const Request: { typeUrl: string; encode(message: Request, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Request; fromJSON(object: any): Request; toJSON(message: Request): unknown; fromPartial(object: Partial): Request; fromAmino(object: RequestAmino): Request; toAmino(message: Request): RequestAmino; fromAminoMsg(object: RequestAminoMsg): Request; fromProtoMsg(message: RequestProtoMsg): Request; toProto(message: Request): Uint8Array; toProtoMsg(message: Request): RequestProtoMsg; }; export declare const RequestEcho: { typeUrl: string; encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestEcho; fromJSON(object: any): RequestEcho; toJSON(message: RequestEcho): unknown; fromPartial(object: Partial): RequestEcho; fromAmino(object: RequestEchoAmino): RequestEcho; toAmino(message: RequestEcho): RequestEchoAmino; fromAminoMsg(object: RequestEchoAminoMsg): RequestEcho; fromProtoMsg(message: RequestEchoProtoMsg): RequestEcho; toProto(message: RequestEcho): Uint8Array; toProtoMsg(message: RequestEcho): RequestEchoProtoMsg; }; export declare const RequestFlush: { typeUrl: string; encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush; fromJSON(_: any): RequestFlush; toJSON(_: RequestFlush): unknown; fromPartial(_: Partial): RequestFlush; fromAmino(_: RequestFlushAmino): RequestFlush; toAmino(_: RequestFlush): RequestFlushAmino; fromAminoMsg(object: RequestFlushAminoMsg): RequestFlush; fromProtoMsg(message: RequestFlushProtoMsg): RequestFlush; toProto(message: RequestFlush): Uint8Array; toProtoMsg(message: RequestFlush): RequestFlushProtoMsg; }; export declare const RequestInfo: { typeUrl: string; encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestInfo; fromJSON(object: any): RequestInfo; toJSON(message: RequestInfo): unknown; fromPartial(object: Partial): RequestInfo; fromAmino(object: RequestInfoAmino): RequestInfo; toAmino(message: RequestInfo): RequestInfoAmino; fromAminoMsg(object: RequestInfoAminoMsg): RequestInfo; fromProtoMsg(message: RequestInfoProtoMsg): RequestInfo; toProto(message: RequestInfo): Uint8Array; toProtoMsg(message: RequestInfo): RequestInfoProtoMsg; }; export declare const RequestInitChain: { typeUrl: string; encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestInitChain; fromJSON(object: any): RequestInitChain; toJSON(message: RequestInitChain): unknown; fromPartial(object: Partial): RequestInitChain; fromAmino(object: RequestInitChainAmino): RequestInitChain; toAmino(message: RequestInitChain): RequestInitChainAmino; fromAminoMsg(object: RequestInitChainAminoMsg): RequestInitChain; fromProtoMsg(message: RequestInitChainProtoMsg): RequestInitChain; toProto(message: RequestInitChain): Uint8Array; toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg; }; export declare const RequestQuery: { typeUrl: string; encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestQuery; fromJSON(object: any): RequestQuery; toJSON(message: RequestQuery): unknown; fromPartial(object: Partial): RequestQuery; fromAmino(object: RequestQueryAmino): RequestQuery; toAmino(message: RequestQuery): RequestQueryAmino; fromAminoMsg(object: RequestQueryAminoMsg): RequestQuery; fromProtoMsg(message: RequestQueryProtoMsg): RequestQuery; toProto(message: RequestQuery): Uint8Array; toProtoMsg(message: RequestQuery): RequestQueryProtoMsg; }; export declare const RequestCheckTx: { typeUrl: string; encode(message: RequestCheckTx, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestCheckTx; fromJSON(object: any): RequestCheckTx; toJSON(message: RequestCheckTx): unknown; fromPartial(object: Partial): RequestCheckTx; fromAmino(object: RequestCheckTxAmino): RequestCheckTx; toAmino(message: RequestCheckTx): RequestCheckTxAmino; fromAminoMsg(object: RequestCheckTxAminoMsg): RequestCheckTx; fromProtoMsg(message: RequestCheckTxProtoMsg): RequestCheckTx; toProto(message: RequestCheckTx): Uint8Array; toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg; }; export declare const RequestCommit: { typeUrl: string; encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestCommit; fromJSON(_: any): RequestCommit; toJSON(_: RequestCommit): unknown; fromPartial(_: Partial): RequestCommit; fromAmino(_: RequestCommitAmino): RequestCommit; toAmino(_: RequestCommit): RequestCommitAmino; fromAminoMsg(object: RequestCommitAminoMsg): RequestCommit; fromProtoMsg(message: RequestCommitProtoMsg): RequestCommit; toProto(message: RequestCommit): Uint8Array; toProtoMsg(message: RequestCommit): RequestCommitProtoMsg; }; export declare const RequestListSnapshots: { typeUrl: string; encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots; fromJSON(_: any): RequestListSnapshots; toJSON(_: RequestListSnapshots): unknown; fromPartial(_: Partial): RequestListSnapshots; fromAmino(_: RequestListSnapshotsAmino): RequestListSnapshots; toAmino(_: RequestListSnapshots): RequestListSnapshotsAmino; fromAminoMsg(object: RequestListSnapshotsAminoMsg): RequestListSnapshots; fromProtoMsg(message: RequestListSnapshotsProtoMsg): RequestListSnapshots; toProto(message: RequestListSnapshots): Uint8Array; toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg; }; export declare const RequestOfferSnapshot: { typeUrl: string; encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestOfferSnapshot; fromJSON(object: any): RequestOfferSnapshot; toJSON(message: RequestOfferSnapshot): unknown; fromPartial(object: Partial): RequestOfferSnapshot; fromAmino(object: RequestOfferSnapshotAmino): RequestOfferSnapshot; toAmino(message: RequestOfferSnapshot): RequestOfferSnapshotAmino; fromAminoMsg(object: RequestOfferSnapshotAminoMsg): RequestOfferSnapshot; fromProtoMsg(message: RequestOfferSnapshotProtoMsg): RequestOfferSnapshot; toProto(message: RequestOfferSnapshot): Uint8Array; toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg; }; export declare const RequestLoadSnapshotChunk: { typeUrl: string; encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestLoadSnapshotChunk; fromJSON(object: any): RequestLoadSnapshotChunk; toJSON(message: RequestLoadSnapshotChunk): unknown; fromPartial(object: Partial): RequestLoadSnapshotChunk; fromAmino(object: RequestLoadSnapshotChunkAmino): RequestLoadSnapshotChunk; toAmino(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkAmino; fromAminoMsg(object: RequestLoadSnapshotChunkAminoMsg): RequestLoadSnapshotChunk; fromProtoMsg(message: RequestLoadSnapshotChunkProtoMsg): RequestLoadSnapshotChunk; toProto(message: RequestLoadSnapshotChunk): Uint8Array; toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg; }; export declare const RequestApplySnapshotChunk: { typeUrl: string; encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestApplySnapshotChunk; fromJSON(object: any): RequestApplySnapshotChunk; toJSON(message: RequestApplySnapshotChunk): unknown; fromPartial(object: Partial): RequestApplySnapshotChunk; fromAmino(object: RequestApplySnapshotChunkAmino): RequestApplySnapshotChunk; toAmino(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkAmino; fromAminoMsg(object: RequestApplySnapshotChunkAminoMsg): RequestApplySnapshotChunk; fromProtoMsg(message: RequestApplySnapshotChunkProtoMsg): RequestApplySnapshotChunk; toProto(message: RequestApplySnapshotChunk): Uint8Array; toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg; }; export declare const RequestPrepareProposal: { typeUrl: string; encode(message: RequestPrepareProposal, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestPrepareProposal; fromJSON(object: any): RequestPrepareProposal; toJSON(message: RequestPrepareProposal): unknown; fromPartial(object: Partial): RequestPrepareProposal; fromAmino(object: RequestPrepareProposalAmino): RequestPrepareProposal; toAmino(message: RequestPrepareProposal): RequestPrepareProposalAmino; fromAminoMsg(object: RequestPrepareProposalAminoMsg): RequestPrepareProposal; fromProtoMsg(message: RequestPrepareProposalProtoMsg): RequestPrepareProposal; toProto(message: RequestPrepareProposal): Uint8Array; toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg; }; export declare const RequestProcessProposal: { typeUrl: string; encode(message: RequestProcessProposal, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestProcessProposal; fromJSON(object: any): RequestProcessProposal; toJSON(message: RequestProcessProposal): unknown; fromPartial(object: Partial): RequestProcessProposal; fromAmino(object: RequestProcessProposalAmino): RequestProcessProposal; toAmino(message: RequestProcessProposal): RequestProcessProposalAmino; fromAminoMsg(object: RequestProcessProposalAminoMsg): RequestProcessProposal; fromProtoMsg(message: RequestProcessProposalProtoMsg): RequestProcessProposal; toProto(message: RequestProcessProposal): Uint8Array; toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg; }; export declare const RequestExtendVote: { typeUrl: string; encode(message: RequestExtendVote, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestExtendVote; fromJSON(object: any): RequestExtendVote; toJSON(message: RequestExtendVote): unknown; fromPartial(object: Partial): RequestExtendVote; fromAmino(object: RequestExtendVoteAmino): RequestExtendVote; toAmino(message: RequestExtendVote): RequestExtendVoteAmino; fromAminoMsg(object: RequestExtendVoteAminoMsg): RequestExtendVote; fromProtoMsg(message: RequestExtendVoteProtoMsg): RequestExtendVote; toProto(message: RequestExtendVote): Uint8Array; toProtoMsg(message: RequestExtendVote): RequestExtendVoteProtoMsg; }; export declare const RequestVerifyVoteExtension: { typeUrl: string; encode(message: RequestVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestVerifyVoteExtension; fromJSON(object: any): RequestVerifyVoteExtension; toJSON(message: RequestVerifyVoteExtension): unknown; fromPartial(object: Partial): RequestVerifyVoteExtension; fromAmino(object: RequestVerifyVoteExtensionAmino): RequestVerifyVoteExtension; toAmino(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionAmino; fromAminoMsg(object: RequestVerifyVoteExtensionAminoMsg): RequestVerifyVoteExtension; fromProtoMsg(message: RequestVerifyVoteExtensionProtoMsg): RequestVerifyVoteExtension; toProto(message: RequestVerifyVoteExtension): Uint8Array; toProtoMsg(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionProtoMsg; }; export declare const RequestFinalizeBlock: { typeUrl: string; encode(message: RequestFinalizeBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestFinalizeBlock; fromJSON(object: any): RequestFinalizeBlock; toJSON(message: RequestFinalizeBlock): unknown; fromPartial(object: Partial): RequestFinalizeBlock; fromAmino(object: RequestFinalizeBlockAmino): RequestFinalizeBlock; toAmino(message: RequestFinalizeBlock): RequestFinalizeBlockAmino; fromAminoMsg(object: RequestFinalizeBlockAminoMsg): RequestFinalizeBlock; fromProtoMsg(message: RequestFinalizeBlockProtoMsg): RequestFinalizeBlock; toProto(message: RequestFinalizeBlock): Uint8Array; toProtoMsg(message: RequestFinalizeBlock): RequestFinalizeBlockProtoMsg; }; export declare const Response: { typeUrl: string; encode(message: Response, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Response; fromJSON(object: any): Response; toJSON(message: Response): unknown; fromPartial(object: Partial): Response; fromAmino(object: ResponseAmino): Response; toAmino(message: Response): ResponseAmino; fromAminoMsg(object: ResponseAminoMsg): Response; fromProtoMsg(message: ResponseProtoMsg): Response; toProto(message: Response): Uint8Array; toProtoMsg(message: Response): ResponseProtoMsg; }; export declare const ResponseException: { typeUrl: string; encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseException; fromJSON(object: any): ResponseException; toJSON(message: ResponseException): unknown; fromPartial(object: Partial): ResponseException; fromAmino(object: ResponseExceptionAmino): ResponseException; toAmino(message: ResponseException): ResponseExceptionAmino; fromAminoMsg(object: ResponseExceptionAminoMsg): ResponseException; fromProtoMsg(message: ResponseExceptionProtoMsg): ResponseException; toProto(message: ResponseException): Uint8Array; toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg; }; export declare const ResponseEcho: { typeUrl: string; encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseEcho; fromJSON(object: any): ResponseEcho; toJSON(message: ResponseEcho): unknown; fromPartial(object: Partial): ResponseEcho; fromAmino(object: ResponseEchoAmino): ResponseEcho; toAmino(message: ResponseEcho): ResponseEchoAmino; fromAminoMsg(object: ResponseEchoAminoMsg): ResponseEcho; fromProtoMsg(message: ResponseEchoProtoMsg): ResponseEcho; toProto(message: ResponseEcho): Uint8Array; toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg; }; export declare const ResponseFlush: { typeUrl: string; encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush; fromJSON(_: any): ResponseFlush; toJSON(_: ResponseFlush): unknown; fromPartial(_: Partial): ResponseFlush; fromAmino(_: ResponseFlushAmino): ResponseFlush; toAmino(_: ResponseFlush): ResponseFlushAmino; fromAminoMsg(object: ResponseFlushAminoMsg): ResponseFlush; fromProtoMsg(message: ResponseFlushProtoMsg): ResponseFlush; toProto(message: ResponseFlush): Uint8Array; toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg; }; export declare const ResponseInfo: { typeUrl: string; encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseInfo; fromJSON(object: any): ResponseInfo; toJSON(message: ResponseInfo): unknown; fromPartial(object: Partial): ResponseInfo; fromAmino(object: ResponseInfoAmino): ResponseInfo; toAmino(message: ResponseInfo): ResponseInfoAmino; fromAminoMsg(object: ResponseInfoAminoMsg): ResponseInfo; fromProtoMsg(message: ResponseInfoProtoMsg): ResponseInfo; toProto(message: ResponseInfo): Uint8Array; toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg; }; export declare const ResponseInitChain: { typeUrl: string; encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseInitChain; fromJSON(object: any): ResponseInitChain; toJSON(message: ResponseInitChain): unknown; fromPartial(object: Partial): ResponseInitChain; fromAmino(object: ResponseInitChainAmino): ResponseInitChain; toAmino(message: ResponseInitChain): ResponseInitChainAmino; fromAminoMsg(object: ResponseInitChainAminoMsg): ResponseInitChain; fromProtoMsg(message: ResponseInitChainProtoMsg): ResponseInitChain; toProto(message: ResponseInitChain): Uint8Array; toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg; }; export declare const ResponseQuery: { typeUrl: string; encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseQuery; fromJSON(object: any): ResponseQuery; toJSON(message: ResponseQuery): unknown; fromPartial(object: Partial): ResponseQuery; fromAmino(object: ResponseQueryAmino): ResponseQuery; toAmino(message: ResponseQuery): ResponseQueryAmino; fromAminoMsg(object: ResponseQueryAminoMsg): ResponseQuery; fromProtoMsg(message: ResponseQueryProtoMsg): ResponseQuery; toProto(message: ResponseQuery): Uint8Array; toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg; }; export declare const ResponseCheckTx: { typeUrl: string; encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseCheckTx; fromJSON(object: any): ResponseCheckTx; toJSON(message: ResponseCheckTx): unknown; fromPartial(object: Partial): ResponseCheckTx; fromAmino(object: ResponseCheckTxAmino): ResponseCheckTx; toAmino(message: ResponseCheckTx): ResponseCheckTxAmino; fromAminoMsg(object: ResponseCheckTxAminoMsg): ResponseCheckTx; fromProtoMsg(message: ResponseCheckTxProtoMsg): ResponseCheckTx; toProto(message: ResponseCheckTx): Uint8Array; toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg; }; export declare const ResponseCommit: { typeUrl: string; encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseCommit; fromJSON(object: any): ResponseCommit; toJSON(message: ResponseCommit): unknown; fromPartial(object: Partial): ResponseCommit; fromAmino(object: ResponseCommitAmino): ResponseCommit; toAmino(message: ResponseCommit): ResponseCommitAmino; fromAminoMsg(object: ResponseCommitAminoMsg): ResponseCommit; fromProtoMsg(message: ResponseCommitProtoMsg): ResponseCommit; toProto(message: ResponseCommit): Uint8Array; toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg; }; export declare const ResponseListSnapshots: { typeUrl: string; encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseListSnapshots; fromJSON(object: any): ResponseListSnapshots; toJSON(message: ResponseListSnapshots): unknown; fromPartial(object: Partial): ResponseListSnapshots; fromAmino(object: ResponseListSnapshotsAmino): ResponseListSnapshots; toAmino(message: ResponseListSnapshots): ResponseListSnapshotsAmino; fromAminoMsg(object: ResponseListSnapshotsAminoMsg): ResponseListSnapshots; fromProtoMsg(message: ResponseListSnapshotsProtoMsg): ResponseListSnapshots; toProto(message: ResponseListSnapshots): Uint8Array; toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg; }; export declare const ResponseOfferSnapshot: { typeUrl: string; encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseOfferSnapshot; fromJSON(object: any): ResponseOfferSnapshot; toJSON(message: ResponseOfferSnapshot): unknown; fromPartial(object: Partial): ResponseOfferSnapshot; fromAmino(object: ResponseOfferSnapshotAmino): ResponseOfferSnapshot; toAmino(message: ResponseOfferSnapshot): ResponseOfferSnapshotAmino; fromAminoMsg(object: ResponseOfferSnapshotAminoMsg): ResponseOfferSnapshot; fromProtoMsg(message: ResponseOfferSnapshotProtoMsg): ResponseOfferSnapshot; toProto(message: ResponseOfferSnapshot): Uint8Array; toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg; }; export declare const ResponseLoadSnapshotChunk: { typeUrl: string; encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseLoadSnapshotChunk; fromJSON(object: any): ResponseLoadSnapshotChunk; toJSON(message: ResponseLoadSnapshotChunk): unknown; fromPartial(object: Partial): ResponseLoadSnapshotChunk; fromAmino(object: ResponseLoadSnapshotChunkAmino): ResponseLoadSnapshotChunk; toAmino(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkAmino; fromAminoMsg(object: ResponseLoadSnapshotChunkAminoMsg): ResponseLoadSnapshotChunk; fromProtoMsg(message: ResponseLoadSnapshotChunkProtoMsg): ResponseLoadSnapshotChunk; toProto(message: ResponseLoadSnapshotChunk): Uint8Array; toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg; }; export declare const ResponseApplySnapshotChunk: { typeUrl: string; encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseApplySnapshotChunk; fromJSON(object: any): ResponseApplySnapshotChunk; toJSON(message: ResponseApplySnapshotChunk): unknown; fromPartial(object: Partial): ResponseApplySnapshotChunk; fromAmino(object: ResponseApplySnapshotChunkAmino): ResponseApplySnapshotChunk; toAmino(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkAmino; fromAminoMsg(object: ResponseApplySnapshotChunkAminoMsg): ResponseApplySnapshotChunk; fromProtoMsg(message: ResponseApplySnapshotChunkProtoMsg): ResponseApplySnapshotChunk; toProto(message: ResponseApplySnapshotChunk): Uint8Array; toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg; }; export declare const ResponsePrepareProposal: { typeUrl: string; encode(message: ResponsePrepareProposal, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponsePrepareProposal; fromJSON(object: any): ResponsePrepareProposal; toJSON(message: ResponsePrepareProposal): unknown; fromPartial(object: Partial): ResponsePrepareProposal; fromAmino(object: ResponsePrepareProposalAmino): ResponsePrepareProposal; toAmino(message: ResponsePrepareProposal): ResponsePrepareProposalAmino; fromAminoMsg(object: ResponsePrepareProposalAminoMsg): ResponsePrepareProposal; fromProtoMsg(message: ResponsePrepareProposalProtoMsg): ResponsePrepareProposal; toProto(message: ResponsePrepareProposal): Uint8Array; toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg; }; export declare const ResponseProcessProposal: { typeUrl: string; encode(message: ResponseProcessProposal, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseProcessProposal; fromJSON(object: any): ResponseProcessProposal; toJSON(message: ResponseProcessProposal): unknown; fromPartial(object: Partial): ResponseProcessProposal; fromAmino(object: ResponseProcessProposalAmino): ResponseProcessProposal; toAmino(message: ResponseProcessProposal): ResponseProcessProposalAmino; fromAminoMsg(object: ResponseProcessProposalAminoMsg): ResponseProcessProposal; fromProtoMsg(message: ResponseProcessProposalProtoMsg): ResponseProcessProposal; toProto(message: ResponseProcessProposal): Uint8Array; toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg; }; export declare const ResponseExtendVote: { typeUrl: string; encode(message: ResponseExtendVote, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseExtendVote; fromJSON(object: any): ResponseExtendVote; toJSON(message: ResponseExtendVote): unknown; fromPartial(object: Partial): ResponseExtendVote; fromAmino(object: ResponseExtendVoteAmino): ResponseExtendVote; toAmino(message: ResponseExtendVote): ResponseExtendVoteAmino; fromAminoMsg(object: ResponseExtendVoteAminoMsg): ResponseExtendVote; fromProtoMsg(message: ResponseExtendVoteProtoMsg): ResponseExtendVote; toProto(message: ResponseExtendVote): Uint8Array; toProtoMsg(message: ResponseExtendVote): ResponseExtendVoteProtoMsg; }; export declare const ResponseVerifyVoteExtension: { typeUrl: string; encode(message: ResponseVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseVerifyVoteExtension; fromJSON(object: any): ResponseVerifyVoteExtension; toJSON(message: ResponseVerifyVoteExtension): unknown; fromPartial(object: Partial): ResponseVerifyVoteExtension; fromAmino(object: ResponseVerifyVoteExtensionAmino): ResponseVerifyVoteExtension; toAmino(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionAmino; fromAminoMsg(object: ResponseVerifyVoteExtensionAminoMsg): ResponseVerifyVoteExtension; fromProtoMsg(message: ResponseVerifyVoteExtensionProtoMsg): ResponseVerifyVoteExtension; toProto(message: ResponseVerifyVoteExtension): Uint8Array; toProtoMsg(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionProtoMsg; }; export declare const ResponseFinalizeBlock: { typeUrl: string; encode(message: ResponseFinalizeBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseFinalizeBlock; fromJSON(object: any): ResponseFinalizeBlock; toJSON(message: ResponseFinalizeBlock): unknown; fromPartial(object: Partial): ResponseFinalizeBlock; fromAmino(object: ResponseFinalizeBlockAmino): ResponseFinalizeBlock; toAmino(message: ResponseFinalizeBlock): ResponseFinalizeBlockAmino; fromAminoMsg(object: ResponseFinalizeBlockAminoMsg): ResponseFinalizeBlock; fromProtoMsg(message: ResponseFinalizeBlockProtoMsg): ResponseFinalizeBlock; toProto(message: ResponseFinalizeBlock): Uint8Array; toProtoMsg(message: ResponseFinalizeBlock): ResponseFinalizeBlockProtoMsg; }; export declare const CommitInfo: { typeUrl: string; encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): CommitInfo; fromJSON(object: any): CommitInfo; toJSON(message: CommitInfo): unknown; fromPartial(object: Partial): CommitInfo; fromAmino(object: CommitInfoAmino): CommitInfo; toAmino(message: CommitInfo): CommitInfoAmino; fromAminoMsg(object: CommitInfoAminoMsg): CommitInfo; fromProtoMsg(message: CommitInfoProtoMsg): CommitInfo; toProto(message: CommitInfo): Uint8Array; toProtoMsg(message: CommitInfo): CommitInfoProtoMsg; }; export declare const ExtendedCommitInfo: { typeUrl: string; encode(message: ExtendedCommitInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ExtendedCommitInfo; fromJSON(object: any): ExtendedCommitInfo; toJSON(message: ExtendedCommitInfo): unknown; fromPartial(object: Partial): ExtendedCommitInfo; fromAmino(object: ExtendedCommitInfoAmino): ExtendedCommitInfo; toAmino(message: ExtendedCommitInfo): ExtendedCommitInfoAmino; fromAminoMsg(object: ExtendedCommitInfoAminoMsg): ExtendedCommitInfo; fromProtoMsg(message: ExtendedCommitInfoProtoMsg): ExtendedCommitInfo; toProto(message: ExtendedCommitInfo): Uint8Array; toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg; }; export declare const Event: { typeUrl: string; encode(message: Event, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Event; fromJSON(object: any): Event; toJSON(message: Event): unknown; fromPartial(object: Partial): Event; fromAmino(object: EventAmino): Event; toAmino(message: Event): EventAmino; fromAminoMsg(object: EventAminoMsg): Event; fromProtoMsg(message: EventProtoMsg): Event; toProto(message: Event): Uint8Array; toProtoMsg(message: Event): EventProtoMsg; }; export declare const EventAttribute: { typeUrl: string; encode(message: EventAttribute, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): EventAttribute; fromJSON(object: any): EventAttribute; toJSON(message: EventAttribute): unknown; fromPartial(object: Partial): EventAttribute; fromAmino(object: EventAttributeAmino): EventAttribute; toAmino(message: EventAttribute): EventAttributeAmino; fromAminoMsg(object: EventAttributeAminoMsg): EventAttribute; fromProtoMsg(message: EventAttributeProtoMsg): EventAttribute; toProto(message: EventAttribute): Uint8Array; toProtoMsg(message: EventAttribute): EventAttributeProtoMsg; }; export declare const ExecTxResult: { typeUrl: string; encode(message: ExecTxResult, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ExecTxResult; fromJSON(object: any): ExecTxResult; toJSON(message: ExecTxResult): unknown; fromPartial(object: Partial): ExecTxResult; fromAmino(object: ExecTxResultAmino): ExecTxResult; toAmino(message: ExecTxResult): ExecTxResultAmino; fromAminoMsg(object: ExecTxResultAminoMsg): ExecTxResult; fromProtoMsg(message: ExecTxResultProtoMsg): ExecTxResult; toProto(message: ExecTxResult): Uint8Array; toProtoMsg(message: ExecTxResult): ExecTxResultProtoMsg; }; export declare const TxResult: { typeUrl: string; encode(message: TxResult, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): TxResult; fromJSON(object: any): TxResult; toJSON(message: TxResult): unknown; fromPartial(object: Partial): TxResult; fromAmino(object: TxResultAmino): TxResult; toAmino(message: TxResult): TxResultAmino; fromAminoMsg(object: TxResultAminoMsg): TxResult; fromProtoMsg(message: TxResultProtoMsg): TxResult; toProto(message: TxResult): Uint8Array; toProtoMsg(message: TxResult): TxResultProtoMsg; }; export declare const Validator: { typeUrl: string; encode(message: Validator, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Validator; fromJSON(object: any): Validator; toJSON(message: Validator): unknown; fromPartial(object: Partial): Validator; fromAmino(object: ValidatorAmino): Validator; toAmino(message: Validator): ValidatorAmino; fromAminoMsg(object: ValidatorAminoMsg): Validator; fromProtoMsg(message: ValidatorProtoMsg): Validator; toProto(message: Validator): Uint8Array; toProtoMsg(message: Validator): ValidatorProtoMsg; }; export declare const ValidatorUpdate: { typeUrl: string; encode(message: ValidatorUpdate, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ValidatorUpdate; fromJSON(object: any): ValidatorUpdate; toJSON(message: ValidatorUpdate): unknown; fromPartial(object: Partial): ValidatorUpdate; fromAmino(object: ValidatorUpdateAmino): ValidatorUpdate; toAmino(message: ValidatorUpdate): ValidatorUpdateAmino; fromAminoMsg(object: ValidatorUpdateAminoMsg): ValidatorUpdate; fromProtoMsg(message: ValidatorUpdateProtoMsg): ValidatorUpdate; toProto(message: ValidatorUpdate): Uint8Array; toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg; }; export declare const VoteInfo: { typeUrl: string; encode(message: VoteInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): VoteInfo; fromJSON(object: any): VoteInfo; toJSON(message: VoteInfo): unknown; fromPartial(object: Partial): VoteInfo; fromAmino(object: VoteInfoAmino): VoteInfo; toAmino(message: VoteInfo): VoteInfoAmino; fromAminoMsg(object: VoteInfoAminoMsg): VoteInfo; fromProtoMsg(message: VoteInfoProtoMsg): VoteInfo; toProto(message: VoteInfo): Uint8Array; toProtoMsg(message: VoteInfo): VoteInfoProtoMsg; }; export declare const ExtendedVoteInfo: { typeUrl: string; encode(message: ExtendedVoteInfo, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ExtendedVoteInfo; fromJSON(object: any): ExtendedVoteInfo; toJSON(message: ExtendedVoteInfo): unknown; fromPartial(object: Partial): ExtendedVoteInfo; fromAmino(object: ExtendedVoteInfoAmino): ExtendedVoteInfo; toAmino(message: ExtendedVoteInfo): ExtendedVoteInfoAmino; fromAminoMsg(object: ExtendedVoteInfoAminoMsg): ExtendedVoteInfo; fromProtoMsg(message: ExtendedVoteInfoProtoMsg): ExtendedVoteInfo; toProto(message: ExtendedVoteInfo): Uint8Array; toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg; }; export declare const Misbehavior: { typeUrl: string; encode(message: Misbehavior, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Misbehavior; fromJSON(object: any): Misbehavior; toJSON(message: Misbehavior): unknown; fromPartial(object: Partial): Misbehavior; fromAmino(object: MisbehaviorAmino): Misbehavior; toAmino(message: Misbehavior): MisbehaviorAmino; fromAminoMsg(object: MisbehaviorAminoMsg): Misbehavior; fromProtoMsg(message: MisbehaviorProtoMsg): Misbehavior; toProto(message: Misbehavior): Uint8Array; toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg; }; export declare const Snapshot: { typeUrl: string; encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Snapshot; fromJSON(object: any): Snapshot; toJSON(message: Snapshot): unknown; fromPartial(object: Partial): Snapshot; fromAmino(object: SnapshotAmino): Snapshot; toAmino(message: Snapshot): SnapshotAmino; fromAminoMsg(object: SnapshotAminoMsg): Snapshot; fromProtoMsg(message: SnapshotProtoMsg): Snapshot; toProto(message: Snapshot): Uint8Array; toProtoMsg(message: Snapshot): SnapshotProtoMsg; };