UNPKG

@ton3/liteclient

Version:
14 lines (13 loc) 386 B
import { StreamWriter, StreamReader } from '../../tl/stream'; export interface BlockIdExt { workchain: number; shard: bigint; seqno: number; root_hash: Uint8Array; file_hash: Uint8Array; } export declare const blockIdExt: { tag: number; read: (dataReader: StreamReader) => BlockIdExt; write: (bufferWriter: StreamWriter, blockId: BlockIdExt) => void; };