@swapkit/tokens 1.0.0-rc.26 → 1.0.0-rc.28
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/index.cjs +1 -1
- package/dist/index.d.ts +8543 -8466
- package/dist/index.es.js +9328 -9166
- package/package.json +8 -8
- package/src/index.ts +0 -1
- package/src/tokenLists/Coingecko.ts +10243 -10104
- package/src/tokenLists/Pancakeswap.ts +15 -3
- package/src/tokenLists/Pancakeswapeth.ts +9 -3
- package/src/tokenLists/Stargatearb.ts +1 -1
- package/src/tokenLists/Thorchain.ts +1 -1
- package/src/tokenLists/Traderjoe.ts +32 -2
- package/src/tokenLists/Native.ts +0 -25
package/package.json
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
"description": "SwapKit Lib tokens",
|
|
4
4
|
"devDependencies": {
|
|
5
5
|
"@types/fs-extra": "11.0.4",
|
|
6
|
-
"@vitest/coverage-istanbul": "0.
|
|
7
|
-
"fs-extra": "11.
|
|
8
|
-
"vite": "
|
|
9
|
-
"vitest": "0.
|
|
10
|
-
"@internal/config": "0.0.0-rc.
|
|
11
|
-
"@swapkit/api": "1.0.0-rc.
|
|
12
|
-
"@swapkit/types": "1.0.0-rc.
|
|
6
|
+
"@vitest/coverage-istanbul": "1.0.1",
|
|
7
|
+
"fs-extra": "11.2.0",
|
|
8
|
+
"vite": "5.0.6",
|
|
9
|
+
"vitest": "1.0.1",
|
|
10
|
+
"@internal/config": "0.0.0-rc.12",
|
|
11
|
+
"@swapkit/api": "1.0.0-rc.26",
|
|
12
|
+
"@swapkit/types": "1.0.0-rc.26"
|
|
13
13
|
},
|
|
14
14
|
"eslintConfig": {
|
|
15
15
|
"extends": "../../../internal/eslint-config"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"repository": "https://github.com/thorswap/SwapKit.git",
|
|
38
38
|
"type": "module",
|
|
39
39
|
"types": "./dist/index.d.ts",
|
|
40
|
-
"version": "1.0.0-rc.
|
|
40
|
+
"version": "1.0.0-rc.28",
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "vite build",
|
|
43
43
|
"generate-tokens": "node ./scripts/fetchTokenLists.js",
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { list as OneInchList } from './tokenLists/1inch.ts';
|
|
2
2
|
export { list as CoinGeckoList } from './tokenLists/Coingecko.ts';
|
|
3
3
|
export { list as MayaList } from './tokenLists/Maya.ts';
|
|
4
|
-
export { list as NativeList } from './tokenLists/Native.ts';
|
|
5
4
|
export { list as PancakeswapList } from './tokenLists/Pancakeswap.ts';
|
|
6
5
|
export { list as PancakeswapETHList } from './tokenLists/Pancakeswapeth.ts';
|
|
7
6
|
export { list as PangolinList } from './tokenLists/Pangolin.ts';
|