query

query method is used to initialise a limestone query

Simple example

const price = await limestone.query()
  .symbol("AR")
  .latest()
  .exec();

console.log(price.value); // latest price value for AR token (in USD)
console.log(price.timestamp); // the exact timestamp of the price

To learn more, visit the Limestone Query page

pageLimestone query

Last updated