Type Alias UserDepositFullInfo

    UserDepositFullInfo: {
        currentRound?: number;
        escrowAddress: string;
        holdings: {
            assetBalance: bigint;
            assetId: number;
            assetPrice: bigint;
            balanceValue: bigint;
            fAssetBalance: bigint;
            fAssetId: number;
            interestRate: bigint;
            interestYield: bigint;
            poolAppId: number;
        }[];
    }