import { Timestamp } from "../../google/protobuf/timestamp"; import { ConsensusParams } from "../types/params"; import { ProofOps } from "../crypto/proof"; import { PublicKey } from "../crypto/keys"; import { BlockIDFlag } from "../types/validator"; import { BinaryReader, BinaryWriter } from "../../binary"; import { DeepPartial, Exact } from "../../helpers"; import { JsonSafe } from "../../json-safe"; export declare const protobufPackage = "tendermint.abci"; export declare enum CheckTxType { NEW = 0, RECHECK = 1, UNRECOGNIZED = -1 } 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 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 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 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 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 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; checkTx?: RequestCheckTx; commit?: RequestCommit; listSnapshots?: RequestListSnapshots; offerSnapshot?: RequestOfferSnapshot; loadSnapshotChunk?: RequestLoadSnapshotChunk; applySnapshotChunk?: RequestApplySnapshotChunk; prepareProposal?: RequestPrepareProposal; processProposal?: RequestProcessProposal; extendVote?: RequestExtendVote; verifyVoteExtension?: RequestVerifyVoteExtension; finalizeBlock?: RequestFinalizeBlock; } export interface RequestEcho { message: string; } export interface RequestFlush { } export interface RequestInfo { version: string; blockVersion: bigint; p2pVersion: bigint; abciVersion: string; } export interface RequestInitChain { time: Timestamp; chainId: string; consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appStateBytes: Uint8Array; initialHeight: bigint; } export interface RequestQuery { data: Uint8Array; path: string; height: bigint; prove: boolean; } export interface RequestCheckTx { tx: Uint8Array; type: CheckTxType; } export interface RequestCommit { } /** lists available snapshots */ export interface RequestListSnapshots { } /** 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; } /** loads a snapshot chunk */ export interface RequestLoadSnapshotChunk { height: bigint; format: number; chunk: number; } /** Applies a snapshot chunk */ export interface RequestApplySnapshotChunk { 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: Timestamp; nextValidatorsHash: Uint8Array; /** address of the public key of the validator proposing the block. */ proposerAddress: 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: Timestamp; nextValidatorsHash: Uint8Array; /** address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } /** 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; txs: Uint8Array[]; proposedLastCommit: CommitInfo; misbehavior: Misbehavior[]; nextValidatorsHash: Uint8Array; /** address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } /** 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 RequestFinalizeBlock { txs: Uint8Array[]; decidedLastCommit: CommitInfo; misbehavior: Misbehavior[]; /** hash is the merkle root hash of the fields of the decided block. */ hash: Uint8Array; height: bigint; time: Timestamp; nextValidatorsHash: Uint8Array; /** proposer_address is the address of the public key of the original proposer of the block. */ proposerAddress: Uint8Array; } export interface Response { exception?: ResponseException; echo?: ResponseEcho; flush?: ResponseFlush; info?: ResponseInfo; initChain?: ResponseInitChain; query?: ResponseQuery; checkTx?: ResponseCheckTx; commit?: ResponseCommit; listSnapshots?: ResponseListSnapshots; offerSnapshot?: ResponseOfferSnapshot; loadSnapshotChunk?: ResponseLoadSnapshotChunk; applySnapshotChunk?: ResponseApplySnapshotChunk; prepareProposal?: ResponsePrepareProposal; processProposal?: ResponseProcessProposal; extendVote?: ResponseExtendVote; verifyVoteExtension?: ResponseVerifyVoteExtension; finalizeBlock?: ResponseFinalizeBlock; } /** nondeterministic */ export interface ResponseException { error: string; } export interface ResponseEcho { message: string; } export interface ResponseFlush { } export interface ResponseInfo { data: string; version: string; appVersion: bigint; lastBlockHeight: bigint; lastBlockAppHash: Uint8Array; } export interface ResponseInitChain { consensusParams?: ConsensusParams; validators: ValidatorUpdate[]; appHash: 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 ResponseCheckTx { code: number; data: Uint8Array; /** nondeterministic */ log: string; /** nondeterministic */ info: string; gasWanted: bigint; gasUsed: bigint; events: Event[]; codespace: string; } export interface ResponseCommit { retainHeight: bigint; } export interface ResponseListSnapshots { snapshots: Snapshot[]; } export interface ResponseOfferSnapshot { result: ResponseOfferSnapshot_Result; } export interface ResponseLoadSnapshotChunk { 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 ResponsePrepareProposal { txs: Uint8Array[]; } export interface ResponseProcessProposal { status: ResponseProcessProposal_ProposalStatus; } export interface ResponseExtendVote { voteExtension: Uint8Array; } export interface ResponseVerifyVoteExtension { status: ResponseVerifyVoteExtension_VerifyStatus; } 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; /** * 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 CommitInfo { round: number; votes: VoteInfo[]; } /** * 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[]; } /** * 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[]; } /** EventAttribute is a single key-value pair, associated with an event. */ export interface EventAttribute { key: string; value: string; /** nondeterministic */ index: boolean; } /** * 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; } /** * TxResult contains results of executing the transaction. * * One usage is indexing transaction results. */ export interface TxResult { height: bigint; index: number; tx: Uint8Array; result: ExecTxResult; } export interface Validator { /** The first 20 bytes of SHA256(public key) */ address: Uint8Array; /** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */ power: bigint; } export interface ValidatorUpdate { pubKey: PublicKey; power: bigint; } export interface VoteInfo { validator: Validator; blockIdFlag: BlockIDFlag; } export interface ExtendedVoteInfo { /** The validator that sent the vote. */ validator: Validator; /** 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 Misbehavior { type: MisbehaviorType; /** The offending validator */ validator: Validator; /** The height when the offense occurred */ height: bigint; /** The corresponding time where the offense occurred */ time: Timestamp; /** * 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 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 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): JsonSafe; fromPartial, I>>(object: I): Request; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestEcho; }; export declare const RequestFlush: { typeUrl: string; encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush; fromJSON(_: any): RequestFlush; toJSON(_: RequestFlush): JsonSafe; fromPartial, I>>(_: I): RequestFlush; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestInitChain; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestQuery; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestCheckTx; }; export declare const RequestCommit: { typeUrl: string; encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestCommit; fromJSON(_: any): RequestCommit; toJSON(_: RequestCommit): JsonSafe; fromPartial, I>>(_: I): RequestCommit; }; export declare const RequestListSnapshots: { typeUrl: string; encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots; fromJSON(_: any): RequestListSnapshots; toJSON(_: RequestListSnapshots): JsonSafe; fromPartial, I>>(_: I): RequestListSnapshots; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestOfferSnapshot; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestLoadSnapshotChunk; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestApplySnapshotChunk; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestPrepareProposal; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestProcessProposal; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestExtendVote; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestVerifyVoteExtension; }; 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): JsonSafe; fromPartial, I>>(object: I): RequestFinalizeBlock; }; 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): JsonSafe; fromPartial, I>>(object: I): Response; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseException; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseEcho; }; export declare const ResponseFlush: { typeUrl: string; encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush; fromJSON(_: any): ResponseFlush; toJSON(_: ResponseFlush): JsonSafe; fromPartial, I>>(_: I): ResponseFlush; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseInitChain; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseQuery; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseCheckTx; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseCommit; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseListSnapshots; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseOfferSnapshot; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseLoadSnapshotChunk; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseApplySnapshotChunk; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponsePrepareProposal; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseProcessProposal; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseExtendVote; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseVerifyVoteExtension; }; 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): JsonSafe; fromPartial, I>>(object: I): ResponseFinalizeBlock; }; 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): JsonSafe; fromPartial, I>>(object: I): CommitInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): ExtendedCommitInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): Event; }; 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): JsonSafe; fromPartial, I>>(object: I): EventAttribute; }; 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): JsonSafe; fromPartial, I>>(object: I): ExecTxResult; }; 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): JsonSafe; fromPartial, I>>(object: I): TxResult; }; 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): JsonSafe; fromPartial, I>>(object: I): Validator; }; 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): JsonSafe; fromPartial, I>>(object: I): ValidatorUpdate; }; 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): JsonSafe; fromPartial, I>>(object: I): VoteInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): ExtendedVoteInfo; }; 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): JsonSafe; fromPartial, I>>(object: I): Misbehavior; }; 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): JsonSafe; fromPartial, I>>(object: I): Snapshot; };