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

Fetch Historical Trades

Get all fCash historical trades

This query can be used to fetch historical fCash trades. This includes fCash trades occurring upon nToken redemptions and nToken mints above the leverage threshold.

{
  transferBundles(orderBy:timestamp, where:{bundleName_in:["Buy fCash","Sell fCash"], transfers_:{tokenType:"fCash"}}){
    bundleName
    timestamp
    transfers{
      from{id}
      to{id}
      token{symbol}
      value
      valueInUnderlying
    }
  }
}

Last updated