Skip to content

Commit 19493fa

Browse files
committed
cloud-functions: Increased coingecko delay and chunk size
1 parent c9da598 commit 19493fa

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

database/src/coingecko.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import axios, { isAxiosError } from 'axios';
44

55
const COIN_GECKO_API_BASE_URL = 'https://api.coingecko.com/api/v3';
66
const COIN_GECKO_PRO_API_BASE_URL = 'https://pro-api.coingecko.com/api/v3';
7-
const COIN_GECKO_API_SLEEP_MS = 200;
7+
const COIN_GECKO_API_SLEEP_MS = 1000;
88

99
// https://api.coingecko.com/api/v3/asset_platforms
1010
export const COINGECKO_PLATFORM_BY_CHAIN: { [key in ChainName]?: string } = {
@@ -66,10 +66,13 @@ export const fetchPrices = async (coinIds: string[], apiKey?: string): Promise<C
6666
? [COIN_GECKO_PRO_API_BASE_URL, createConfig(apiKey)]
6767
: [COIN_GECKO_API_BASE_URL, undefined];
6868
let prices: CoinGeckoPrices = {};
69-
const chunks = chunkArray(coinIds, 200);
69+
const chunks = chunkArray(coinIds, 400);
70+
console.log(`fetching ${chunks.length} chunks of prices`);
7071
for (const chunk of chunks) {
72+
console.log(`fetching chunk of ${chunk.length} prices`);
7173
const url = `${baseUrl}/simple/price?ids=${chunk.join(',')}&vs_currencies=usd`;
7274
const response = await axios.get<CoinGeckoPrices>(url, config);
75+
console.log(`fetched ${Object.keys(response.data).length} prices`);
7376
prices = {
7477
...prices,
7578
...response.data,

0 commit comments

Comments
 (0)