diff --git a/src/token/token.service.ts b/src/token/token.service.ts index d5a885fee..3141f7280 100644 --- a/src/token/token.service.ts +++ b/src/token/token.service.ts @@ -17,7 +17,7 @@ export class TokenService { }); } - @Cache({ key: (network: Network) => `token-prices:${network}` }) + @Cache({ key: (network: Network) => `token-prices:${network}`, ttl: 60 }) async getTokenPrices(network: Network) { const { data: tokenPrices } = await this.axios.get('/v1/prices-v3', { params: { network } }); return tokenPrices;