@swapkit/tokens 2.4.0 → 2.4.1
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 +12 -12
- package/package.json +1 -1
- package/src/tokenLists/camelot_v3.ts +22 -2
- package/src/tokenLists/caviar_v1.ts +1 -1
- package/src/tokenLists/chainflip.ts +1 -1
- package/src/tokenLists/jupiter.ts +158 -37
- package/src/tokenLists/mayachain.ts +1 -1
- package/src/tokenLists/oneinch.ts +10 -150
- package/src/tokenLists/pangolin_v1.ts +2 -12
- package/src/tokenLists/sushiswap_v2.ts +12 -2
- package/src/tokenLists/thorchain.ts +2 -2
- package/src/tokenLists/traderjoe_v2.ts +115 -175
- package/src/tokenLists/uniswap_v2.ts +73 -43
- package/src/tokenLists/uniswap_v3.ts +62 -62
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: "1743064262460",
|
|
6
|
+
count: 1604,
|
|
7
7
|
tokens: [
|
|
8
8
|
{
|
|
9
9
|
address: "0xda39A32c9c5Bb2C9E99d4e2a24bc55A418599F90",
|
|
@@ -5925,6 +5925,16 @@ export const list = {
|
|
|
5925
5925
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.edet-0x8eda8226c679103535a0620e3f32f50c3b8a0d1b.png",
|
|
5926
5926
|
ticker: "EDET",
|
|
5927
5927
|
},
|
|
5928
|
+
{
|
|
5929
|
+
address: "0xf8173a39c56a554837C4C7f104153A005D284D11",
|
|
5930
|
+
chain: "ARB",
|
|
5931
|
+
chainId: "42161",
|
|
5932
|
+
decimals: 18,
|
|
5933
|
+
identifier: "ARB.EDU-0xf8173a39c56a554837C4C7f104153A005D284D11",
|
|
5934
|
+
logoURI:
|
|
5935
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.edu-0xf8173a39c56a554837c4c7f104153a005d284d11.png",
|
|
5936
|
+
ticker: "EDU",
|
|
5937
|
+
},
|
|
5928
5938
|
{
|
|
5929
5939
|
address: "0x53e131a94Df92787a080F61FE67Ce1EA6640EA4C",
|
|
5930
5940
|
chain: "ARB",
|
|
@@ -13656,6 +13666,16 @@ export const list = {
|
|
|
13656
13666
|
"https://storage.googleapis.com/token-list-swapkit/images/arb.supr-0xf8393c8de20953b83db1be7ca42cd242563d8fe7.png",
|
|
13657
13667
|
ticker: "SUPR",
|
|
13658
13668
|
},
|
|
13669
|
+
{
|
|
13670
|
+
address: "0xdDb46999F8891663a8F2828d25298f70416d7610",
|
|
13671
|
+
chain: "ARB",
|
|
13672
|
+
chainId: "42161",
|
|
13673
|
+
decimals: 18,
|
|
13674
|
+
identifier: "ARB.sUSDS-0xdDb46999F8891663a8F2828d25298f70416d7610",
|
|
13675
|
+
logoURI:
|
|
13676
|
+
"https://storage.googleapis.com/token-list-swapkit/images/arb.susds-0xddb46999f8891663a8f2828d25298f70416d7610.png",
|
|
13677
|
+
ticker: "sUSDS",
|
|
13678
|
+
},
|
|
13659
13679
|
{
|
|
13660
13680
|
address: "0x7788A3538C5fc7F9c7C8A74EAC4c898fC8d87d92",
|
|
13661
13681
|
chain: "ARB",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const list: {
|
|
2
|
-
provider:
|
|
3
|
-
chainId:
|
|
4
|
-
name:
|
|
2
|
+
provider: string;
|
|
3
|
+
chainId: string;
|
|
4
|
+
name: string;
|
|
5
5
|
timestamp: string;
|
|
6
6
|
version: {
|
|
7
7
|
major: number;
|
|
@@ -12,26 +12,37 @@ export const list: {
|
|
|
12
12
|
count: number;
|
|
13
13
|
tokens: {
|
|
14
14
|
address: string;
|
|
15
|
-
chain:
|
|
16
|
-
chainId:
|
|
15
|
+
chain: string;
|
|
16
|
+
chainId: string;
|
|
17
17
|
decimals: number;
|
|
18
18
|
identifier: string;
|
|
19
19
|
logoURI: string;
|
|
20
|
+
shortCode?: string;
|
|
20
21
|
ticker: string;
|
|
21
22
|
}[];
|
|
22
23
|
} = {
|
|
23
24
|
provider: "JUPITER",
|
|
24
25
|
chainId: "solana",
|
|
25
26
|
name: "JUPITER",
|
|
26
|
-
timestamp: "2025-03-
|
|
27
|
+
timestamp: "2025-03-27T08:31:43.772Z",
|
|
27
28
|
version: {
|
|
28
29
|
major: 1,
|
|
29
30
|
minor: 0,
|
|
30
31
|
patch: 0,
|
|
31
32
|
},
|
|
32
33
|
keywords: [],
|
|
33
|
-
count:
|
|
34
|
+
count: 3176,
|
|
34
35
|
tokens: [
|
|
36
|
+
{
|
|
37
|
+
address: "EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q",
|
|
38
|
+
chain: "SOL",
|
|
39
|
+
chainId: "solana",
|
|
40
|
+
decimals: 9,
|
|
41
|
+
identifier: "SOL.-EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q",
|
|
42
|
+
logoURI:
|
|
43
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.-ejptjedogxzdbvm8qvasqyblmpj5n1vqeqoazj9yfv3q.png",
|
|
44
|
+
ticker: "",
|
|
45
|
+
},
|
|
35
46
|
{
|
|
36
47
|
address: "3QGGLYLu251jE9Ra8jkGtuHb773xYciXeqqvUgNTGimE",
|
|
37
48
|
chain: "SOL",
|
|
@@ -2272,6 +2283,16 @@ export const list: {
|
|
|
2272
2283
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.4dbsksol-sctmgqv3ei49evtkjprv9wlgrbss8rh1xxryvrfhgwh.png",
|
|
2273
2284
|
ticker: "4DBSKSOL",
|
|
2274
2285
|
},
|
|
2286
|
+
{
|
|
2287
|
+
address: "4dFaRDBmqUJA7FzWjuoBWpDetNFfNmDyjgFjdH66JjfC",
|
|
2288
|
+
chain: "SOL",
|
|
2289
|
+
chainId: "solana",
|
|
2290
|
+
decimals: 9,
|
|
2291
|
+
identifier: "SOL.4dSOL-4dFaRDBmqUJA7FzWjuoBWpDetNFfNmDyjgFjdH66JjfC",
|
|
2292
|
+
logoURI:
|
|
2293
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.4dsol-4dfardbmquja7fzwjuobwpdetnffnmdyjgfjdh66jjfc.png",
|
|
2294
|
+
ticker: "4dSOL",
|
|
2295
|
+
},
|
|
2275
2296
|
{
|
|
2276
2297
|
address: "sctm5W7tbhXK5r7rhBaSooaeBCb8bt8JUvj89PTiy7q",
|
|
2277
2298
|
chain: "SOL",
|
|
@@ -6692,6 +6713,16 @@ export const list: {
|
|
|
6692
6713
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.alien-bj19mjzyaw9rmzhk2akifohrz8dmhdgtekukhdgqpump.png",
|
|
6693
6714
|
ticker: "ALIEN",
|
|
6694
6715
|
},
|
|
6716
|
+
{
|
|
6717
|
+
address: "BaoawH9p2J8yUK9r5YXQs3hQwmUJgscACjmTkh8rMwYL",
|
|
6718
|
+
chain: "SOL",
|
|
6719
|
+
chainId: "solana",
|
|
6720
|
+
decimals: 6,
|
|
6721
|
+
identifier: "SOL.ALL-BaoawH9p2J8yUK9r5YXQs3hQwmUJgscACjmTkh8rMwYL",
|
|
6722
|
+
logoURI:
|
|
6723
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.all-baoawh9p2j8yuk9r5yxqs3hqwmujgscacjmtkh8rmwyl.png",
|
|
6724
|
+
ticker: "ALL",
|
|
6725
|
+
},
|
|
6695
6726
|
{
|
|
6696
6727
|
address: "GKHgTd6tqvycgG3mqcZraSZDFR32hXhRgo6sZQtudMsC",
|
|
6697
6728
|
chain: "SOL",
|
|
@@ -9232,16 +9263,6 @@ export const list: {
|
|
|
9232
9263
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.boxxy-ezyyfvue2aepsxbtddkkq5rwpn7bxhyzqphz2gf4y24r.png",
|
|
9233
9264
|
ticker: "BOXXY",
|
|
9234
9265
|
},
|
|
9235
|
-
{
|
|
9236
|
-
address: "EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q",
|
|
9237
|
-
chain: "SOL",
|
|
9238
|
-
chainId: "solana",
|
|
9239
|
-
decimals: 9,
|
|
9240
|
-
identifier: "SOL.bozoHYBRID-EJPtJEDogxzDbvM8qvAsqYbLmPj5n1vQeqoAzj9Yfv3q",
|
|
9241
|
-
logoURI:
|
|
9242
|
-
"https://storage.googleapis.com/token-list-swapkit/images/sol.bozohybrid-ejptjedogxzdbvm8qvasqyblmpj5n1vqeqoazj9yfv3q.png",
|
|
9243
|
-
ticker: "bozoHYBRID",
|
|
9244
|
-
},
|
|
9245
9266
|
{
|
|
9246
9267
|
address: "sctmMYmMw7Md1qwAK1iJMPFH91UQR39qqMfaymeu2XF",
|
|
9247
9268
|
chain: "SOL",
|
|
@@ -9412,6 +9433,16 @@ export const list: {
|
|
|
9412
9433
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.bryrzsol-sctmup12nhz3zfse7q1ybmrhaqegrat4kisxke888jj.png",
|
|
9413
9434
|
ticker: "BRyrzSOL",
|
|
9414
9435
|
},
|
|
9436
|
+
{
|
|
9437
|
+
address: "FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD",
|
|
9438
|
+
chain: "SOL",
|
|
9439
|
+
chainId: "solana",
|
|
9440
|
+
decimals: 4,
|
|
9441
|
+
identifier: "SOL.BRZ-FtgGSFADXBtroxq8VCausXRr2of47QBf5AS1NtZCu4GD",
|
|
9442
|
+
logoURI:
|
|
9443
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.brz-ftggsfadxbtroxq8vcausxrr2of47qbf5as1ntzcu4gd.png",
|
|
9444
|
+
ticker: "BRZ",
|
|
9445
|
+
},
|
|
9415
9446
|
{
|
|
9416
9447
|
address: "sctm9M1Yqr8WGgsGNvRrNW7JdUftXncdLDKqHEZd8rp",
|
|
9417
9448
|
chain: "SOL",
|
|
@@ -15542,6 +15573,16 @@ export const list: {
|
|
|
15542
15573
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.flat3sol-sctmcvzbwukur1jywxxcq1n56uburz2cmbtmp8i8hgx.png",
|
|
15543
15574
|
ticker: "FLAT3SOL",
|
|
15544
15575
|
},
|
|
15576
|
+
{
|
|
15577
|
+
address: "VVWAy5U2KFd1p8AdchjUxqaJbZPBeP5vUQRZtAy8hyc",
|
|
15578
|
+
chain: "SOL",
|
|
15579
|
+
chainId: "solana",
|
|
15580
|
+
decimals: 9,
|
|
15581
|
+
identifier: "SOL.FLIP-VVWAy5U2KFd1p8AdchjUxqaJbZPBeP5vUQRZtAy8hyc",
|
|
15582
|
+
logoURI:
|
|
15583
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.flip-vvway5u2kfd1p8adchjuxqajbzpbep5vuqrztay8hyc.png",
|
|
15584
|
+
ticker: "FLIP",
|
|
15585
|
+
},
|
|
15545
15586
|
{
|
|
15546
15587
|
address: "sctmkfwq8ePJwQv19eKEy8evykNSHvspkTRrKzDpGLv",
|
|
15547
15588
|
chain: "SOL",
|
|
@@ -17202,16 +17243,6 @@ export const list: {
|
|
|
17202
17243
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.gobi-cwdjgd54hgtqchspxhhirwlqwqy3esxtndrcplbqpump.png",
|
|
17203
17244
|
ticker: "GOBI",
|
|
17204
17245
|
},
|
|
17205
|
-
{
|
|
17206
|
-
address: "GoDCaGctsLDnkV8T6jBAfTeMj8DesxT71CkZekV5ZXcf",
|
|
17207
|
-
chain: "SOL",
|
|
17208
|
-
chainId: "solana",
|
|
17209
|
-
decimals: 9,
|
|
17210
|
-
identifier: "SOL.GODEX-GoDCaGctsLDnkV8T6jBAfTeMj8DesxT71CkZekV5ZXcf",
|
|
17211
|
-
logoURI:
|
|
17212
|
-
"https://storage.googleapis.com/token-list-swapkit/images/sol.godex-godcagctsldnkv8t6jbaftemj8desxt71ckzekv5zxcf.png",
|
|
17213
|
-
ticker: "GODEX",
|
|
17214
|
-
},
|
|
17215
17246
|
{
|
|
17216
17247
|
address: "sctmvEQauZXPrzN7YR574f2GDDsNmoBPnh9Dj6qmR1A",
|
|
17217
17248
|
chain: "SOL",
|
|
@@ -17242,6 +17273,16 @@ export const list: {
|
|
|
17242
17273
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.goku-6w8fhye6jnw1dktabrrizpqrqfpsfhtelczdvbnpzveo.png",
|
|
17243
17274
|
ticker: "Goku",
|
|
17244
17275
|
},
|
|
17276
|
+
{
|
|
17277
|
+
address: "GoLDDDNBPD72mSCYbC75GoFZ1e97Uczakp8yNi7JHrK4",
|
|
17278
|
+
chain: "SOL",
|
|
17279
|
+
chainId: "solana",
|
|
17280
|
+
decimals: 9,
|
|
17281
|
+
identifier: "SOL.GOLD-GoLDDDNBPD72mSCYbC75GoFZ1e97Uczakp8yNi7JHrK4",
|
|
17282
|
+
logoURI:
|
|
17283
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.gold-goldddnbpd72mscybc75gofz1e97uczakp8yni7jhrk4.png",
|
|
17284
|
+
ticker: "GOLD",
|
|
17285
|
+
},
|
|
17245
17286
|
{
|
|
17246
17287
|
address: "BCP3tdCpDGyNzcgi8s2abF4EqVzjGQWkhx6xJFDApump",
|
|
17247
17288
|
chain: "SOL",
|
|
@@ -22292,6 +22333,16 @@ export const list: {
|
|
|
22292
22333
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.minion-dqwf9ddk6h5c7kmehknjxnznpsm6mzxonzjjk6yxpump.png",
|
|
22293
22334
|
ticker: "Minion",
|
|
22294
22335
|
},
|
|
22336
|
+
{
|
|
22337
|
+
address: "AvoecWraqX969kfXUF5XCCDz59sjRjiDa1KUDyj225t8",
|
|
22338
|
+
chain: "SOL",
|
|
22339
|
+
chainId: "solana",
|
|
22340
|
+
decimals: 9,
|
|
22341
|
+
identifier: "SOL.MINT-AvoecWraqX969kfXUF5XCCDz59sjRjiDa1KUDyj225t8",
|
|
22342
|
+
logoURI:
|
|
22343
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.mint-avoecwraqx969kfxuf5xccdz59sjrjida1kudyj225t8.png",
|
|
22344
|
+
ticker: "MINT",
|
|
22345
|
+
},
|
|
22295
22346
|
{
|
|
22296
22347
|
address: "minty8wwFx6AsYcDHXZXnWG5kcf8VskJHhsJrDeLuCb",
|
|
22297
22348
|
chain: "SOL",
|
|
@@ -23742,6 +23793,16 @@ export const list: {
|
|
|
23742
23793
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.octo-4cotczobyt38zvbsiezxcmz2ccs8kmzj6wnbj8hwocto.png",
|
|
23743
23794
|
ticker: "OCTO",
|
|
23744
23795
|
},
|
|
23796
|
+
{
|
|
23797
|
+
address: "odcUHUtic7JVf19RPCdLpZtHZ52eYvN8dRAKsaansed",
|
|
23798
|
+
chain: "SOL",
|
|
23799
|
+
chainId: "solana",
|
|
23800
|
+
decimals: 9,
|
|
23801
|
+
identifier: "SOL.odySOL-odcUHUtic7JVf19RPCdLpZtHZ52eYvN8dRAKsaansed",
|
|
23802
|
+
logoURI:
|
|
23803
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.odysol-odcuhutic7jvf19rpcdlpzthz52eyvn8draksaansed.png",
|
|
23804
|
+
ticker: "odySOL",
|
|
23805
|
+
},
|
|
23745
23806
|
{
|
|
23746
23807
|
address: "jE7q5qieKaUXmyhuWTXmGVtpeBoKtgbMbtks7LKogme",
|
|
23747
23808
|
chain: "SOL",
|
|
@@ -24112,16 +24173,6 @@ export const list: {
|
|
|
24112
24173
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.palsol-sctmikcgutp2ybja963zkb1tp8sdbxr52qm4o3yjjvh.png",
|
|
24113
24174
|
ticker: "PalSOL",
|
|
24114
24175
|
},
|
|
24115
|
-
{
|
|
24116
|
-
address: "Aw8qLRHGhMcKq7rxs5XBNCd9oe3BvoAhpNMVz7AdGmty",
|
|
24117
|
-
chain: "SOL",
|
|
24118
|
-
chainId: "solana",
|
|
24119
|
-
decimals: 9,
|
|
24120
|
-
identifier: "SOL.PANDA-Aw8qLRHGhMcKq7rxs5XBNCd9oe3BvoAhpNMVz7AdGmty",
|
|
24121
|
-
logoURI:
|
|
24122
|
-
"https://storage.googleapis.com/token-list-swapkit/images/sol.panda-aw8qlrhghmckq7rxs5xbncd9oe3bvoahpnmvz7adgmty.png",
|
|
24123
|
-
ticker: "PANDA",
|
|
24124
|
-
},
|
|
24125
24176
|
{
|
|
24126
24177
|
address: "FViZQJymuQ9FaxmpudCQS7ffJUt4udHzwJKPBiy7pump",
|
|
24127
24178
|
chain: "SOL",
|
|
@@ -26122,6 +26173,16 @@ export const list: {
|
|
|
26122
26173
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.rot-apom2sxuzdrhtkujxssduhex1wppdp4hflotmtrnmu8p.png",
|
|
26123
26174
|
ticker: "rot",
|
|
26124
26175
|
},
|
|
26176
|
+
{
|
|
26177
|
+
address: "34HDZNbUkTyTrgYKy2ox43yp2f8PJ5hoM7xsrfNApump",
|
|
26178
|
+
chain: "SOL",
|
|
26179
|
+
chainId: "solana",
|
|
26180
|
+
decimals: 6,
|
|
26181
|
+
identifier: "SOL.Routine-34HDZNbUkTyTrgYKy2ox43yp2f8PJ5hoM7xsrfNApump",
|
|
26182
|
+
logoURI:
|
|
26183
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.routine-34hdznbuktytrgyky2ox43yp2f8pj5hom7xsrfnapump.png",
|
|
26184
|
+
ticker: "Routine",
|
|
26185
|
+
},
|
|
26125
26186
|
{
|
|
26126
26187
|
address: "roxDFxTFHufJBFy3PgzZcgz6kwkQNPZpi9RfpcAv4bu",
|
|
26127
26188
|
chain: "SOL",
|
|
@@ -26672,6 +26733,16 @@ export const list: {
|
|
|
26672
26733
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.scihub-gxdth6udnstgmllk9ztbb6bkrms7olbrjp5yzuavpump.png",
|
|
26673
26734
|
ticker: "scihub",
|
|
26674
26735
|
},
|
|
26736
|
+
{
|
|
26737
|
+
address: "sc1dNAxRBj5CNWaGC26AR7PEW75R36Umzt1V8vuP8kZ",
|
|
26738
|
+
chain: "SOL",
|
|
26739
|
+
chainId: "solana",
|
|
26740
|
+
decimals: 9,
|
|
26741
|
+
identifier: "SOL.sCLOUD-sc1dNAxRBj5CNWaGC26AR7PEW75R36Umzt1V8vuP8kZ",
|
|
26742
|
+
logoURI:
|
|
26743
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.scloud-sc1dnaxrbj5cnwagc26ar7pew75r36umzt1v8vup8kz.png",
|
|
26744
|
+
ticker: "sCLOUD",
|
|
26745
|
+
},
|
|
26675
26746
|
{
|
|
26676
26747
|
address: "5qKDWkBejLtRh1UGFV7e58QEkdn2fRyH5ehVXqUYujNW",
|
|
26677
26748
|
chain: "SOL",
|
|
@@ -27982,6 +28053,26 @@ export const list: {
|
|
|
27982
28053
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.sperg-4vkewz2zhmhfuqee69emxv2zq1ekejyvcessmqydpump.png",
|
|
27983
28054
|
ticker: "SPERG",
|
|
27984
28055
|
},
|
|
28056
|
+
{
|
|
28057
|
+
address: "sphSo1j2eTLa6AB5Wjrmap8VbQoZKccCpqJ7gV5pqGM",
|
|
28058
|
+
chain: "SOL",
|
|
28059
|
+
chainId: "solana",
|
|
28060
|
+
decimals: 9,
|
|
28061
|
+
identifier: "SOL.sphSOL-sphSo1j2eTLa6AB5Wjrmap8VbQoZKccCpqJ7gV5pqGM",
|
|
28062
|
+
logoURI:
|
|
28063
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.sphsol-sphso1j2etla6ab5wjrmap8vbqozkcccpqj7gv5pqgm.png",
|
|
28064
|
+
ticker: "sphSOL",
|
|
28065
|
+
},
|
|
28066
|
+
{
|
|
28067
|
+
address: "SPQkEcsdALLLn4MqCb3XH64hYTmdD4fZZk9CF5LiQV8",
|
|
28068
|
+
chain: "SOL",
|
|
28069
|
+
chainId: "solana",
|
|
28070
|
+
decimals: 6,
|
|
28071
|
+
identifier: "SOL.SPICE-SPQkEcsdALLLn4MqCb3XH64hYTmdD4fZZk9CF5LiQV8",
|
|
28072
|
+
logoURI:
|
|
28073
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.spice-spqkecsdallln4mqcb3xh64hytmdd4fzzk9cf5liqv8.png",
|
|
28074
|
+
ticker: "SPICE",
|
|
28075
|
+
},
|
|
27985
28076
|
{
|
|
27986
28077
|
address: "BX9yEgW8WkoWV8SvqTMMCynkQWreRTJ9ZS81dRXYnnR9",
|
|
27987
28078
|
chain: "SOL",
|
|
@@ -29432,6 +29523,16 @@ export const list: {
|
|
|
29432
29523
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.trunk-9mv4wuukvsva5wycyw4veo34cndif44sh3ji65jndvh5.png",
|
|
29433
29524
|
ticker: "TRUNK",
|
|
29434
29525
|
},
|
|
29526
|
+
{
|
|
29527
|
+
address: "6umRHtiuBd1PC6HQhfH9ioNsqY4ihZncZXNPiGu3d3rN",
|
|
29528
|
+
chain: "SOL",
|
|
29529
|
+
chainId: "solana",
|
|
29530
|
+
decimals: 9,
|
|
29531
|
+
identifier: "SOL.TruSOL-6umRHtiuBd1PC6HQhfH9ioNsqY4ihZncZXNPiGu3d3rN",
|
|
29532
|
+
logoURI:
|
|
29533
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.trusol-6umrhtiubd1pc6hqhfh9ionsqy4ihznczxnpigu3d3rn.png",
|
|
29534
|
+
ticker: "TruSOL",
|
|
29535
|
+
},
|
|
29435
29536
|
{
|
|
29436
29537
|
address: "TruStjKLzgPDqmWWkrdvgNJnsmScz1FpFzsDKWSpfh5",
|
|
29437
29538
|
chain: "SOL",
|
|
@@ -29562,6 +29663,16 @@ export const list: {
|
|
|
29562
29663
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.twinny-8wjzpmvohx4k9pxcdc2rz1bobs5isavxva9xkmhnpump.png",
|
|
29563
29664
|
ticker: "Twinny",
|
|
29564
29665
|
},
|
|
29666
|
+
{
|
|
29667
|
+
address: "FcScaNdN3TRPMwcgqHj1E5GuEh1rNesBGVN5WtZuad1z",
|
|
29668
|
+
chain: "SOL",
|
|
29669
|
+
chainId: "solana",
|
|
29670
|
+
decimals: 9,
|
|
29671
|
+
identifier: "SOL.TWTR-FcScaNdN3TRPMwcgqHj1E5GuEh1rNesBGVN5WtZuad1z",
|
|
29672
|
+
logoURI:
|
|
29673
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.twtr-fcscandn3trpmwcgqhj1e5gueh1rnesbgvn5wtzuad1z.png",
|
|
29674
|
+
ticker: "TWTR",
|
|
29675
|
+
},
|
|
29565
29676
|
{
|
|
29566
29677
|
address: "sctmippqxHXn2FkLm4xinCLnDBHBkgR29ZMor8z4MTJ",
|
|
29567
29678
|
chain: "SOL",
|
|
@@ -30522,6 +30633,16 @@ export const list: {
|
|
|
30522
30633
|
"https://storage.googleapis.com/token-list-swapkit/images/sol.wetkjsol-sctm16j7xvushx5mevzsnp2jk64fviacvu7vwdf2ctf.png",
|
|
30523
30634
|
ticker: "wetkjSOL",
|
|
30524
30635
|
},
|
|
30636
|
+
{
|
|
30637
|
+
address: "WFRGSWjaz8tbAxsJitmbfRuFV2mSNwy7BMWcCwaA28U",
|
|
30638
|
+
chain: "SOL",
|
|
30639
|
+
chainId: "solana",
|
|
30640
|
+
decimals: 9,
|
|
30641
|
+
identifier: "SOL.wfragSOL-WFRGSWjaz8tbAxsJitmbfRuFV2mSNwy7BMWcCwaA28U",
|
|
30642
|
+
logoURI:
|
|
30643
|
+
"https://storage.googleapis.com/token-list-swapkit/images/sol.wfragsol-wfrgswjaz8tbaxsjitmbfrufv2msnwy7bmwccwaa28u.png",
|
|
30644
|
+
ticker: "wfragSOL",
|
|
30645
|
+
},
|
|
30525
30646
|
{
|
|
30526
30647
|
address: "4Eb7ReeT936hX25KMBfYtyP1RWDdd9iixEwGJroACeLC",
|
|
30527
30648
|
chain: "SOL",
|