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
It should include CORS-based limiting, same origin.
It uses CoinGecko's Free Tier API key, which has a limit of 30 requests per minute.
Service is stateless with regards to Safes, it doesn't know anything about Safe addresses.
Service accepts a list of token addresses (and/or ETH), and responds back with USD value for each token address (and/or ETH).
I see the hard part being satisfying these three things at the same time. As long as number 3 is a should, not a must, we'll be gucci:
Service must always respond to a request in a timely manner (no slower than however much longer a CoinGecko request takes, plus some time for our service to build a response).
Service must, globally, never hit the CoinGecko API more than 30 times in a 1 minute window.
Service should not return stale price data ("staleness" to be tweaked later, lets call it 30 mins for now).
The text was updated successfully, but these errors were encountered:
We need to build a backend price supplier API.
Here are some requirements:
I see the hard part being satisfying these three things at the same time. As long as number 3 is a should, not a must, we'll be gucci:
The text was updated successfully, but these errors were encountered: