UNPKG

@ton3/liteclient

Version:
19 lines (18 loc) 532 B
import { StreamReader } from '../../tl/stream'; import { BlockIdExt } from '../tonNode'; export interface RunMethodResult { mode: number; id: BlockIdExt; shardblk: BlockIdExt; shard_proof: Uint8Array | null; proof: Uint8Array | null; state_proof: Uint8Array | null; init_c7: Uint8Array | null; lib_extras: Uint8Array | null; exit_code: number; result: Uint8Array | null; } export declare const runMethodResult: { tag: number; read: (bufferReader: StreamReader) => RunMethodResult; };