You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For indexer to effectively get balance on block for a particular ticker. It is good to have an batch API for it. It can largely reduced the rate for calling API, roughly by ~100x less. The shape of the API can looks like following:
Summary
For indexer to effectively get balance on block for a particular ticker. It is good to have an batch API for it. It can largely reduced the rate for calling API, roughly by ~100x less. The shape of the API can looks like following:
request:
{address: string, block_height: number, ticker: string}[]
response:
{address: string, block_height: number, ticker: string, balance: string}[]
which request is an array of the queries, and response is an array of query results.
Reference
The text was updated successfully, but these errors were encountered: