@swapkit/tokens 2.5.4 → 2.6.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.
- package/dist/index.js +2 -2
- package/dist/index.js.map +14 -14
- package/package.json +1 -1
- package/src/tokenLists/chainflip.ts +11 -21
- package/src/tokenLists/index.ts +1 -2
- package/src/tokenLists/jupiter.ts +365 -15
- package/src/tokenLists/mayachain.ts +72 -266
- package/src/tokenLists/oneinch.ts +2622 -454
- package/src/tokenLists/pancakeswap.ts +83 -3
- package/src/tokenLists/pangolin_v1.ts +7 -37
- package/src/tokenLists/sushiswap_v2.ts +76 -146
- package/src/tokenLists/thorchain.ts +104 -378
- package/src/tokenLists/traderjoe_v2.ts +231 -61
- package/src/tokenLists/uniswap_v2.ts +1518 -68
- package/src/tokenLists/uniswap_v3.ts +1462 -1163
- package/src/tokenLists/kado.ts +0 -519
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
export const list = {
|
|
2
2
|
provider: "CHAINFLIP",
|
|
3
3
|
name: "CHAINFLIP",
|
|
4
|
-
timestamp: "2025-
|
|
4
|
+
timestamp: "2025-06-03T10:28:20.531Z",
|
|
5
5
|
version: {
|
|
6
6
|
major: 1,
|
|
7
7
|
minor: 0,
|
|
8
8
|
patch: 0,
|
|
9
9
|
},
|
|
10
10
|
keywords: [],
|
|
11
|
-
count:
|
|
11
|
+
count: 9,
|
|
12
12
|
tokens: [
|
|
13
13
|
{
|
|
14
14
|
chain: "ARB",
|
|
15
15
|
chainId: "42161",
|
|
16
16
|
decimals: 18,
|
|
17
17
|
identifier: "ARB.ETH",
|
|
18
|
-
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/arb.eth.png",
|
|
18
|
+
logoURI: "https://storage.googleapis.com/token-list-swapkit-dev/images/arb.eth.png",
|
|
19
19
|
ticker: "ETH",
|
|
20
20
|
},
|
|
21
21
|
{
|
|
@@ -25,7 +25,7 @@ export const list = {
|
|
|
25
25
|
decimals: 6,
|
|
26
26
|
identifier: "ARB.USDC-0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
|
|
27
27
|
logoURI:
|
|
28
|
-
"https://storage.googleapis.com/token-list-swapkit/images/arb.usdc-0xaf88d065e77c8cc2239327c5edb3a432268e5831.png",
|
|
28
|
+
"https://storage.googleapis.com/token-list-swapkit-dev/images/arb.usdc-0xaf88d065e77c8cc2239327c5edb3a432268e5831.png",
|
|
29
29
|
ticker: "USDC",
|
|
30
30
|
},
|
|
31
31
|
{
|
|
@@ -33,7 +33,7 @@ export const list = {
|
|
|
33
33
|
chainId: "bitcoin",
|
|
34
34
|
decimals: 8,
|
|
35
35
|
identifier: "BTC.BTC",
|
|
36
|
-
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/btc.btc.png",
|
|
36
|
+
logoURI: "https://storage.googleapis.com/token-list-swapkit-dev/images/btc.btc.png",
|
|
37
37
|
ticker: "BTC",
|
|
38
38
|
},
|
|
39
39
|
{
|
|
@@ -41,7 +41,7 @@ export const list = {
|
|
|
41
41
|
chainId: "polkadot",
|
|
42
42
|
decimals: 10,
|
|
43
43
|
identifier: "DOT.DOT",
|
|
44
|
-
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/dot.dot.png",
|
|
44
|
+
logoURI: "https://storage.googleapis.com/token-list-swapkit-dev/images/dot.dot.png",
|
|
45
45
|
ticker: "DOT",
|
|
46
46
|
},
|
|
47
47
|
{
|
|
@@ -49,7 +49,7 @@ export const list = {
|
|
|
49
49
|
chainId: "1",
|
|
50
50
|
decimals: 18,
|
|
51
51
|
identifier: "ETH.ETH",
|
|
52
|
-
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/eth.eth.png",
|
|
52
|
+
logoURI: "https://storage.googleapis.com/token-list-swapkit-dev/images/eth.eth.png",
|
|
53
53
|
ticker: "ETH",
|
|
54
54
|
},
|
|
55
55
|
{
|
|
@@ -59,7 +59,7 @@ export const list = {
|
|
|
59
59
|
decimals: 18,
|
|
60
60
|
identifier: "ETH.FLIP-0x826180541412D574cf1336d22c0C0a287822678A",
|
|
61
61
|
logoURI:
|
|
62
|
-
"https://storage.googleapis.com/token-list-swapkit/images/eth.flip-0x826180541412d574cf1336d22c0c0a287822678a.png",
|
|
62
|
+
"https://storage.googleapis.com/token-list-swapkit-dev/images/eth.flip-0x826180541412d574cf1336d22c0c0a287822678a.png",
|
|
63
63
|
ticker: "FLIP",
|
|
64
64
|
},
|
|
65
65
|
{
|
|
@@ -69,7 +69,7 @@ export const list = {
|
|
|
69
69
|
decimals: 6,
|
|
70
70
|
identifier: "ETH.USDC-0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
|
71
71
|
logoURI:
|
|
72
|
-
"https://storage.googleapis.com/token-list-swapkit/images/eth.usdc-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png",
|
|
72
|
+
"https://storage.googleapis.com/token-list-swapkit-dev/images/eth.usdc-0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png",
|
|
73
73
|
ticker: "USDC",
|
|
74
74
|
},
|
|
75
75
|
{
|
|
@@ -79,7 +79,7 @@ export const list = {
|
|
|
79
79
|
decimals: 6,
|
|
80
80
|
identifier: "ETH.USDT-0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
81
81
|
logoURI:
|
|
82
|
-
"https://storage.googleapis.com/token-list-swapkit/images/eth.usdt-0xdac17f958d2ee523a2206206994597c13d831ec7.png",
|
|
82
|
+
"https://storage.googleapis.com/token-list-swapkit-dev/images/eth.usdt-0xdac17f958d2ee523a2206206994597c13d831ec7.png",
|
|
83
83
|
ticker: "USDT",
|
|
84
84
|
},
|
|
85
85
|
{
|
|
@@ -87,18 +87,8 @@ export const list = {
|
|
|
87
87
|
chainId: "solana",
|
|
88
88
|
decimals: 9,
|
|
89
89
|
identifier: "SOL.SOL",
|
|
90
|
-
logoURI: "https://storage.googleapis.com/token-list-swapkit/images/sol.sol.png",
|
|
90
|
+
logoURI: "https://storage.googleapis.com/token-list-swapkit-dev/images/sol.sol.png",
|
|
91
91
|
ticker: "SOL",
|
|
92
92
|
},
|
|
93
|
-
{
|
|
94
|
-
address: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
|
|
95
|
-
chain: "SOL",
|
|
96
|
-
chainId: "solana",
|
|
97
|
-
decimals: 6,
|
|
98
|
-
identifier: "SOL.USDC-EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
|
|
99
|
-
logoURI:
|
|
100
|
-
"https://storage.googleapis.com/token-list-swapkit/images/sol.usdc-epjfwdd5aufqssqem2qn1xzybapc8g4weggkzwytdt1v.png",
|
|
101
|
-
ticker: "USDC",
|
|
102
|
-
},
|
|
103
93
|
],
|
|
104
94
|
} as const;
|
package/src/tokenLists/index.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { list as CaviarV1List } from "./caviar_v1";
|
|
2
2
|
export { list as ChainflipList } from "./chainflip";
|
|
3
|
-
|
|
4
|
-
export { list as KadoList } from "./kado";
|
|
3
|
+
export { list as JupiterList } from "./jupiter";
|
|
5
4
|
export { list as MayaList } from "./mayachain";
|
|
6
5
|
export { list as OneInchList } from "./oneinch";
|
|
7
6
|
export { list as OpenOceanV2List } from "./openocean_v2";
|