Fetch all active intervals
Get all tokens present at least in one of our listed pairs with their ids (also their addresses), token names, decimals and symbols.
{
swapIntervals(where: { active: true }) {
interval
active
}
}
{
data {
swapIntervals: [
{
active: boolean
interval: BigInt
}
]
}
}
Last modified 10mo ago