UNPKG

@ton3/liteclient

Version:
15 lines (14 loc) 417 B
import { StreamReader } from '../../tl/stream'; import { BlockIdExt } from '../tonNode'; import { TransactionId } from './transactionId'; export interface BlockTransactions { id: BlockIdExt; req_count: number; incomplete: boolean; ids: TransactionId[]; proof: Uint8Array; } export declare const blockTransactions: { tag: number; read: (bufferReader: StreamReader) => BlockTransactions; };