UNPKG

ton3-liteclient

Version:
14 lines (13 loc) 357 B
import { StreamReader } from '../../tl/stream'; import { BlockIdExt } from '../tonNode'; export interface AccountState { id: BlockIdExt; shardblk: BlockIdExt; shard_proof: Uint8Array; proof: Uint8Array; state: Uint8Array; } export declare const accountState: { tag: number; read: (bufferReader: StreamReader) => AccountState; };