@ton3/liteclient
Version:
TON Blockchain LiteClient
11 lines (10 loc) • 334 B
TypeScript
import { StreamWriter, StreamReader } from '../../tl/stream';
export interface TransactionId3 {
account: Uint8Array;
lt: bigint;
}
export declare const transactionId3: {
tag: number;
read: (bufferReader: StreamReader) => TransactionId3;
write: (bufferWriter: StreamWriter, transaction: TransactionId3) => void;
};