@yodlpay/tokenlists 0.8.27 → 0.8.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fiatCurrencies.json +87 -42
- package/dist/index.d.ts +97 -7
- package/dist/pricefeeds.json +12167 -2333
- package/dist/tokenlist-generated.json +1577 -464
- package/dist/tokenlists.cjs.development.js +22540 -11548
- package/dist/tokenlists.cjs.development.js.map +1 -1
- package/dist/tokenlists.cjs.production.min.js +1 -1
- package/dist/tokenlists.cjs.production.min.js.map +1 -1
- package/dist/tokenlists.esm.js +22543 -11551
- package/dist/tokenlists.esm.js.map +1 -1
- package/dist/types.d.ts +2 -1
- package/dist/update.d.ts +2 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
package/dist/update.d.ts
CHANGED
|
@@ -47,5 +47,6 @@ export declare const fetchChainLinkFeed: (chainName: string) => Promise<any>;
|
|
|
47
47
|
export declare const splitFeeds: (feeds: any, chainId: number) => any[];
|
|
48
48
|
export declare const resolveChainData: (chainId: number, fetchFeed?: any, fetchCoinGecko?: any) => Promise<any[]>;
|
|
49
49
|
export declare const fetchTokenData: (chainName: string) => Promise<any>;
|
|
50
|
-
export declare const resolveTokens: (chainId: number, tokenSymbolList: string[], fetchTokensFunc?: any) => Promise<TokenInfo[]>;
|
|
50
|
+
export declare const resolveTokens: (chainId: number, tokenSymbolList: string[], fetchTokensFunc?: any, coinGeckoIdMap?: Map<string, string> | undefined) => Promise<TokenInfo[]>;
|
|
51
51
|
export declare const hydrateFiatCurrencies: (fiatSymbols: string[]) => Promise<any>;
|
|
52
|
+
export declare const fetchCoinGeckoIds: () => Promise<any>;
|