For the complete documentation index, see llms.txt. This page is also available as Markdown.

Fetch Outstanding Debt

Get Prime Cash and fCash Markets Outstanding Debts

This query can be used to fetch Notional outstanding variable and fixed debts:

{
primeCashMarkets{
  snapshots(first: 1, orderBy: timestamp, orderDirection:desc){
    market{id}
    totalPrimeDebtInUnderlying
  }
  }
  fCashMarkets{
    snapshots(first: 1, orderBy: timestamp, orderDirection:desc){
    market{id}
    totalfCashDebtOutstandingPresentValue
  }
  }
}

Last updated