import { ConsensusParams, ConsensusParamsAmino } from "../types/params"; import { Header, HeaderAmino } from "../types/types"; import { ProofOps, ProofOpsAmino } from "../crypto/proof"; import { PublicKey, PublicKeyAmino } from "../crypto/keys"; import { BinaryReader, BinaryWriter } from "../../binary"; import { DeepPartial } from "../../helpers"; 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 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; flush?: RequestFlush; info?: RequestInfo; initChain?: RequestInitChain; query?: RequestQuery; beginBlock?: RequestBeginBlock; checkTx?: RequestCheckTx; deliverTx?: RequestDeliverTx; endBlock?: RequestEndBlock; commit?: RequestCommit; listSnapshots?: RequestListSnapshots; offerSnapshot?: RequestOfferSnapshot; loadSnapshotChunk?: RequestLoadSnapshotChunk; applySnapshotChunk?: RequestApplySnapshotChunk; prepareProposal?: RequestPrepareProposal; processProposal?: RequestProcessProposal; } export interface RequestProtoMsg { typeUrl: "/tendermint.abci.Request"; value: Uint8Array; } export interface RequestAmino { echo?: RequestEchoAmino; flush?: RequestFlushAmino; info?: RequestInfoAmino; init_chain?: RequestInitChainAmino; query?: RequestQueryAmino; begin_block?: RequestBeginBlockAmino; check_tx?: RequestCheckTxAmino; deliver_tx?: RequestDeliverTxAmino; end_block?: RequestEndBlockAmino; commit?: RequestCommitAmino; list_snapshots?: RequestListSnapshotsAmino; offer_snapshot?: RequestOfferSnapshotAmino; load_snapshot_chunk?: RequestLoadSnapshotChunkAmino; apply_snapshot_chunk?: RequestApplySnapshotChunkAmino; prepare_proposal?: RequestPrepareProposalAmino; process_proposal?: RequestProcessProposalAmino; } export interface RequestEcho { message: string; } export interface RequestEchoProtoMsg { typeUrl: "/tendermint.abci.RequestEcho"; value: Uint8Array; } export interface RequestEchoAmino { message: string; } export interface RequestFlush { } export interface RequestFlushProtoMsg { typeUrl: "/tendermint.abci.RequestFlush"; value: Uint8Array; } export interface 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 RequestInitChain { time: Date; chainId: string; consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appStateBytes: Uint8Array; initialHeight: bigint; } export interface RequestInitChainProtoMsg { typeUrl: "/tendermint.abci.RequestInitChain"; value: Uint8Array; } export interface RequestInitChainAmino { time?: string; chain_id: string; consensus_params?: ConsensusParamsAmino; validators: ValidatorUpdateAmino[]; app_state_bytes: Uint8Array; initial_height: string; } export interface RequestQuery { data: Uint8Array; path: string; height: bigint; prove: boolean; } export interface RequestQueryProtoMsg { typeUrl: "/tendermint.abci.RequestQuery"; value: Uint8Array; } export interface RequestQueryAmino { data: Uint8Array; path: string; height: string; prove: boolean; } export interface RequestBeginBlock { hash: Uint8Array; header: Header; lastCommitInfo: CommitInfo; byzantineValidators: Misbehavior[]; } export interface RequestBeginBlockProtoMsg { typeUrl: "/tendermint.abci.RequestBeginBlock"; value: Uint8Array; } export interface RequestBeginBlockAmino { hash: Uint8Array; header?: HeaderAmino; last_commit_info?: CommitInfoAmino; byzantine_validators: MisbehaviorAmino[]; } export interface RequestCheckTx { tx: Uint8Array; type: CheckTxType; } export interface RequestCheckTxProtoMsg { typeUrl: "/tendermint.abci.RequestCheckTx"; value: Uint8Array; } export interface RequestCheckTxAmino { tx: Uint8Array; type: CheckTxType; } export interface RequestDeliverTx { tx: Uint8Array; } export interface RequestDeliverTxProtoMsg { typeUrl: "/tendermint.abci.RequestDeliverTx"; value: Uint8Array; } export interface RequestDeliverTxAmino { tx: Uint8Array; } export interface RequestEndBlock { height: bigint; } export interface RequestEndBlockProtoMsg { typeUrl: "/tendermint.abci.RequestEndBlock"; value: Uint8Array; } export interface RequestEndBlockAmino { height: string; } export interface RequestCommit { } export interface RequestCommitProtoMsg { typeUrl: "/tendermint.abci.RequestCommit"; value: Uint8Array; } export interface RequestCommitAmino { } /** lists available snapshots */ export interface RequestListSnapshots { } export interface RequestListSnapshotsProtoMsg { typeUrl: "/tendermint.abci.RequestListSnapshots"; value: Uint8Array; } /** lists available snapshots */ export interface RequestListSnapshotsAmino { } /** offers a snapshot to the application */ export interface RequestOfferSnapshot { /** snapshot offered by peers */ snapshot?: Snapshot; /** 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; /** light client-verified app hash for snapshot height */ app_hash: Uint8Array; } /** 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; } /** 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: Uint8Array; sender: string; } 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; misbehavior: Misbehavior[]; height: bigint; time: Date; 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: Uint8Array[]; local_last_commit?: ExtendedCommitInfoAmino; misbehavior: MisbehaviorAmino[]; height: string; time?: string; next_validators_hash: Uint8Array; /** address of the public key of the validator proposing the block. */ proposer_address: Uint8Array; } export interface RequestProcessProposal { txs: Uint8Array[]; proposedLastCommit: CommitInfo; misbehavior: Misbehavior[]; /** hash is the merkle root hash of the fields of the proposed block. */ hash: Uint8Array; height: bigint; time: Date; 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: Uint8Array[]; proposed_last_commit?: CommitInfoAmino; misbehavior: MisbehaviorAmino[]; /** hash is the merkle root hash of the fields of the proposed block. */ hash: Uint8Array; height: string; time?: string; next_validators_hash: Uint8Array; /** address of the public key of the original proposer of the block. */ proposer_address: Uint8Array; } export interface Response { exception?: ResponseException; echo?: ResponseEcho; flush?: ResponseFlush; info?: ResponseInfo; initChain?: ResponseInitChain; query?: ResponseQuery; beginBlock?: ResponseBeginBlock; checkTx?: ResponseCheckTx; deliverTx?: ResponseDeliverTx; endBlock?: ResponseEndBlock; commit?: ResponseCommit; listSnapshots?: ResponseListSnapshots; offerSnapshot?: ResponseOfferSnapshot; loadSnapshotChunk?: ResponseLoadSnapshotChunk; applySnapshotChunk?: ResponseApplySnapshotChunk; prepareProposal?: ResponsePrepareProposal; processProposal?: ResponseProcessProposal; } export interface ResponseProtoMsg { typeUrl: "/tendermint.abci.Response"; value: Uint8Array; } export interface ResponseAmino { exception?: ResponseExceptionAmino; echo?: ResponseEchoAmino; flush?: ResponseFlushAmino; info?: ResponseInfoAmino; init_chain?: ResponseInitChainAmino; query?: ResponseQueryAmino; begin_block?: ResponseBeginBlockAmino; check_tx?: ResponseCheckTxAmino; deliver_tx?: ResponseDeliverTxAmino; end_block?: ResponseEndBlockAmino; commit?: ResponseCommitAmino; list_snapshots?: ResponseListSnapshotsAmino; offer_snapshot?: ResponseOfferSnapshotAmino; load_snapshot_chunk?: ResponseLoadSnapshotChunkAmino; apply_snapshot_chunk?: ResponseApplySnapshotChunkAmino; prepare_proposal?: ResponsePrepareProposalAmino; process_proposal?: ResponseProcessProposalAmino; } /** nondeterministic */ export interface ResponseException { error: string; } export interface ResponseExceptionProtoMsg { typeUrl: "/tendermint.abci.ResponseException"; value: Uint8Array; } /** nondeterministic */ export interface ResponseExceptionAmino { error: string; } export interface ResponseEcho { message: string; } export interface ResponseEchoProtoMsg { typeUrl: "/tendermint.abci.ResponseEcho"; value: Uint8Array; } export interface ResponseEchoAmino { message: string; } export interface ResponseFlush { } export interface ResponseFlushProtoMsg { typeUrl: "/tendermint.abci.ResponseFlush"; value: Uint8Array; } export interface 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: Uint8Array; } export interface ResponseInitChain { consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appHash: Uint8Array; } export interface ResponseInitChainProtoMsg { typeUrl: "/tendermint.abci.ResponseInitChain"; value: Uint8Array; } export interface ResponseInitChainAmino { consensus_params?: ConsensusParamsAmino; validators: ValidatorUpdateAmino[]; app_hash: Uint8Array; } export interface ResponseQuery { code: number; /** bytes data = 2; // use "value" instead. */ log: string; /** nondeterministic */ info: string; index: bigint; key: Uint8Array; value: Uint8Array; proofOps?: ProofOps; 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: Uint8Array; value: Uint8Array; proof_ops?: ProofOpsAmino; height: string; codespace: string; } export interface ResponseBeginBlock { events: Event[]; } export interface ResponseBeginBlockProtoMsg { typeUrl: "/tendermint.abci.ResponseBeginBlock"; value: Uint8Array; } export interface ResponseBeginBlockAmino { events: EventAmino[]; } export interface ResponseCheckTx { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gasWanted: bigint; gasUsed: bigint; events: Event[]; codespace: string; sender: string; priority: bigint; /** * mempool_error is set by CometBFT. * ABCI applictions creating a ResponseCheckTX should not set mempool_error. */ mempoolError: string; } export interface ResponseCheckTxProtoMsg { typeUrl: "/tendermint.abci.ResponseCheckTx"; value: Uint8Array; } export interface ResponseCheckTxAmino { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gas_wanted: string; gas_used: string; events: EventAmino[]; codespace: string; sender: string; priority: string; /** * mempool_error is set by CometBFT. * ABCI applictions creating a ResponseCheckTX should not set mempool_error. */ mempool_error: string; } export interface ResponseDeliverTx { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gasWanted: bigint; gasUsed: bigint; events: Event[]; codespace: string; } export interface ResponseDeliverTxProtoMsg { typeUrl: "/tendermint.abci.ResponseDeliverTx"; value: Uint8Array; } export interface ResponseDeliverTxAmino { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gas_wanted: string; gas_used: string; events: EventAmino[]; codespace: string; } export interface ResponseEndBlock { validatorUpdates: ValidatorUpdate[]; consensusParamUpdates?: ConsensusParams; events: Event[]; } export interface ResponseEndBlockProtoMsg { typeUrl: "/tendermint.abci.ResponseEndBlock"; value: Uint8Array; } export interface ResponseEndBlockAmino { validator_updates: ValidatorUpdateAmino[]; consensus_param_updates?: ConsensusParamsAmino; events: EventAmino[]; } export interface ResponseCommit { /** reserve 1 */ data: Uint8Array; retainHeight: bigint; } export interface ResponseCommitProtoMsg { typeUrl: "/tendermint.abci.ResponseCommit"; value: Uint8Array; } export interface ResponseCommitAmino { /** reserve 1 */ data: Uint8Array; retain_height: string; } export interface ResponseListSnapshots { snapshots: Snapshot[]; } export interface ResponseListSnapshotsProtoMsg { typeUrl: "/tendermint.abci.ResponseListSnapshots"; value: Uint8Array; } export interface ResponseListSnapshotsAmino { snapshots: SnapshotAmino[]; } export interface ResponseOfferSnapshot { result: ResponseOfferSnapshot_Result; } export interface ResponseOfferSnapshotProtoMsg { typeUrl: "/tendermint.abci.ResponseOfferSnapshot"; value: Uint8Array; } export interface ResponseOfferSnapshotAmino { result: ResponseOfferSnapshot_Result; } export interface ResponseLoadSnapshotChunk { chunk: Uint8Array; } export interface ResponseLoadSnapshotChunkProtoMsg { typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk"; value: Uint8Array; } export interface ResponseLoadSnapshotChunkAmino { chunk: Uint8Array; } 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 ResponsePrepareProposal { txs: Uint8Array[]; } export interface ResponsePrepareProposalProtoMsg { typeUrl: "/tendermint.abci.ResponsePrepareProposal"; value: Uint8Array; } export interface ResponsePrepareProposalAmino { txs: Uint8Array[]; } export interface ResponseProcessProposal { status: ResponseProcessProposal_ProposalStatus; } export interface ResponseProcessProposalProtoMsg { typeUrl: "/tendermint.abci.ResponseProcessProposal"; value: Uint8Array; } export interface ResponseProcessProposalAmino { status: ResponseProcessProposal_ProposalStatus; } 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 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; } 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[]; } /** * Event allows application developers to attach additional information to * ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and ResponseDeliverTx. * 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 * ResponseBeginBlock, ResponseEndBlock, ResponseCheckTx and ResponseDeliverTx. * Later, transactions may be queried using these events. */ export interface EventAmino { type: string; attributes: EventAttributeAmino[]; } /** 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; } /** * TxResult contains results of executing the transaction. * * One usage is indexing transaction results. */ export interface TxResult { height: bigint; index: number; tx: Uint8Array; result: ResponseDeliverTx; } 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: Uint8Array; result?: ResponseDeliverTxAmino; } /** Validator */ 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; } /** Validator */ export interface ValidatorAmino { /** * The first 20 bytes of SHA256(public key) * PubKey pub_key = 2 [(gogoproto.nullable)=false]; */ address: Uint8Array; /** The voting power */ power: string; } /** ValidatorUpdate */ export interface ValidatorUpdate { pubKey: PublicKey; power: bigint; } export interface ValidatorUpdateProtoMsg { typeUrl: "/tendermint.abci.ValidatorUpdate"; value: Uint8Array; } /** ValidatorUpdate */ export interface ValidatorUpdateAmino { pub_key?: PublicKeyAmino; power: string; } /** VoteInfo */ export interface VoteInfo { validator: Validator; signedLastBlock: boolean; } export interface VoteInfoProtoMsg { typeUrl: "/tendermint.abci.VoteInfo"; value: Uint8Array; } /** VoteInfo */ export interface VoteInfoAmino { validator?: ValidatorAmino; signed_last_block: boolean; } export interface ExtendedVoteInfo { validator: Validator; signedLastBlock: boolean; /** Reserved for future use */ voteExtension: Uint8Array; } export interface ExtendedVoteInfoProtoMsg { typeUrl: "/tendermint.abci.ExtendedVoteInfo"; value: Uint8Array; } export interface ExtendedVoteInfoAmino { validator?: ValidatorAmino; signed_last_block: boolean; /** Reserved for future use */ vote_extension: Uint8Array; } export interface Misbehavior { type: MisbehaviorType; /** The offending validator */ validator: Validator; /** The height when the offense occurred */ height: bigint; /** The corresponding time where the offense occurred */ time: Date; /** * 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; /** The height when the offense occurred */ height: string; /** The corresponding time where the offense occurred */ time?: string; /** * 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 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: Uint8Array; /** Arbitrary application metadata */ metadata: Uint8Array; } 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: DeepPartial): Request; fromAmino(object: RequestAmino): Request; toAmino(message: Request): RequestAmino; 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: DeepPartial): RequestEcho; fromAmino(object: RequestEchoAmino): RequestEcho; toAmino(message: RequestEcho): RequestEchoAmino; 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(_: DeepPartial): RequestFlush; fromAmino(_: RequestFlushAmino): RequestFlush; toAmino(_: RequestFlush): RequestFlushAmino; 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: DeepPartial): RequestInfo; fromAmino(object: RequestInfoAmino): RequestInfo; toAmino(message: RequestInfo): RequestInfoAmino; 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: DeepPartial): RequestInitChain; fromAmino(object: RequestInitChainAmino): RequestInitChain; toAmino(message: RequestInitChain): RequestInitChainAmino; 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: DeepPartial): RequestQuery; fromAmino(object: RequestQueryAmino): RequestQuery; toAmino(message: RequestQuery): RequestQueryAmino; fromProtoMsg(message: RequestQueryProtoMsg): RequestQuery; toProto(message: RequestQuery): Uint8Array; toProtoMsg(message: RequestQuery): RequestQueryProtoMsg; }; export declare const RequestBeginBlock: { typeUrl: string; encode(message: RequestBeginBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestBeginBlock; fromJSON(object: any): RequestBeginBlock; toJSON(message: RequestBeginBlock): unknown; fromPartial(object: DeepPartial): RequestBeginBlock; fromAmino(object: RequestBeginBlockAmino): RequestBeginBlock; toAmino(message: RequestBeginBlock): RequestBeginBlockAmino; fromProtoMsg(message: RequestBeginBlockProtoMsg): RequestBeginBlock; toProto(message: RequestBeginBlock): Uint8Array; toProtoMsg(message: RequestBeginBlock): RequestBeginBlockProtoMsg; }; 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: DeepPartial): RequestCheckTx; fromAmino(object: RequestCheckTxAmino): RequestCheckTx; toAmino(message: RequestCheckTx): RequestCheckTxAmino; fromProtoMsg(message: RequestCheckTxProtoMsg): RequestCheckTx; toProto(message: RequestCheckTx): Uint8Array; toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg; }; export declare const RequestDeliverTx: { typeUrl: string; encode(message: RequestDeliverTx, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestDeliverTx; fromJSON(object: any): RequestDeliverTx; toJSON(message: RequestDeliverTx): unknown; fromPartial(object: DeepPartial): RequestDeliverTx; fromAmino(object: RequestDeliverTxAmino): RequestDeliverTx; toAmino(message: RequestDeliverTx): RequestDeliverTxAmino; fromProtoMsg(message: RequestDeliverTxProtoMsg): RequestDeliverTx; toProto(message: RequestDeliverTx): Uint8Array; toProtoMsg(message: RequestDeliverTx): RequestDeliverTxProtoMsg; }; export declare const RequestEndBlock: { typeUrl: string; encode(message: RequestEndBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestEndBlock; fromJSON(object: any): RequestEndBlock; toJSON(message: RequestEndBlock): unknown; fromPartial(object: DeepPartial): RequestEndBlock; fromAmino(object: RequestEndBlockAmino): RequestEndBlock; toAmino(message: RequestEndBlock): RequestEndBlockAmino; fromProtoMsg(message: RequestEndBlockProtoMsg): RequestEndBlock; toProto(message: RequestEndBlock): Uint8Array; toProtoMsg(message: RequestEndBlock): RequestEndBlockProtoMsg; }; 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(_: DeepPartial): RequestCommit; fromAmino(_: RequestCommitAmino): RequestCommit; toAmino(_: RequestCommit): RequestCommitAmino; 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(_: DeepPartial): RequestListSnapshots; fromAmino(_: RequestListSnapshotsAmino): RequestListSnapshots; toAmino(_: RequestListSnapshots): RequestListSnapshotsAmino; 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: DeepPartial): RequestOfferSnapshot; fromAmino(object: RequestOfferSnapshotAmino): RequestOfferSnapshot; toAmino(message: RequestOfferSnapshot): RequestOfferSnapshotAmino; 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: DeepPartial): RequestLoadSnapshotChunk; fromAmino(object: RequestLoadSnapshotChunkAmino): RequestLoadSnapshotChunk; toAmino(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkAmino; 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: DeepPartial): RequestApplySnapshotChunk; fromAmino(object: RequestApplySnapshotChunkAmino): RequestApplySnapshotChunk; toAmino(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkAmino; 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: DeepPartial): RequestPrepareProposal; fromAmino(object: RequestPrepareProposalAmino): RequestPrepareProposal; toAmino(message: RequestPrepareProposal): RequestPrepareProposalAmino; 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: DeepPartial): RequestProcessProposal; fromAmino(object: RequestProcessProposalAmino): RequestProcessProposal; toAmino(message: RequestProcessProposal): RequestProcessProposalAmino; fromProtoMsg(message: RequestProcessProposalProtoMsg): RequestProcessProposal; toProto(message: RequestProcessProposal): Uint8Array; toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg; }; 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: DeepPartial): Response; fromAmino(object: ResponseAmino): Response; toAmino(message: Response): ResponseAmino; 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: DeepPartial): ResponseException; fromAmino(object: ResponseExceptionAmino): ResponseException; toAmino(message: ResponseException): ResponseExceptionAmino; 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: DeepPartial): ResponseEcho; fromAmino(object: ResponseEchoAmino): ResponseEcho; toAmino(message: ResponseEcho): ResponseEchoAmino; 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(_: DeepPartial): ResponseFlush; fromAmino(_: ResponseFlushAmino): ResponseFlush; toAmino(_: ResponseFlush): ResponseFlushAmino; 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: DeepPartial): ResponseInfo; fromAmino(object: ResponseInfoAmino): ResponseInfo; toAmino(message: ResponseInfo): ResponseInfoAmino; 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: DeepPartial): ResponseInitChain; fromAmino(object: ResponseInitChainAmino): ResponseInitChain; toAmino(message: ResponseInitChain): ResponseInitChainAmino; 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: DeepPartial): ResponseQuery; fromAmino(object: ResponseQueryAmino): ResponseQuery; toAmino(message: ResponseQuery): ResponseQueryAmino; fromProtoMsg(message: ResponseQueryProtoMsg): ResponseQuery; toProto(message: ResponseQuery): Uint8Array; toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg; }; export declare const ResponseBeginBlock: { typeUrl: string; encode(message: ResponseBeginBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseBeginBlock; fromJSON(object: any): ResponseBeginBlock; toJSON(message: ResponseBeginBlock): unknown; fromPartial(object: DeepPartial): ResponseBeginBlock; fromAmino(object: ResponseBeginBlockAmino): ResponseBeginBlock; toAmino(message: ResponseBeginBlock): ResponseBeginBlockAmino; fromProtoMsg(message: ResponseBeginBlockProtoMsg): ResponseBeginBlock; toProto(message: ResponseBeginBlock): Uint8Array; toProtoMsg(message: ResponseBeginBlock): ResponseBeginBlockProtoMsg; }; 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: DeepPartial): ResponseCheckTx; fromAmino(object: ResponseCheckTxAmino): ResponseCheckTx; toAmino(message: ResponseCheckTx): ResponseCheckTxAmino; fromProtoMsg(message: ResponseCheckTxProtoMsg): ResponseCheckTx; toProto(message: ResponseCheckTx): Uint8Array; toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg; }; export declare const ResponseDeliverTx: { typeUrl: string; encode(message: ResponseDeliverTx, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseDeliverTx; fromJSON(object: any): ResponseDeliverTx; toJSON(message: ResponseDeliverTx): unknown; fromPartial(object: DeepPartial): ResponseDeliverTx; fromAmino(object: ResponseDeliverTxAmino): ResponseDeliverTx; toAmino(message: ResponseDeliverTx): ResponseDeliverTxAmino; fromProtoMsg(message: ResponseDeliverTxProtoMsg): ResponseDeliverTx; toProto(message: ResponseDeliverTx): Uint8Array; toProtoMsg(message: ResponseDeliverTx): ResponseDeliverTxProtoMsg; }; export declare const ResponseEndBlock: { typeUrl: string; encode(message: ResponseEndBlock, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseEndBlock; fromJSON(object: any): ResponseEndBlock; toJSON(message: ResponseEndBlock): unknown; fromPartial(object: DeepPartial): ResponseEndBlock; fromAmino(object: ResponseEndBlockAmino): ResponseEndBlock; toAmino(message: ResponseEndBlock): ResponseEndBlockAmino; fromProtoMsg(message: ResponseEndBlockProtoMsg): ResponseEndBlock; toProto(message: ResponseEndBlock): Uint8Array; toProtoMsg(message: ResponseEndBlock): ResponseEndBlockProtoMsg; }; 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: DeepPartial): ResponseCommit; fromAmino(object: ResponseCommitAmino): ResponseCommit; toAmino(message: ResponseCommit): ResponseCommitAmino; 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: DeepPartial): ResponseListSnapshots; fromAmino(object: ResponseListSnapshotsAmino): ResponseListSnapshots; toAmino(message: ResponseListSnapshots): ResponseListSnapshotsAmino; 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: DeepPartial): ResponseOfferSnapshot; fromAmino(object: ResponseOfferSnapshotAmino): ResponseOfferSnapshot; toAmino(message: ResponseOfferSnapshot): ResponseOfferSnapshotAmino; 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: DeepPartial): ResponseLoadSnapshotChunk; fromAmino(object: ResponseLoadSnapshotChunkAmino): ResponseLoadSnapshotChunk; toAmino(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkAmino; 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: DeepPartial): ResponseApplySnapshotChunk; fromAmino(object: ResponseApplySnapshotChunkAmino): ResponseApplySnapshotChunk; toAmino(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkAmino; 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: DeepPartial): ResponsePrepareProposal; fromAmino(object: ResponsePrepareProposalAmino): ResponsePrepareProposal; toAmino(message: ResponsePrepareProposal): ResponsePrepareProposalAmino; 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: DeepPartial): ResponseProcessProposal; fromAmino(object: ResponseProcessProposalAmino): ResponseProcessProposal; toAmino(message: ResponseProcessProposal): ResponseProcessProposalAmino; fromProtoMsg(message: ResponseProcessProposalProtoMsg): ResponseProcessProposal; toProto(message: ResponseProcessProposal): Uint8Array; toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg; }; 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: DeepPartial): CommitInfo; fromAmino(object: CommitInfoAmino): CommitInfo; toAmino(message: CommitInfo): CommitInfoAmino; 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: DeepPartial): ExtendedCommitInfo; fromAmino(object: ExtendedCommitInfoAmino): ExtendedCommitInfo; toAmino(message: ExtendedCommitInfo): ExtendedCommitInfoAmino; 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: DeepPartial): Event; fromAmino(object: EventAmino): Event; toAmino(message: Event): EventAmino; 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: DeepPartial): EventAttribute; fromAmino(object: EventAttributeAmino): EventAttribute; toAmino(message: EventAttribute): EventAttributeAmino; fromProtoMsg(message: EventAttributeProtoMsg): EventAttribute; toProto(message: EventAttribute): Uint8Array; toProtoMsg(message: EventAttribute): EventAttributeProtoMsg; }; 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: DeepPartial): TxResult; fromAmino(object: TxResultAmino): TxResult; toAmino(message: TxResult): TxResultAmino; 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: DeepPartial): Validator; fromAmino(object: ValidatorAmino): Validator; toAmino(message: Validator): ValidatorAmino; 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: DeepPartial): ValidatorUpdate; fromAmino(object: ValidatorUpdateAmino): ValidatorUpdate; toAmino(message: ValidatorUpdate): ValidatorUpdateAmino; 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: DeepPartial): VoteInfo; fromAmino(object: VoteInfoAmino): VoteInfo; toAmino(message: VoteInfo): VoteInfoAmino; 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: DeepPartial): ExtendedVoteInfo; fromAmino(object: ExtendedVoteInfoAmino): ExtendedVoteInfo; toAmino(message: ExtendedVoteInfo): ExtendedVoteInfoAmino; 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: DeepPartial): Misbehavior; fromAmino(object: MisbehaviorAmino): Misbehavior; toAmino(message: Misbehavior): MisbehaviorAmino; 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: DeepPartial): Snapshot; fromAmino(object: SnapshotAmino): Snapshot; toAmino(message: Snapshot): SnapshotAmino; fromProtoMsg(message: SnapshotProtoMsg): Snapshot; toProto(message: Snapshot): Uint8Array; toProtoMsg(message: Snapshot): SnapshotProtoMsg; };