@yodlpay/tokenlists 0.9.6 → 1.0.0

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.
Files changed (40) hide show
  1. package/README.md +210 -14
  2. package/dist/ccip-CTW8a_vN.js +184 -0
  3. package/dist/index-Cso5F8p5.js +33269 -0
  4. package/dist/index.js +31 -6
  5. package/dist/tokens/tokenlist-featured.json +905 -0
  6. package/dist/tokens/tokenlist-generated.json +4635 -0
  7. package/package.json +30 -17
  8. package/dist/abis-ts/YodlRouterV0.1.abi.d.ts +0 -131
  9. package/dist/abis-ts/YodlRouterV0.2.abi.d.ts +0 -417
  10. package/dist/abis-ts/YodlRouterV0.3.abi.d.ts +0 -447
  11. package/dist/abis-ts/YodlRouterV0.4.abi.d.ts +0 -459
  12. package/dist/abis-ts/YodlRouterV0.5.abi.d.ts +0 -458
  13. package/dist/abis-ts/YodlRouterV0.6.abi.d.ts +0 -796
  14. package/dist/abis-ts/YodlRouterV0.7.abi.d.ts +0 -695
  15. package/dist/abis-ts/YodlRouterV0.8.abi.d.ts +0 -986
  16. package/dist/abis-ts/YodlRouterV0.9.abi.d.ts +0 -978
  17. package/dist/abis.d.ts +0 -67
  18. package/dist/chainlist-v1.json +0 -193
  19. package/dist/curve.json +0 -30
  20. package/dist/diffTokenLists.d.ts +0 -30
  21. package/dist/fiatCurrencies.json +0 -158
  22. package/dist/getVersionUpgrade.d.ts +0 -17
  23. package/dist/index.d.ts +0 -5576
  24. package/dist/isVersionUpdate.d.ts +0 -5
  25. package/dist/minVersionBump.d.ts +0 -8
  26. package/dist/nextVersion.d.ts +0 -8
  27. package/dist/pricefeeds.json +0 -16669
  28. package/dist/routerlist-v1.d.ts +0 -14
  29. package/dist/schema.tokenlist-v1.json +0 -329
  30. package/dist/tokenlist-featured.json +0 -1549
  31. package/dist/tokenlist-generated.json +0 -3404
  32. package/dist/tokenlists.cjs.development.js +0 -28584
  33. package/dist/tokenlists.cjs.development.js.map +0 -1
  34. package/dist/tokenlists.cjs.production.min.js +0 -2
  35. package/dist/tokenlists.cjs.production.min.js.map +0 -1
  36. package/dist/tokenlists.esm.js +0 -28552
  37. package/dist/tokenlists.esm.js.map +0 -1
  38. package/dist/types.d.ts +0 -98
  39. package/dist/update.d.ts +0 -77
  40. package/dist/versionComparator.d.ts +0 -8
@@ -1,5 +0,0 @@
1
- import { Version } from './types';
2
- /**
3
- * Returns true if versionB is an update over versionA
4
- */
5
- export declare function isVersionUpdate(base: Version, update: Version): boolean;
@@ -1,8 +0,0 @@
1
- import { VersionUpgrade } from './getVersionUpgrade';
2
- import { TokenInfo } from './types';
3
- /**
4
- * Returns the minimum version bump for the given list
5
- * @param baseList the base list of tokens
6
- * @param updatedList the updated list of tokens
7
- */
8
- export declare function minVersionBump(baseList: TokenInfo[], updatedList: TokenInfo[]): VersionUpgrade;
@@ -1,8 +0,0 @@
1
- import { VersionUpgrade } from './getVersionUpgrade';
2
- import { Version } from './types';
3
- /**
4
- * Returns the next version of the list given a base version and the upgrade type
5
- * @param base current version
6
- * @param bump the upgrade type
7
- */
8
- export declare function nextVersion(base: Version, bump: VersionUpgrade): Version;