ton3-liteclient
Version:
TON Blockchain LiteClient
14 lines (13 loc) • 357 B
TypeScript
import { StreamReader } from '../../tl/stream';
import { BlockIdExt } from '../tonNode';
export interface AccountState {
id: BlockIdExt;
shardblk: BlockIdExt;
shard_proof: Uint8Array;
proof: Uint8Array;
state: Uint8Array;
}
export declare const accountState: {
tag: number;
read: (bufferReader: StreamReader) => AccountState;
};