Skip to main content

TypeScript shape

interface TokenExtrema {
  id: string;
  address: string;
  networkId: number;
  athPrice: string;
  athPriceTimestamp: number;
  atlPrice: string;
  atlPriceTimestamp: number;
  athFdv: string;
  athFdvTimestamp: number;
  atlFdv: string;
  atlFdvTimestamp: number;
  athCircMc: string;
  athCircMcTimestamp: number;
  atlCircMc: string;
  atlCircMcTimestamp: number;
}
id
String!
Token ID (address:networkId).
address
String!
Token contract address.
networkId
Int!
Network ID the token is deployed on.
athPrice
String!
All-time high price (USD).
athPriceTimestamp
Int!
Unix timestamp of the all-time high price.
atlPrice
String!
All-time low price (USD).
atlPriceTimestamp
Int!
Unix timestamp of the all-time low price.
athFdv
String!
All-time high fully diluted valuation (USD).
athFdvTimestamp
Int!
Unix timestamp of the all-time high FDV.
atlFdv
String!
All-time low fully diluted valuation (USD).
atlFdvTimestamp
Int!
Unix timestamp of the all-time low FDV.
athCircMc
String!
All-time high circulating market cap (USD).
athCircMcTimestamp
Int!
Unix timestamp of the all-time high circulating market cap.
atlCircMc
String!
All-time low circulating market cap (USD).
atlCircMcTimestamp
Int!
Unix timestamp of the all-time low circulating market cap.