Loan Request
export interface LoanData {
loanId: string;
loanAmount: number;
underlyingDecimalPlaces: number;
collateralAmount: number;
collateralDecimalPlaces: number;
loanTerm: number;
loanRate: number;
loanFee: number;
loanRequestValidity: string;
underlyingSymbol: string;
underlyingCurrency: string;
collateralSymbol: string;
collateralCurrency: string;
userRating: number;
borrowerAddress: string;
type: string;
creditLineAddress: string | undefined;
signature: string | undefined;
}Last updated