We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f1bba commit db509e9Copy full SHA for db509e9
src/common/utils/tokenList.ts
@@ -69,7 +69,10 @@ const loadTokenlistsFromFiles = () => {
69
}),
70
)
71
72
- // setTimeout(buildCache, Number(process.env.TOKENLIST_CACHE_TIMEOUT_SECONDS || 10) * 1000)
+ setTimeout(
73
+ buildCache,
74
+ Number(process.env.TOKENLIST_CACHE_TIMEOUT_SECONDS || 5 * 60) * 1000,
75
+ )
76
})()
77
78
export default function getTokenList(chainId: number): TokenListItem[] {
0 commit comments