Skip to main content

TypeScript shape

interface CurrencyBarData {
  t: number;
  usd: IndividualBarData;
  token: IndividualBarData;
}
t
Int!
Unix timestamp (seconds) of the bar’s start.
usd
IndividualBarData!
USD-denominated bar. See IndividualBarData.
token
IndividualBarData!
Same bar denominated in the chain’s native token.