@ton3/liteclient
Version:
TON Blockchain LiteClient
12 lines (11 loc) • 317 B
TypeScript
import { StreamReader } from '../../tl/stream';
import { BlockIdExt } from '../tonNode';
export interface TransactionInfo {
id: BlockIdExt;
proof: Uint8Array;
transaction: Uint8Array;
}
export declare const transactionInfo: {
tag: number;
read: (bufferReader: StreamReader) => TransactionInfo;
};