@swapkit/tokens 2.2.2 → 2.3.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 +15 -14
- package/package.json +1 -1
- package/src/tokenLists/camelot_v3.ts +24 -4
- package/src/tokenLists/caviar_v1.ts +1 -1
- package/src/tokenLists/chainflip.ts +1 -1
- package/src/tokenLists/index.ts +1 -0
- package/src/tokenLists/jupiter.ts +898 -48
- package/src/tokenLists/kado.ts +518 -0
- package/src/tokenLists/mayachain.ts +10 -2
- package/src/tokenLists/oneinch.ts +55 -65
- package/src/tokenLists/pangolin_v1.ts +2 -52
- package/src/tokenLists/sushiswap_v2.ts +12 -132
- package/src/tokenLists/thorchain.ts +12 -2
- package/src/tokenLists/traderjoe_v2.ts +220 -170
- package/src/tokenLists/uniswap_v2.ts +171 -111
- package/src/tokenLists/uniswap_v3.ts +177 -147
package/package.json
CHANGED
|
@@ -2,8 +2,8 @@ export const list = {
|
|
|
2
2
|
provider: "CAMELOT_V3",
|
|
3
3
|
chainId: "42161",
|
|
4
4
|
name: "Camelot V3",
|
|
5
|
-
timestamp: "
|
|
6
|
-
count:
|
|
5
|
+
timestamp: "1738954930065",
|
|
6
|
+
count: 1593,
|
|
7
7
|
tokens: [
|
|
8
8
|
{
|
|
9
9
|
address: "0xda39A32c9c5Bb2C9E99d4e2a24bc55A418599F90",
|
|
@@ -2075,6 +2075,16 @@ export const list = {
|
|
|
2075
2075
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.anima-0xccd05a0fcfc1380e9da27862adb2198e58e0d66f.png",
|
|
2076
2076
|
ticker: "ANIMA",
|
|
2077
2077
|
},
|
|
2078
|
+
{
|
|
2079
|
+
address: "0x37a645648dF29205C6261289983FB04ECD70b4B3",
|
|
2080
|
+
chain: "ARB",
|
|
2081
|
+
chainId: "42161",
|
|
2082
|
+
decimals: 18,
|
|
2083
|
+
identifier: "ARB.ANIME-0x37a645648dF29205C6261289983FB04ECD70b4B3",
|
|
2084
|
+
logoURI:
|
|
2085
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.anime-0x37a645648df29205c6261289983fb04ecd70b4b3.png",
|
|
2086
|
+
ticker: "ANIME",
|
|
2087
|
+
},
|
|
2078
2088
|
{
|
|
2079
2089
|
address: "0xBb97CCB699dfC1aF2e05ea68b547505A9D5450C3",
|
|
2080
2090
|
chain: "ARB",
|
|
@@ -11425,6 +11435,16 @@ export const list = {
|
|
|
11425
11435
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.plsdpx-0xf236ea74b515ef96a9898f5a4ed4aa591f253ce1.png",
|
|
11426
11436
|
ticker: "plsDPX",
|
|
11427
11437
|
},
|
|
11438
|
+
{
|
|
11439
|
+
address: "0x9e6B748d25Ed2600Aa0ce7Cbb42267adCF21Fd9B",
|
|
11440
|
+
chain: "ARB",
|
|
11441
|
+
chainId: "42161",
|
|
11442
|
+
decimals: 18,
|
|
11443
|
+
identifier: "ARB.plsGRAIL-0x9e6B748d25Ed2600Aa0ce7Cbb42267adCF21Fd9B",
|
|
11444
|
+
logoURI:
|
|
11445
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.plsgrail-0x9e6b748d25ed2600aa0ce7cbb42267adcf21fd9b.png",
|
|
11446
|
+
ticker: "plsGRAIL",
|
|
11447
|
+
},
|
|
11428
11448
|
{
|
|
11429
11449
|
address: "0xe7f6C3c1F0018E4C08aCC52965e5cbfF99e34A44",
|
|
11430
11450
|
chain: "ARB",
|
|
@@ -13587,11 +13607,11 @@ export const list = {
|
|
|
13587
13607
|
ticker: "SUPR",
|
|
13588
13608
|
},
|
|
13589
13609
|
{
|
|
13590
|
-
address: "
|
|
13610
|
+
address: "0x7788A3538C5fc7F9c7C8A74EAC4c898fC8d87d92",
|
|
13591
13611
|
chain: "ARB",
|
|
13592
13612
|
chainId: "42161",
|
|
13593
13613
|
decimals: 18,
|
|
13594
|
-
identifier: "ARB.sUSDX-
|
|
13614
|
+
identifier: "ARB.sUSDX-0x7788A3538C5fc7F9c7C8A74EAC4c898fC8d87d92",
|
|
13595
13615
|
logoURI:
|
|
13596
13616
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.susdx-0x7788a3538c5fc7f9c7c8a74eac4c898fc8d87d92.png",
|
|
13597
13617
|
ticker: "sUSDX",
|
package/src/tokenLists/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { list as CaviarV1List } from "./caviar_v1";
|
|
2
2
|
export { list as ChainflipList } from "./chainflip";
|
|
3
3
|
export { list as JupiterList } from "./jupiter";
|
|
4
|
+
export { list as KadoList } from "./kado";
|
|
4
5
|
export { list as MayaList } from "./mayachain";
|
|
5
6
|
export { list as OneInchList } from "./oneinch";
|
|
6
7
|
export { list as OpenOceanV2List } from "./openocean_v2";
|