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