I’m trying to get the last few DEX transaction for ~40 different contracts. from what I can tell that’s 40 API calls.
is there some way to batch them together?
right now I’m using 40 calls to this node:
ethereum(network: $network){
dexTrades(options: { desc: [“block.height”, “tradeIndex”], limit: $limit, offset: $offset },
date: { since: $from till: $till }
baseCurrency: { is: $token }
and getting throttled