Historical APY indexing

We are indexing historical APY within 24 hour historical snapshot windows. You can query this as follows: API endpoint: https://indexer.hyperindex.xyz/a7dd119/v1/graphql

Query:

query sumRewards24h {
  CoreVault_TotalRewardsClaimedPerDay {
    startTimestamp,
    dailyAPR
  }
}

dailyAPR has two decimals points, so display the APR as:

dailyAPR / 100

Last updated