@ton3/liteclient
Version:
TON Blockchain LiteClient
14 lines (13 loc) • 386 B
TypeScript
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;
};