/** * CheckTxResult type and creator */ import { Event } from '../tx/event'; export interface CheckTxResult { readonly code: number; readonly data?: Uint8Array; readonly log?: string; readonly info?: string; readonly gasWanted?: bigint; readonly gasUsed?: bigint; readonly events: readonly Event[]; readonly codespace?: string; } export declare const CheckTxResultCodec: import("../../../codec").BaseCodec;