Type Alias UserLiteData

UserLiteData: {
    backupCell: Cell;
    backupCell1: Cell | null;
    backupCell2: Cell | null;
    balances: Dictionary<bigint, UserBalance>;
    codeVersion: number;
    dutchAuctionStart: number;
    fullyParsed: boolean;
    masterAddress: Address;
    ownerAddress: Address;
    principals: Dictionary<bigint, bigint>;
    realPrincipals: Dictionary<bigint, bigint>;
    rewards: Dictionary<bigint, UserRewards>;
    state: number;
    trackingBorrowIndex: bigint;
    trackingSupplyIndex: bigint;
    type: "active";
}