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

Fetch Notional's reserves

Get Notional's Reserve balances

This query can be used to fetch the protocol's Prime Cash reserves:

{
  accounts(where:{ systemAccountType: FeeReserve}) {
    id
    balances {
      token{symbol}
      snapshots(first:1, orderBy:blockNumber, orderDirection:desc) {
        currentBalance
      }
    }
  }
}

Last updated