Type alias DepositRecord

DepositRecord: {
    amount: BN;
    depositRecordId: BN;
    direction: {
        deposit?: any;
        withdraw?: any;
    };
    explanation: DepositExplanation;
    marketCumulativeBorrowInterest: BN;
    marketCumulativeDepositInterest: BN;
    marketDepositBalance: BN;
    marketIndex: number;
    marketWithdrawBalance: BN;
    oraclePrice: BN;
    totalDepositsAfter: BN;
    totalWithdrawsAfter: BN;
    transferUser?: PublicKey;
    ts: BN;
    user: PublicKey;
    userAuthority: PublicKey;
}

Type declaration

  • amount: BN
  • depositRecordId: BN
  • direction: {
        deposit?: any;
        withdraw?: any;
    }
    • Optional deposit?: any
    • Optional withdraw?: any
  • explanation: DepositExplanation
  • marketCumulativeBorrowInterest: BN
  • marketCumulativeDepositInterest: BN
  • marketDepositBalance: BN
  • marketIndex: number
  • marketWithdrawBalance: BN
  • oraclePrice: BN
  • totalDepositsAfter: BN
  • totalWithdrawsAfter: BN
  • Optional transferUser?: PublicKey
  • ts: BN
  • user: PublicKey
  • userAuthority: PublicKey

Generated using TypeDoc