@sentio/sdk 2.45.1-rc.1 → 2.45.1-rc.2

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.
@@ -0,0 +1,3131 @@
1
+ export type InternalTokenInfo = {
2
+ chainId: number
3
+ tokenAddress: `0x${string}` | null
4
+ faAddress: `0x${string}` | null
5
+ name: string
6
+ symbol: string
7
+ decimals: number
8
+ bridge: 'LayerZero' | 'Wormhole' | 'Celer' | 'Echo' | null
9
+ panoraSymbol: string
10
+ logoUrl: string | null
11
+ websiteUrl: string | null
12
+ category: 'Native' | 'Bridged' | 'Meme'
13
+ isInPanoraTokenList: boolean
14
+ isBanned: boolean
15
+ panoraOrderIndex: number | null
16
+ coinGeckoId: string | null
17
+ coinMarketCapId: number | null
18
+ }
19
+
20
+ export const DEFAULT_TOKEN_LIST: InternalTokenInfo[] = [
21
+ {
22
+ chainId: 1,
23
+ tokenAddress: '0x1::aptos_coin::AptosCoin',
24
+ faAddress: '0xa',
25
+ name: 'Aptos Coin',
26
+ symbol: 'APT',
27
+ decimals: 8,
28
+ bridge: null,
29
+ panoraSymbol: 'APT',
30
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APT.svg',
31
+ websiteUrl: 'https://aptosfoundation.org',
32
+ category: 'Native',
33
+ isInPanoraTokenList: true,
34
+ isBanned: false,
35
+ panoraOrderIndex: 1,
36
+ coinGeckoId: 'aptos',
37
+ coinMarketCapId: 21794
38
+ },
39
+ {
40
+ chainId: 1,
41
+ tokenAddress: null,
42
+ faAddress: '0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b',
43
+ name: 'Tether USD',
44
+ symbol: 'USDt',
45
+ decimals: 6,
46
+ bridge: null,
47
+ panoraSymbol: 'USDt',
48
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT.svg',
49
+ websiteUrl: 'https://tether.to',
50
+ category: 'Native',
51
+ isInPanoraTokenList: true,
52
+ isBanned: false,
53
+ panoraOrderIndex: 2,
54
+ coinGeckoId: 'tether',
55
+ coinMarketCapId: 825
56
+ },
57
+ {
58
+ chainId: 1,
59
+ tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC',
60
+ faAddress: '0x2b3be0a97a73c87ff62cbdd36837a9fb5bbd1d7f06a73b7ed62ec15c5326c1b8',
61
+ name: 'USD Coin',
62
+ symbol: 'USDC',
63
+ decimals: 6,
64
+ bridge: 'LayerZero',
65
+ panoraSymbol: 'lzUSDC',
66
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
67
+ websiteUrl: null,
68
+ category: 'Bridged',
69
+ isInPanoraTokenList: true,
70
+ isBanned: false,
71
+ panoraOrderIndex: 10,
72
+ coinGeckoId: 'usd-coin',
73
+ coinMarketCapId: 3408
74
+ },
75
+ {
76
+ chainId: 1,
77
+ tokenAddress: '0x5ae6789dd2fec1a9ec9cccfb3acaf12e93d432f0a3a42c92fe1a9d490b7bbc06::mkl_token::MKL',
78
+ faAddress: '0x878370592f9129e14b76558689a4b570ad22678111df775befbfcbc9fb3d90ab',
79
+ name: 'Merkle',
80
+ symbol: 'MKL',
81
+ decimals: 6,
82
+ bridge: null,
83
+ panoraSymbol: 'MKL',
84
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MKL.png',
85
+ websiteUrl: null,
86
+ category: 'Native',
87
+ isInPanoraTokenList: true,
88
+ isBanned: false,
89
+ panoraOrderIndex: 15,
90
+ coinGeckoId: 'merkle-trade',
91
+ coinMarketCapId: 32997
92
+ },
93
+ {
94
+ chainId: 1,
95
+ tokenAddress: '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::coin::LSD',
96
+ faAddress: '0x2370cc1d995f3aadd337c1c6c63834ad8d2bd0cdc70bc8dff81de463e18b159',
97
+ name: 'Liquidswap',
98
+ symbol: 'LSD',
99
+ decimals: 8,
100
+ bridge: null,
101
+ panoraSymbol: 'LSD',
102
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LSD.png',
103
+ websiteUrl: null,
104
+ category: 'Native',
105
+ isInPanoraTokenList: true,
106
+ isBanned: false,
107
+ panoraOrderIndex: 20,
108
+ coinGeckoId: 'pontem-liquidswap',
109
+ coinMarketCapId: 22262
110
+ },
111
+ {
112
+ chainId: 1,
113
+ tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT',
114
+ faAddress: null,
115
+ name: 'Tether USD',
116
+ symbol: 'USDT',
117
+ decimals: 6,
118
+ bridge: 'LayerZero',
119
+ panoraSymbol: 'lzUSDT',
120
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT_BRIDGED.svg',
121
+ websiteUrl: null,
122
+ category: 'Bridged',
123
+ isInPanoraTokenList: true,
124
+ isBanned: false,
125
+ panoraOrderIndex: 25,
126
+ coinGeckoId: null,
127
+ coinMarketCapId: null
128
+ },
129
+ {
130
+ chainId: 1,
131
+ tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH',
132
+ faAddress: null,
133
+ name: 'Wrapped Ether',
134
+ symbol: 'WETH',
135
+ decimals: 6,
136
+ bridge: 'LayerZero',
137
+ panoraSymbol: 'lzWETH',
138
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
139
+ websiteUrl: null,
140
+ category: 'Bridged',
141
+ isInPanoraTokenList: true,
142
+ isBanned: false,
143
+ panoraOrderIndex: 30,
144
+ coinGeckoId: 'ethereum',
145
+ coinMarketCapId: 1027
146
+ },
147
+ {
148
+ chainId: 1,
149
+ tokenAddress: '0x4e1854f6d332c9525e258fb6e66f84b6af8aba687bbcb832a24768c4e175feec::abtc::ABTC',
150
+ faAddress: null,
151
+ name: 'aBTC',
152
+ symbol: 'aBTC',
153
+ decimals: 10,
154
+ bridge: 'Echo',
155
+ panoraSymbol: 'aBTC',
156
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/aBTC.svg',
157
+ websiteUrl: 'https://www.echo-protocol.xyz',
158
+ category: 'Bridged',
159
+ isInPanoraTokenList: true,
160
+ isBanned: false,
161
+ panoraOrderIndex: 33,
162
+ coinGeckoId: 'abtc',
163
+ coinMarketCapId: null
164
+ },
165
+ {
166
+ chainId: 1,
167
+ tokenAddress:
168
+ '0x543c5660aa4d496687e2068c11765f04607c4f4b639a83233a9333604fb8ce59::stakestone_ether::StakeStoneEther',
169
+ faAddress: null,
170
+ name: 'StakeStone Ether',
171
+ symbol: 'STONE',
172
+ decimals: 8,
173
+ bridge: 'LayerZero',
174
+ panoraSymbol: 'lzSTONE',
175
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/STONE.svg',
176
+ websiteUrl: 'https://stakestone.io',
177
+ category: 'Bridged',
178
+ isInPanoraTokenList: true,
179
+ isBanned: false,
180
+ panoraOrderIndex: 35,
181
+ coinGeckoId: 'stakestone-ether',
182
+ coinMarketCapId: 32194
183
+ },
184
+ {
185
+ chainId: 1,
186
+ tokenAddress:
187
+ '0x5dee1d4b13fae338a1e1780f9ad2709a010e824388efd169171a26e3ea9029bb::stakestone_bitcoin::StakeStoneBitcoin',
188
+ faAddress: null,
189
+ name: 'StakeStone Bitcoin',
190
+ symbol: 'SBTC',
191
+ decimals: 8,
192
+ bridge: 'LayerZero',
193
+ panoraSymbol: 'lzSBTC',
194
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SBTC.svg',
195
+ websiteUrl: 'https://stakestone.io',
196
+ category: 'Bridged',
197
+ isInPanoraTokenList: true,
198
+ isBanned: false,
199
+ panoraOrderIndex: 37,
200
+ coinGeckoId: null,
201
+ coinMarketCapId: null
202
+ },
203
+ {
204
+ chainId: 1,
205
+ tokenAddress: '0x7fd500c11216f0fe3095d0c4b8aa4d64a4e2e04f83758462f2b127255643615::thl_coin::THL',
206
+ faAddress: '0x377adc4848552eb2ea17259be928001923efe12271fef1667e2b784f04a7cf3a',
207
+ name: 'Thala Token',
208
+ symbol: 'THL',
209
+ decimals: 8,
210
+ bridge: null,
211
+ panoraSymbol: 'THL',
212
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/THL.svg',
213
+ websiteUrl: 'https://www.thala.fi',
214
+ category: 'Native',
215
+ isInPanoraTokenList: true,
216
+ isBanned: false,
217
+ panoraOrderIndex: 40,
218
+ coinGeckoId: 'thala',
219
+ coinMarketCapId: 24268
220
+ },
221
+ {
222
+ chainId: 1,
223
+ tokenAddress: null,
224
+ faAddress: '0x2ebb2ccac5e027a87fa0e2e5f656a3a4238d6a48d93ec9b610d570fc0aa0df12',
225
+ name: 'Cellana',
226
+ symbol: 'CELL',
227
+ decimals: 8,
228
+ bridge: null,
229
+ panoraSymbol: 'CELL',
230
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CELL.png',
231
+ websiteUrl: 'https://cellana.finance',
232
+ category: 'Native',
233
+ isInPanoraTokenList: true,
234
+ isBanned: false,
235
+ panoraOrderIndex: 45,
236
+ coinGeckoId: 'cellena-finance',
237
+ coinMarketCapId: null
238
+ },
239
+ {
240
+ chainId: 1,
241
+ tokenAddress: '0x42d77150661adcc068603bde2453bea1e22fa7ca08878ec88b7e077709c01171::oft::WUSDMOFT',
242
+ faAddress: null,
243
+ name: 'Wrap USDM',
244
+ symbol: 'WUSDM',
245
+ decimals: 8,
246
+ bridge: 'LayerZero',
247
+ panoraSymbol: 'lzWUSDM',
248
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WUSDM.png',
249
+ websiteUrl: 'https://mountainprotocol.com',
250
+ category: 'Bridged',
251
+ isInPanoraTokenList: true,
252
+ isBanned: false,
253
+ panoraOrderIndex: 48,
254
+ coinGeckoId: null,
255
+ coinMarketCapId: null
256
+ },
257
+ {
258
+ chainId: 1,
259
+ tokenAddress: '0xcfea864b32833f157f042618bd845145256b1bf4c0da34a7013b76e42daa53cc::usdy::USDY',
260
+ faAddress: null,
261
+ name: 'Ondo US Dollar Yield',
262
+ symbol: 'USDY',
263
+ decimals: 6,
264
+ bridge: null,
265
+ panoraSymbol: 'USDY',
266
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDY.svg',
267
+ websiteUrl: 'https://ondo.finance',
268
+ category: 'Native',
269
+ isInPanoraTokenList: true,
270
+ isBanned: false,
271
+ panoraOrderIndex: 50,
272
+ coinGeckoId: 'ondo-us-dollar-yield',
273
+ coinMarketCapId: 29256
274
+ },
275
+ {
276
+ chainId: 1,
277
+ tokenAddress: '0x268d4a7a2ad93274edf6116f9f20ad8455223a7ab5fc73154f687e7dbc3e3ec6::LOON::LOON',
278
+ faAddress: null,
279
+ name: 'The Loonies',
280
+ symbol: 'LOON',
281
+ decimals: 6,
282
+ bridge: null,
283
+ panoraSymbol: 'LOON',
284
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LOON.jpg',
285
+ websiteUrl: null,
286
+ category: 'Native',
287
+ isInPanoraTokenList: true,
288
+ isBanned: false,
289
+ panoraOrderIndex: 55,
290
+ coinGeckoId: null,
291
+ coinMarketCapId: null
292
+ },
293
+ {
294
+ chainId: 1,
295
+ tokenAddress: '0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002',
296
+ faAddress: null,
297
+ name: 'Gui Inu',
298
+ symbol: 'GUI',
299
+ decimals: 6,
300
+ bridge: null,
301
+ panoraSymbol: 'GUI',
302
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GUI.png',
303
+ websiteUrl: 'https://www.guiinu.com',
304
+ category: 'Meme',
305
+ isInPanoraTokenList: true,
306
+ isBanned: false,
307
+ panoraOrderIndex: 60,
308
+ coinGeckoId: 'gui-inu',
309
+ coinMarketCapId: 28851
310
+ },
311
+ {
312
+ chainId: 1,
313
+ tokenAddress: '0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::amapt_token::AmnisApt',
314
+ faAddress: null,
315
+ name: 'Amnis Aptos Coin',
316
+ symbol: 'amAPT',
317
+ decimals: 8,
318
+ bridge: null,
319
+ panoraSymbol: 'amAPT',
320
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/amAPT.png',
321
+ websiteUrl: 'https://amnis.finance',
322
+ category: 'Native',
323
+ isInPanoraTokenList: true,
324
+ isBanned: false,
325
+ panoraOrderIndex: 65,
326
+ coinGeckoId: 'amnis-aptos',
327
+ coinMarketCapId: 29034
328
+ },
329
+ {
330
+ chainId: 1,
331
+ tokenAddress: '0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6::staking::ThalaAPT',
332
+ faAddress: '0xa0d9d647c5737a5aed08d2cfeb39c31cf901d44bc4aa024eaa7e5e68b804e011',
333
+ name: 'Thala APT',
334
+ symbol: 'thAPT',
335
+ decimals: 8,
336
+ bridge: null,
337
+ panoraSymbol: 'thAPT',
338
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/THAPT.svg',
339
+ websiteUrl: 'https://thala.fi',
340
+ category: 'Native',
341
+ isInPanoraTokenList: true,
342
+ isBanned: false,
343
+ panoraOrderIndex: 70,
344
+ coinGeckoId: 'thala-apt',
345
+ coinMarketCapId: null
346
+ },
347
+ {
348
+ chainId: 1,
349
+ tokenAddress: '0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::stapt_token::StakedApt',
350
+ faAddress: '0xb614bfdf9edc39b330bbf9c3c5bcd0473eee2f6d4e21748629cc367869ece627',
351
+ name: 'Staked Aptos Coin',
352
+ symbol: 'stAPT',
353
+ decimals: 8,
354
+ bridge: null,
355
+ panoraSymbol: 'stAPT',
356
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/stAptAmnis.png',
357
+ websiteUrl: 'https://stake.amnis.finance',
358
+ category: 'Native',
359
+ isInPanoraTokenList: true,
360
+ isBanned: false,
361
+ panoraOrderIndex: 75,
362
+ coinGeckoId: 'amnis-staked-aptos-coin',
363
+ coinMarketCapId: null
364
+ },
365
+ {
366
+ chainId: 1,
367
+ tokenAddress: '0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6::staking::StakedThalaAPT',
368
+ faAddress: null,
369
+ name: 'Staked Thala APT',
370
+ symbol: 'sthAPT',
371
+ decimals: 8,
372
+ bridge: null,
373
+ panoraSymbol: 'sthAPT',
374
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/STHAPT.svg',
375
+ websiteUrl: 'https://thala.fi',
376
+ category: 'Native',
377
+ isInPanoraTokenList: true,
378
+ isBanned: false,
379
+ panoraOrderIndex: 80,
380
+ coinGeckoId: 'staked-thala-apt',
381
+ coinMarketCapId: null
382
+ },
383
+ {
384
+ chainId: 1,
385
+ tokenAddress: '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD',
386
+ faAddress: '0x94ed76d3d66cb0b6e7a3ab81acf830e3a50b8ae3cfb9edc0abea635a11185ff4',
387
+ name: 'Move Dollar',
388
+ symbol: 'MOD',
389
+ decimals: 8,
390
+ bridge: null,
391
+ panoraSymbol: 'MOD',
392
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOD.svg',
393
+ websiteUrl: 'https://thala.fi',
394
+ category: 'Native',
395
+ isInPanoraTokenList: true,
396
+ isBanned: false,
397
+ panoraOrderIndex: 85,
398
+ coinGeckoId: 'move-dollar',
399
+ coinMarketCapId: null
400
+ },
401
+ {
402
+ chainId: 1,
403
+ tokenAddress: '0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T',
404
+ faAddress: '0x54fc0d5fa5ad975ede1bf8b1c892ae018745a1afd4a4da9b70bb6e5448509fc0',
405
+ name: 'USD Coin',
406
+ symbol: 'USDC',
407
+ decimals: 6,
408
+ bridge: 'Wormhole',
409
+ panoraSymbol: 'whUSDC',
410
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
411
+ websiteUrl: null,
412
+ category: 'Bridged',
413
+ isInPanoraTokenList: true,
414
+ isBanned: false,
415
+ panoraOrderIndex: 90,
416
+ coinGeckoId: 'usd-coin',
417
+ coinMarketCapId: 3408
418
+ },
419
+ {
420
+ chainId: 1,
421
+ tokenAddress: '0x73eb84966be67e4697fc5ae75173ca6c35089e802650f75422ab49a8729704ec::coin::DooDoo',
422
+ faAddress: '0xb27b0c6b60772f0fc804ec1cd3339f552badf9bd1e125a7dd700d8eb11248ef1',
423
+ name: 'DooDoo',
424
+ symbol: 'DooDoo',
425
+ decimals: 8,
426
+ bridge: null,
427
+ panoraSymbol: 'DooDoo',
428
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DOODOO.png',
429
+ websiteUrl: 'https://doodoo.io',
430
+ category: 'Meme',
431
+ isInPanoraTokenList: true,
432
+ isBanned: false,
433
+ panoraOrderIndex: 95,
434
+ coinGeckoId: 'doodoo',
435
+ coinMarketCapId: 28881
436
+ },
437
+ {
438
+ chainId: 1,
439
+ tokenAddress: '0x4fbed3f8a3fd8a11081c8b6392152a8b0cb14d70d0414586f0c9b858fcd2d6a7::UPTOS::UPTOS',
440
+ faAddress: null,
441
+ name: 'UPTOS',
442
+ symbol: 'UPTOS',
443
+ decimals: 8,
444
+ bridge: null,
445
+ panoraSymbol: 'UPTOS',
446
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/UPTOS.svg',
447
+ websiteUrl: 'https://uptos.xyz',
448
+ category: 'Meme',
449
+ isInPanoraTokenList: true,
450
+ isBanned: false,
451
+ panoraOrderIndex: 100,
452
+ coinGeckoId: 'uptos',
453
+ coinMarketCapId: 30366
454
+ },
455
+ {
456
+ chainId: 1,
457
+ tokenAddress: '0x63be1898a424616367e19bbd881f456a78470e123e2770b5b5dcdceb61279c54::movegpt_token::MovegptCoin',
458
+ faAddress: null,
459
+ name: 'MOVEGPT',
460
+ symbol: 'MGPT',
461
+ decimals: 8,
462
+ bridge: null,
463
+ panoraSymbol: 'MGPT',
464
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MGPT.jpg',
465
+ websiteUrl: 'https://movegpt.io/',
466
+ category: 'Native',
467
+ isInPanoraTokenList: true,
468
+ isBanned: false,
469
+ panoraOrderIndex: 105,
470
+ coinGeckoId: 'movegpt',
471
+ coinMarketCapId: null
472
+ },
473
+ {
474
+ chainId: 1,
475
+ tokenAddress: '0xe88ae9670071da40a9a6b1d97aab8f6f1898fdc3b8f1c1038b492dfad738448b::coin::Donk',
476
+ faAddress: null,
477
+ name: 'Donk',
478
+ symbol: 'DONK',
479
+ decimals: 8,
480
+ bridge: null,
481
+ panoraSymbol: 'DONK',
482
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DONK.png',
483
+ websiteUrl: 'https://donkmove.com/',
484
+ category: 'Meme',
485
+ isInPanoraTokenList: true,
486
+ isBanned: false,
487
+ panoraOrderIndex: 110,
488
+ coinGeckoId: null,
489
+ coinMarketCapId: null
490
+ },
491
+ {
492
+ chainId: 1,
493
+ tokenAddress: '0x5e975e7f36f2658d4cf146142899c659464a3e0d90f0f4d5f8b2447173c06ef6::EDOG::EDOG',
494
+ faAddress: null,
495
+ name: 'EDOG',
496
+ symbol: 'EDOG',
497
+ decimals: 6,
498
+ bridge: null,
499
+ panoraSymbol: 'EDOG',
500
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/EDOG.jpg',
501
+ websiteUrl: null,
502
+ category: 'Meme',
503
+ isInPanoraTokenList: true,
504
+ isBanned: false,
505
+ panoraOrderIndex: 112,
506
+ coinGeckoId: null,
507
+ coinMarketCapId: null
508
+ },
509
+ {
510
+ chainId: 1,
511
+ tokenAddress: '0x2d4de7378c573dadc2e589892d709ee24f3c26f23b57804f384f4803da2e6f0a::ZIPO::ZIPO',
512
+ faAddress: null,
513
+ name: 'ZIPPO THE OG MASCOT',
514
+ symbol: 'ZIPO',
515
+ decimals: 6,
516
+ bridge: null,
517
+ panoraSymbol: 'ZIPO',
518
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZIPO.png',
519
+ websiteUrl: null,
520
+ category: 'Meme',
521
+ isInPanoraTokenList: false,
522
+ isBanned: false,
523
+ panoraOrderIndex: 114,
524
+ coinGeckoId: null,
525
+ coinMarketCapId: null
526
+ },
527
+ {
528
+ chainId: 1,
529
+ tokenAddress: '0xdcfa079344261bfde45e7f6281df091743b8d3098bf9e26e1c0212fc5b070621::zaaptos_token::ZaaptosCoin',
530
+ faAddress: null,
531
+ name: 'Zaaptos Coin',
532
+ symbol: 'ZAAP',
533
+ decimals: 8,
534
+ bridge: null,
535
+ panoraSymbol: 'ZAAP',
536
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZAAP.png',
537
+ websiteUrl: null,
538
+ category: 'Meme',
539
+ isInPanoraTokenList: true,
540
+ isBanned: false,
541
+ panoraOrderIndex: 115,
542
+ coinGeckoId: null,
543
+ coinMarketCapId: null
544
+ },
545
+ {
546
+ chainId: 1,
547
+ tokenAddress: '0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT',
548
+ faAddress: null,
549
+ name: 'PancakeSwap Token',
550
+ symbol: 'CAKE',
551
+ decimals: 8,
552
+ bridge: null,
553
+ panoraSymbol: 'CAKE',
554
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/Pancake.png',
555
+ websiteUrl: 'https://pancakeswap.finance',
556
+ category: 'Native',
557
+ isInPanoraTokenList: true,
558
+ isBanned: false,
559
+ panoraOrderIndex: 120,
560
+ coinGeckoId: 'pancakeswap-token',
561
+ coinMarketCapId: 7186
562
+ },
563
+ {
564
+ chainId: 1,
565
+ tokenAddress: null,
566
+ faAddress: '0xaef6a8c3182e076db72d64324617114cacf9a52f28325edc10b483f7f05da0e7',
567
+ name: 'TruAPT coin',
568
+ symbol: 'TruAPT',
569
+ decimals: 8,
570
+ bridge: null,
571
+ panoraSymbol: 'TruAPT',
572
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/TruAPT.png',
573
+ websiteUrl: 'https://www.trufin.io',
574
+ category: 'Native',
575
+ isInPanoraTokenList: true,
576
+ isBanned: false,
577
+ panoraOrderIndex: 125,
578
+ coinGeckoId: 'trufin-staked-apt',
579
+ coinMarketCapId: null
580
+ },
581
+ {
582
+ chainId: 1,
583
+ tokenAddress: '0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb::move_coin::MoveCoin',
584
+ faAddress: null,
585
+ name: 'BlueMove',
586
+ symbol: 'MOVE',
587
+ decimals: 8,
588
+ bridge: null,
589
+ panoraSymbol: 'MOVE',
590
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOVE.svg',
591
+ websiteUrl: 'https://bluemove.net',
592
+ category: 'Native',
593
+ isInPanoraTokenList: true,
594
+ isBanned: false,
595
+ panoraOrderIndex: 130,
596
+ coinGeckoId: 'bluemove',
597
+ coinMarketCapId: 23359
598
+ },
599
+ {
600
+ chainId: 1,
601
+ tokenAddress: '0xe234f0e7c05165cc48f5407c3eb542709a8284fb6b9d66068413a2e13ef423bd::MOVEPUMP::MOVEPUMP',
602
+ faAddress: null,
603
+ name: 'MovePump',
604
+ symbol: 'MOVEPUMP',
605
+ decimals: 6,
606
+ bridge: null,
607
+ panoraSymbol: 'MOVEPUMP',
608
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOVEPUMP.webp',
609
+ websiteUrl: null,
610
+ category: 'Meme',
611
+ isInPanoraTokenList: true,
612
+ isBanned: false,
613
+ panoraOrderIndex: 133,
614
+ coinGeckoId: null,
615
+ coinMarketCapId: null
616
+ },
617
+ {
618
+ chainId: 1,
619
+ tokenAddress: '0xada35ada7e43e2ee1c39633ffccec38b76ce702b4efc2e60b50f63fbe4f710d8::apetos_token::ApetosCoin',
620
+ faAddress: '0xfad230e7d9df2baf83a68b6f50217ed3c06da593e766970a885965b43b894a04',
621
+ name: 'APETOS',
622
+ symbol: 'APE',
623
+ decimals: 8,
624
+ bridge: null,
625
+ panoraSymbol: 'APE',
626
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APE.png',
627
+ websiteUrl: 'https://apetos.xyz/',
628
+ category: 'Meme',
629
+ isInPanoraTokenList: true,
630
+ isBanned: false,
631
+ panoraOrderIndex: 135,
632
+ coinGeckoId: null,
633
+ coinMarketCapId: null
634
+ },
635
+ {
636
+ chainId: 1,
637
+ tokenAddress: '0xd6a49762f6e4f7401ee79be6f5d4111e70db1408966ba1aa204e6e10c9d437ca::bubbles::BubblesCoin',
638
+ faAddress: null,
639
+ name: 'BUBBLES',
640
+ symbol: 'BUBBLES',
641
+ decimals: 8,
642
+ bridge: null,
643
+ panoraSymbol: 'BUBBLES',
644
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUBBLES.jpg',
645
+ websiteUrl: null,
646
+ category: 'Meme',
647
+ isInPanoraTokenList: true,
648
+ isBanned: false,
649
+ panoraOrderIndex: 140,
650
+ coinGeckoId: null,
651
+ coinMarketCapId: null
652
+ },
653
+ {
654
+ chainId: 1,
655
+ tokenAddress: '0x198e4a77b72cbcac7465e774e99d2ba552053ca57b0759ea3c008433742b4e4f::PEPE::Pepe',
656
+ faAddress: null,
657
+ name: 'Pepe',
658
+ symbol: 'PEPE',
659
+ decimals: 6,
660
+ bridge: null,
661
+ panoraSymbol: 'PEPE',
662
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PEPE.png',
663
+ websiteUrl: 'https://pepe.as',
664
+ category: 'Meme',
665
+ isInPanoraTokenList: true,
666
+ isBanned: false,
667
+ panoraOrderIndex: 145,
668
+ coinGeckoId: null,
669
+ coinMarketCapId: null
670
+ },
671
+ {
672
+ chainId: 1,
673
+ tokenAddress: '0xc26a8eda1c3ab69a157815183ddda88c89d6758ee491dd1647a70af2907ce074::coin::Chewy',
674
+ faAddress: null,
675
+ name: 'Chewy',
676
+ symbol: 'CHEWY',
677
+ decimals: 0,
678
+ bridge: null,
679
+ panoraSymbol: 'CHEWY',
680
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CHEWY.png',
681
+ websiteUrl: 'https://chewytoken.com',
682
+ category: 'Meme',
683
+ isInPanoraTokenList: true,
684
+ isBanned: false,
685
+ panoraOrderIndex: 150,
686
+ coinGeckoId: null,
687
+ coinMarketCapId: 30840
688
+ },
689
+ {
690
+ chainId: 1,
691
+ tokenAddress:
692
+ '0x4c71c33b9ec2f263a7f25779bd9a2531165d4da9a963e042a20f288688094a66::APTO_THE_MASCOT::APTO_THE_MASCOT',
693
+ faAddress: null,
694
+ name: 'Apto The Mascot',
695
+ symbol: 'APTO',
696
+ decimals: 8,
697
+ bridge: null,
698
+ panoraSymbol: 'APTO',
699
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTO.png',
700
+ websiteUrl: 'https://aptothemascot.com/',
701
+ category: 'Meme',
702
+ isInPanoraTokenList: true,
703
+ isBanned: false,
704
+ panoraOrderIndex: 155,
705
+ coinGeckoId: null,
706
+ coinMarketCapId: null
707
+ },
708
+ {
709
+ chainId: 1,
710
+ tokenAddress: '0xf891d2e004973430cc2bbbee69f3d0f4adb9c7ae03137b4579f7bb9979283ee6::APTOS_FOMO::APTOS_FOMO',
711
+ faAddress: null,
712
+ name: 'APTOS FOMO',
713
+ symbol: 'FOMO',
714
+ decimals: 6,
715
+ bridge: null,
716
+ panoraSymbol: 'FOMO',
717
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/FOMO.png',
718
+ websiteUrl: null,
719
+ category: 'Meme',
720
+ isInPanoraTokenList: true,
721
+ isBanned: false,
722
+ panoraOrderIndex: 160,
723
+ coinGeckoId: null,
724
+ coinMarketCapId: null
725
+ },
726
+ {
727
+ chainId: 1,
728
+ tokenAddress: '0x7b7bab2131de3e4f318b4abaa952f7c817b2c3df16c951caca809ac9ca9b650e::APARTMENT::APARTMENT',
729
+ faAddress: null,
730
+ name: 'APARTMENT',
731
+ symbol: 'APARTMENT',
732
+ decimals: 8,
733
+ bridge: null,
734
+ panoraSymbol: 'APARTMENT',
735
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APARTMENT.png',
736
+ websiteUrl: 'https://aptosapartments.rent',
737
+ category: 'Meme',
738
+ isInPanoraTokenList: true,
739
+ isBanned: false,
740
+ panoraOrderIndex: 165,
741
+ coinGeckoId: null,
742
+ coinMarketCapId: null
743
+ },
744
+ {
745
+ chainId: 1,
746
+ tokenAddress: '0xdf3d5eb83df80dfde8ceb1edaa24d8dbc46da6a89ae134a858338e1b86a29e38::coin::Returd',
747
+ faAddress: null,
748
+ name: 'Returd',
749
+ symbol: 'RETuRD',
750
+ decimals: 8,
751
+ bridge: null,
752
+ panoraSymbol: 'RETuRD',
753
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RETURD.png',
754
+ websiteUrl: null,
755
+ category: 'Meme',
756
+ isInPanoraTokenList: false,
757
+ isBanned: false,
758
+ panoraOrderIndex: 170,
759
+ coinGeckoId: null,
760
+ coinMarketCapId: null
761
+ },
762
+ {
763
+ chainId: 1,
764
+ tokenAddress: null,
765
+ faAddress: '0xe9c6ae7a056ba49901fcc19ab3fcff0938f882cfd7f2cc5a72eea362d29f5b8f',
766
+ name: 'BAPTMAN',
767
+ symbol: 'BAPTMAN',
768
+ decimals: 9,
769
+ bridge: null,
770
+ panoraSymbol: 'BAPTMAN',
771
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BAPTMAN.jpg',
772
+ websiteUrl: null,
773
+ category: 'Meme',
774
+ isInPanoraTokenList: true,
775
+ isBanned: false,
776
+ panoraOrderIndex: 173,
777
+ coinGeckoId: null,
778
+ coinMarketCapId: null
779
+ },
780
+ {
781
+ chainId: 1,
782
+ tokenAddress: '0x13341e81b2c5960623f31cfee0b1ef674cbf23ca302852159b542adc6afe0f37::TEH_DORK_KNITE::TEH_DORK_KNITE',
783
+ faAddress: null,
784
+ name: 'Teh Dork Knite',
785
+ symbol: 'BAPTMAN',
786
+ decimals: 8,
787
+ bridge: null,
788
+ panoraSymbol: 'BAPTMAN',
789
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BAPTMAN.jpg',
790
+ websiteUrl: 'https://baptmantoken.com',
791
+ category: 'Meme',
792
+ isInPanoraTokenList: false,
793
+ isBanned: false,
794
+ panoraOrderIndex: 175,
795
+ coinGeckoId: null,
796
+ coinMarketCapId: null
797
+ },
798
+ {
799
+ chainId: 1,
800
+ tokenAddress: '0xd2c9cfe8dd64ebdf9b39e1525997cef33bd178161c59410097d3f3e0704a5df3::ROO::ROO',
801
+ faAddress: null,
802
+ name: 'ROO',
803
+ symbol: 'ROO',
804
+ decimals: 8,
805
+ bridge: null,
806
+ panoraSymbol: 'ROO',
807
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ROO.jpg',
808
+ websiteUrl: 'https://aptosroo.io',
809
+ category: 'Meme',
810
+ isInPanoraTokenList: true,
811
+ isBanned: false,
812
+ panoraOrderIndex: 180,
813
+ coinGeckoId: null,
814
+ coinMarketCapId: null
815
+ },
816
+ {
817
+ chainId: 1,
818
+ tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WBTC',
819
+ faAddress: null,
820
+ name: 'Wrapped BTC',
821
+ symbol: 'WBTC',
822
+ decimals: 6,
823
+ bridge: 'LayerZero',
824
+ panoraSymbol: 'lzWBTC',
825
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
826
+ websiteUrl: null,
827
+ category: 'Bridged',
828
+ isInPanoraTokenList: true,
829
+ isBanned: false,
830
+ panoraOrderIndex: 185,
831
+ coinGeckoId: 'bitcoin',
832
+ coinMarketCapId: 1
833
+ },
834
+ {
835
+ chainId: 1,
836
+ tokenAddress: '0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T',
837
+ faAddress: null,
838
+ name: 'Tether USD',
839
+ symbol: 'USDT',
840
+ decimals: 6,
841
+ bridge: 'Wormhole',
842
+ panoraSymbol: 'whUSDT',
843
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT_BRIDGED.svg',
844
+ websiteUrl: null,
845
+ category: 'Bridged',
846
+ isInPanoraTokenList: true,
847
+ isBanned: false,
848
+ panoraOrderIndex: 190,
849
+ coinGeckoId: null,
850
+ coinMarketCapId: null
851
+ },
852
+ {
853
+ chainId: 1,
854
+ tokenAddress: '0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T',
855
+ faAddress: null,
856
+ name: 'Wrapped BTC',
857
+ symbol: 'WBTC',
858
+ decimals: 8,
859
+ bridge: 'Wormhole',
860
+ panoraSymbol: 'whWBTC',
861
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
862
+ websiteUrl: null,
863
+ category: 'Bridged',
864
+ isInPanoraTokenList: true,
865
+ isBanned: false,
866
+ panoraOrderIndex: 195,
867
+ coinGeckoId: 'bitcoin',
868
+ coinMarketCapId: 1
869
+ },
870
+ {
871
+ chainId: 1,
872
+ tokenAddress: '0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T',
873
+ faAddress: null,
874
+ name: 'Wrapped Ether',
875
+ symbol: 'WETH',
876
+ decimals: 8,
877
+ bridge: 'Wormhole',
878
+ panoraSymbol: 'whWETH',
879
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
880
+ websiteUrl: null,
881
+ category: 'Bridged',
882
+ isInPanoraTokenList: true,
883
+ isBanned: false,
884
+ panoraOrderIndex: 200,
885
+ coinGeckoId: 'ethereum',
886
+ coinMarketCapId: 1027
887
+ },
888
+ {
889
+ chainId: 1,
890
+ tokenAddress: '0xbe3c4b493632b4d776d56e19d91dcfb34f591f759f6b57f8632d455360da503c::dumdum_coin::DumdumCoin',
891
+ faAddress: null,
892
+ name: 'Dumdum',
893
+ symbol: 'DUMDUM',
894
+ decimals: 8,
895
+ bridge: null,
896
+ panoraSymbol: 'DUMDUM',
897
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DUMDUM.png',
898
+ websiteUrl: 'https://dumdum.cc/',
899
+ category: 'Meme',
900
+ isInPanoraTokenList: false,
901
+ isBanned: false,
902
+ panoraOrderIndex: 205,
903
+ coinGeckoId: null,
904
+ coinMarketCapId: null
905
+ },
906
+ {
907
+ chainId: 1,
908
+ tokenAddress: '0x665d06fcd9c94430099f82973f2a5e5f13142e42fa172e72ce14f51a64bd8ad9::coin_mbx::MBX',
909
+ faAddress: null,
910
+ name: 'MARBLEX',
911
+ symbol: 'MBX',
912
+ decimals: 8,
913
+ bridge: null,
914
+ panoraSymbol: 'MBX',
915
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MBX.png',
916
+ websiteUrl: 'https://marblex.io',
917
+ category: 'Native',
918
+ isInPanoraTokenList: false,
919
+ isBanned: false,
920
+ panoraOrderIndex: 210,
921
+ coinGeckoId: 'marblex',
922
+ coinMarketCapId: 18895
923
+ },
924
+ {
925
+ chainId: 1,
926
+ tokenAddress: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef::chad_coin::ChadCoin',
927
+ faAddress: null,
928
+ name: 'CHAD',
929
+ symbol: 'CHAD',
930
+ decimals: 6,
931
+ bridge: null,
932
+ panoraSymbol: 'CHAD',
933
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CHAD.png',
934
+ websiteUrl: null,
935
+ category: 'Meme',
936
+ isInPanoraTokenList: false,
937
+ isBanned: false,
938
+ panoraOrderIndex: 215,
939
+ coinGeckoId: null,
940
+ coinMarketCapId: null
941
+ },
942
+ {
943
+ chainId: 1,
944
+ tokenAddress: '0x1fc2f33ab6b624e3e632ba861b755fd8e61d2c2e6cf8292e415880b4c198224d::apt20::APTS',
945
+ faAddress: null,
946
+ name: 'APTS',
947
+ symbol: 'APTS',
948
+ decimals: 8,
949
+ bridge: null,
950
+ panoraSymbol: 'APTS',
951
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTS.png',
952
+ websiteUrl: null,
953
+ category: 'Meme',
954
+ isInPanoraTokenList: false,
955
+ isBanned: false,
956
+ panoraOrderIndex: 220,
957
+ coinGeckoId: null,
958
+ coinMarketCapId: null
959
+ },
960
+ {
961
+ chainId: 1,
962
+ tokenAddress: '0x4ed27736e724e403f9b4645ffef0ae86fd149503f45b37c428ffabd7e46e5b05::core::RenegadeCoin',
963
+ faAddress: null,
964
+ name: 'RENA',
965
+ symbol: 'RENA',
966
+ decimals: 8,
967
+ bridge: null,
968
+ panoraSymbol: 'RENA',
969
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RENA.png',
970
+ websiteUrl: 'https://www.renegades.build',
971
+ category: 'Native',
972
+ isInPanoraTokenList: false,
973
+ isBanned: false,
974
+ panoraOrderIndex: 225,
975
+ coinGeckoId: null,
976
+ coinMarketCapId: null
977
+ },
978
+ {
979
+ chainId: 1,
980
+ tokenAddress: '0x7de3fea83cd5ca0e1def27c3f3803af619882db51f34abf30dd04ad12ee6af31::tapos::Heart',
981
+ faAddress: null,
982
+ name: 'Heart',
983
+ symbol: 'HEART',
984
+ decimals: 8,
985
+ bridge: null,
986
+ panoraSymbol: 'HEART',
987
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/HEART.png',
988
+ websiteUrl: 'https://tapos.xyz',
989
+ category: 'Native',
990
+ isInPanoraTokenList: false,
991
+ isBanned: false,
992
+ panoraOrderIndex: 230,
993
+ coinGeckoId: null,
994
+ coinMarketCapId: null
995
+ },
996
+ {
997
+ chainId: 1,
998
+ tokenAddress: '0x84edd115c901709ef28f3cb66a82264ba91bfd24789500b6fd34ab9e8888e272::coin::DLC',
999
+ faAddress: null,
1000
+ name: 'Doglaika Coin',
1001
+ symbol: 'DLC',
1002
+ decimals: 8,
1003
+ bridge: null,
1004
+ panoraSymbol: 'DLC',
1005
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DLC.png',
1006
+ websiteUrl: null,
1007
+ category: 'Meme',
1008
+ isInPanoraTokenList: false,
1009
+ isBanned: false,
1010
+ panoraOrderIndex: 235,
1011
+ coinGeckoId: 'doglaikacoin',
1012
+ coinMarketCapId: 23200
1013
+ },
1014
+ {
1015
+ chainId: 1,
1016
+ tokenAddress: '0x4d981c48d254c4cea6110090ad1c2890d5ea35d49cbed28e76c0d3bb90ddf873::crab_coin::CrabCoin',
1017
+ faAddress: null,
1018
+ name: 'Crab Coin',
1019
+ symbol: 'CRAB',
1020
+ decimals: 8,
1021
+ bridge: null,
1022
+ panoraSymbol: 'CRAB',
1023
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CRAB.svg',
1024
+ websiteUrl: 'https://www.aptosshaker.xyz',
1025
+ category: 'Native',
1026
+ isInPanoraTokenList: false,
1027
+ isBanned: false,
1028
+ panoraOrderIndex: 240,
1029
+ coinGeckoId: null,
1030
+ coinMarketCapId: null
1031
+ },
1032
+ {
1033
+ chainId: 1,
1034
+ tokenAddress: '0xc82974034820c34f065f948f1bee473d481bf99fde2d23e981043e5038cb36be::WOOF::Woof',
1035
+ faAddress: null,
1036
+ name: 'Woof',
1037
+ symbol: 'Woof',
1038
+ decimals: 6,
1039
+ bridge: null,
1040
+ panoraSymbol: 'Woof',
1041
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WOOF.png',
1042
+ websiteUrl: null,
1043
+ category: 'Meme',
1044
+ isInPanoraTokenList: false,
1045
+ isBanned: false,
1046
+ panoraOrderIndex: 245,
1047
+ coinGeckoId: null,
1048
+ coinMarketCapId: null
1049
+ },
1050
+ {
1051
+ chainId: 1,
1052
+ tokenAddress: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge',
1053
+ faAddress: '0xf7833d21f83a19548c81e8fd17d8bde4a6e8cc3fbb1ffb97973e06e261c75dee',
1054
+ name: 'Aptoge',
1055
+ symbol: 'APTOGE',
1056
+ decimals: 6,
1057
+ bridge: null,
1058
+ panoraSymbol: 'APTOGE',
1059
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTOGE.png',
1060
+ websiteUrl: 'https://aptoge.com',
1061
+ category: 'Meme',
1062
+ isInPanoraTokenList: false,
1063
+ isBanned: false,
1064
+ panoraOrderIndex: 250,
1065
+ coinGeckoId: null,
1066
+ coinMarketCapId: 22383
1067
+ },
1068
+ {
1069
+ chainId: 1,
1070
+ tokenAddress: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::AptSwap::AptSwapGovernance',
1071
+ faAddress: null,
1072
+ name: 'AptSwap Governance Token',
1073
+ symbol: 'APTSWAP',
1074
+ decimals: 8,
1075
+ bridge: null,
1076
+ panoraSymbol: 'APTSWAP',
1077
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/AptSwap.png',
1078
+ websiteUrl: 'http://aptswap.io',
1079
+ category: 'Native',
1080
+ isInPanoraTokenList: false,
1081
+ isBanned: false,
1082
+ panoraOrderIndex: 255,
1083
+ coinGeckoId: null,
1084
+ coinMarketCapId: null
1085
+ },
1086
+ {
1087
+ chainId: 1,
1088
+ tokenAddress: '0xe50684a338db732d8fb8a3ac71c4b8633878bd0193bca5de2ebc852a83b35099::propbase_coin::PROPS',
1089
+ faAddress: null,
1090
+ name: 'Propbase',
1091
+ symbol: 'PROPS',
1092
+ decimals: 8,
1093
+ bridge: null,
1094
+ panoraSymbol: 'PROPS',
1095
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PROPS.png',
1096
+ websiteUrl: 'https://www.propbase.app',
1097
+ category: 'Native',
1098
+ isInPanoraTokenList: true,
1099
+ isBanned: false,
1100
+ panoraOrderIndex: 260,
1101
+ coinGeckoId: 'propbase',
1102
+ coinMarketCapId: 28385
1103
+ },
1104
+ {
1105
+ chainId: 1,
1106
+ tokenAddress: '0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO',
1107
+ faAddress: null,
1108
+ name: 'Mojito',
1109
+ symbol: 'MOJO',
1110
+ decimals: 8,
1111
+ bridge: null,
1112
+ panoraSymbol: 'MOJO',
1113
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOJO.svg',
1114
+ websiteUrl: 'https://dex.mojito.markets',
1115
+ category: 'Native',
1116
+ isInPanoraTokenList: false,
1117
+ isBanned: false,
1118
+ panoraOrderIndex: 265,
1119
+ coinGeckoId: 'mojito',
1120
+ coinMarketCapId: 22399
1121
+ },
1122
+ {
1123
+ chainId: 1,
1124
+ tokenAddress:
1125
+ '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::aptos_launch_token::AptosLaunchToken',
1126
+ faAddress: '0xd1bec63fa44dc3f3f5742c3f3a4afc3baed00505efbe955dfe6e5f9d306c67a5',
1127
+ name: 'AptosLaunch Token',
1128
+ symbol: 'ALT',
1129
+ decimals: 8,
1130
+ bridge: null,
1131
+ panoraSymbol: 'ALT',
1132
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ALT.png',
1133
+ websiteUrl: 'https://aptoslaunch.io',
1134
+ category: 'Native',
1135
+ isInPanoraTokenList: false,
1136
+ isBanned: false,
1137
+ panoraOrderIndex: 270,
1138
+ coinGeckoId: 'aptos-launch-token',
1139
+ coinMarketCapId: 22065
1140
+ },
1141
+ {
1142
+ chainId: 1,
1143
+ tokenAddress: '0x7c0322595a73b3fc53bb166f5783470afeb1ed9f46d1176db62139991505dc61::abel_coin::AbelCoin',
1144
+ faAddress: null,
1145
+ name: 'Abel Coin',
1146
+ symbol: 'ABEL',
1147
+ decimals: 8,
1148
+ bridge: null,
1149
+ panoraSymbol: 'ABEL',
1150
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ABEL.svg',
1151
+ websiteUrl: 'https://abelfinance.xyz',
1152
+ category: 'Native',
1153
+ isInPanoraTokenList: false,
1154
+ isBanned: false,
1155
+ panoraOrderIndex: 275,
1156
+ coinGeckoId: 'abel-finance',
1157
+ coinMarketCapId: 22959
1158
+ },
1159
+ {
1160
+ chainId: 1,
1161
+ tokenAddress: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos',
1162
+ faAddress: null,
1163
+ name: 'Ditto Staked Aptos',
1164
+ symbol: 'stAPT',
1165
+ decimals: 8,
1166
+ bridge: null,
1167
+ panoraSymbol: 'dstAPT',
1168
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/stAptDitto.png',
1169
+ websiteUrl: 'https://www.dittofinance.io',
1170
+ category: 'Native',
1171
+ isInPanoraTokenList: false,
1172
+ isBanned: false,
1173
+ panoraOrderIndex: 280,
1174
+ coinGeckoId: 'ditto-staked-aptos',
1175
+ coinMarketCapId: 22290
1176
+ },
1177
+ {
1178
+ chainId: 1,
1179
+ tokenAddress:
1180
+ '0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin',
1181
+ faAddress: null,
1182
+ name: 'Tortuga Staked Aptos',
1183
+ symbol: 'tAPT',
1184
+ decimals: 8,
1185
+ bridge: null,
1186
+ panoraSymbol: 'tAPT',
1187
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/tAptTortuga.png',
1188
+ websiteUrl: 'https://tortuga.finance',
1189
+ category: 'Native',
1190
+ isInPanoraTokenList: false,
1191
+ isBanned: false,
1192
+ panoraOrderIndex: 285,
1193
+ coinGeckoId: 'tortuga-staked-aptos',
1194
+ coinMarketCapId: 22412
1195
+ },
1196
+ {
1197
+ chainId: 1,
1198
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin',
1199
+ faAddress: null,
1200
+ name: 'Tether USD',
1201
+ symbol: 'USDT',
1202
+ decimals: 6,
1203
+ bridge: 'Celer',
1204
+ panoraSymbol: 'ceUSDT',
1205
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT_BRIDGED.svg',
1206
+ websiteUrl: null,
1207
+ category: 'Bridged',
1208
+ isInPanoraTokenList: false,
1209
+ isBanned: false,
1210
+ panoraOrderIndex: 290,
1211
+ coinGeckoId: null,
1212
+ coinMarketCapId: null
1213
+ },
1214
+ {
1215
+ chainId: 1,
1216
+ tokenAddress: '0xfbab9fb68bd2103925317b6a540baa20087b1e7a7a4eb90badee04abb6b5a16f::blt::Blt',
1217
+ faAddress: null,
1218
+ name: 'Blocto Token',
1219
+ symbol: 'BLT',
1220
+ decimals: 8,
1221
+ bridge: null,
1222
+ panoraSymbol: 'BLT',
1223
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BLT.png',
1224
+ websiteUrl: null,
1225
+ category: 'Native',
1226
+ isInPanoraTokenList: false,
1227
+ isBanned: false,
1228
+ panoraOrderIndex: 295,
1229
+ coinGeckoId: 'blocto-token',
1230
+ coinMarketCapId: null
1231
+ },
1232
+ {
1233
+ chainId: 1,
1234
+ tokenAddress: '0xe9c192ff55cffab3963c695cff6dbf9dad6aff2bb5ac19a6415cad26a81860d9::mee_coin::MeeCoin',
1235
+ faAddress: null,
1236
+ name: 'Meeiro',
1237
+ symbol: 'MEE',
1238
+ decimals: 6,
1239
+ bridge: null,
1240
+ panoraSymbol: 'MEE',
1241
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MEE.svg',
1242
+ websiteUrl: 'https://meeiro.xyz',
1243
+ category: 'Native',
1244
+ isInPanoraTokenList: false,
1245
+ isBanned: false,
1246
+ panoraOrderIndex: 300,
1247
+ coinGeckoId: null,
1248
+ coinMarketCapId: 22705
1249
+ },
1250
+ {
1251
+ chainId: 1,
1252
+ tokenAddress: '0x52ab49a4039c3d2b0aa6e0a00aaed75dcff72a3120ba3610f62d1d0b6032345a::war_coin::WarCoin',
1253
+ faAddress: null,
1254
+ name: 'War Coin',
1255
+ symbol: 'WAR',
1256
+ decimals: 8,
1257
+ bridge: null,
1258
+ panoraSymbol: 'WAR',
1259
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WAR.png',
1260
+ websiteUrl: 'https://werewolfandwitch.xyz',
1261
+ category: 'Native',
1262
+ isInPanoraTokenList: false,
1263
+ isBanned: false,
1264
+ panoraOrderIndex: 305,
1265
+ coinGeckoId: 'war-coin',
1266
+ coinMarketCapId: null
1267
+ },
1268
+ {
1269
+ chainId: 1,
1270
+ tokenAddress: '0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c::AnimeCoin::ANI',
1271
+ faAddress: '0x9660042a7c01d776938184278381d24c7009ca385d9a59cf9b22691f97615960',
1272
+ name: 'AnimeSwap Coin',
1273
+ symbol: 'ANI',
1274
+ decimals: 8,
1275
+ bridge: null,
1276
+ panoraSymbol: 'ANI',
1277
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ANI.png',
1278
+ websiteUrl: 'https://animeswap.org',
1279
+ category: 'Native',
1280
+ isInPanoraTokenList: false,
1281
+ isBanned: false,
1282
+ panoraOrderIndex: 310,
1283
+ coinGeckoId: 'animeswap',
1284
+ coinMarketCapId: 22650
1285
+ },
1286
+ {
1287
+ chainId: 1,
1288
+ tokenAddress: '0xc71d94c49826b7d81d740d5bfb80b001a356198ed7b8005ae24ccedff82b299c::bridge::APTS',
1289
+ faAddress: null,
1290
+ name: 'APTS Token',
1291
+ symbol: 'APTS',
1292
+ decimals: 8,
1293
+ bridge: null,
1294
+ panoraSymbol: 'APTS-TOKEN',
1295
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTS.png',
1296
+ websiteUrl: 'https://bluemove.net/collection/apts',
1297
+ category: 'Native',
1298
+ isInPanoraTokenList: false,
1299
+ isBanned: false,
1300
+ panoraOrderIndex: 315,
1301
+ coinGeckoId: null,
1302
+ coinMarketCapId: null
1303
+ },
1304
+ {
1305
+ chainId: 1,
1306
+ tokenAddress: '0x14b0ef0ec69f346bea3dfa0c5a8c3942fb05c08760059948f9f24c02cd0d4fd8::mover_token::Mover',
1307
+ faAddress: null,
1308
+ name: 'Mover',
1309
+ symbol: 'MOVER',
1310
+ decimals: 8,
1311
+ bridge: null,
1312
+ panoraSymbol: 'MOVER',
1313
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOVER.svg',
1314
+ websiteUrl: 'https://mov3r.xyz',
1315
+ category: 'Native',
1316
+ isInPanoraTokenList: false,
1317
+ isBanned: false,
1318
+ panoraOrderIndex: 320,
1319
+ coinGeckoId: 'mover-xyz',
1320
+ coinMarketCapId: 23767
1321
+ },
1322
+ {
1323
+ chainId: 1,
1324
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin',
1325
+ faAddress: null,
1326
+ name: 'USD Coin',
1327
+ symbol: 'USDC',
1328
+ decimals: 6,
1329
+ bridge: 'Celer',
1330
+ panoraSymbol: 'ceUSDC',
1331
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1332
+ websiteUrl: null,
1333
+ category: 'Bridged',
1334
+ isInPanoraTokenList: false,
1335
+ isBanned: false,
1336
+ panoraOrderIndex: 325,
1337
+ coinGeckoId: 'usd-coin',
1338
+ coinMarketCapId: 3408
1339
+ },
1340
+ {
1341
+ chainId: 1,
1342
+ tokenAddress: '0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA',
1343
+ faAddress: null,
1344
+ name: 'Argo USD',
1345
+ symbol: 'USDA',
1346
+ decimals: 6,
1347
+ bridge: null,
1348
+ panoraSymbol: 'USDA',
1349
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDA.png',
1350
+ websiteUrl: 'https://argo.fi',
1351
+ category: 'Native',
1352
+ isInPanoraTokenList: false,
1353
+ isBanned: false,
1354
+ panoraOrderIndex: 330,
1355
+ coinGeckoId: null,
1356
+ coinMarketCapId: null
1357
+ },
1358
+ {
1359
+ chainId: 1,
1360
+ tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDD',
1361
+ faAddress: null,
1362
+ name: 'Decentralized USD',
1363
+ symbol: 'USDD',
1364
+ decimals: 6,
1365
+ bridge: null,
1366
+ panoraSymbol: 'USDD',
1367
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDD.png',
1368
+ websiteUrl: null,
1369
+ category: 'Native',
1370
+ isInPanoraTokenList: false,
1371
+ isBanned: false,
1372
+ panoraOrderIndex: 335,
1373
+ coinGeckoId: 'usdd',
1374
+ coinMarketCapId: null
1375
+ },
1376
+ {
1377
+ chainId: 1,
1378
+ tokenAddress: '0x65957cb717d1ec5e13c003cbad0d20d8f7f95236ea0f8bb8c419e533eda73890::TOAST::TOAST',
1379
+ faAddress: null,
1380
+ name: 'Aptoast',
1381
+ symbol: 'TOAST',
1382
+ decimals: 8,
1383
+ bridge: null,
1384
+ panoraSymbol: 'TOAST',
1385
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/TOAST.jpg',
1386
+ websiteUrl: 'https://aptoast.com',
1387
+ category: 'Meme',
1388
+ isInPanoraTokenList: false,
1389
+ isBanned: false,
1390
+ panoraOrderIndex: 340,
1391
+ coinGeckoId: null,
1392
+ coinMarketCapId: null
1393
+ },
1394
+ {
1395
+ chainId: 1,
1396
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin',
1397
+ faAddress: null,
1398
+ name: 'Wrapped BTC',
1399
+ symbol: 'WBTC',
1400
+ decimals: 8,
1401
+ bridge: 'Celer',
1402
+ panoraSymbol: 'ceWBTC',
1403
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
1404
+ websiteUrl: null,
1405
+ category: 'Bridged',
1406
+ isInPanoraTokenList: false,
1407
+ isBanned: false,
1408
+ panoraOrderIndex: 345,
1409
+ coinGeckoId: 'bitcoin',
1410
+ coinMarketCapId: 1
1411
+ },
1412
+ {
1413
+ chainId: 1,
1414
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin',
1415
+ faAddress: null,
1416
+ name: 'Wrapper Ether',
1417
+ symbol: 'WETH',
1418
+ decimals: 8,
1419
+ bridge: 'Celer',
1420
+ panoraSymbol: 'ceWETH',
1421
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
1422
+ websiteUrl: null,
1423
+ category: 'Bridged',
1424
+ isInPanoraTokenList: false,
1425
+ isBanned: false,
1426
+ panoraOrderIndex: 350,
1427
+ coinGeckoId: 'ethereum',
1428
+ coinMarketCapId: 1027
1429
+ },
1430
+ {
1431
+ chainId: 1,
1432
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin',
1433
+ faAddress: null,
1434
+ name: 'Dai Stablecoin',
1435
+ symbol: 'DAI',
1436
+ decimals: 8,
1437
+ bridge: 'Celer',
1438
+ panoraSymbol: 'ceDAI',
1439
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DAI.svg',
1440
+ websiteUrl: null,
1441
+ category: 'Bridged',
1442
+ isInPanoraTokenList: false,
1443
+ isBanned: false,
1444
+ panoraOrderIndex: 355,
1445
+ coinGeckoId: 'dai',
1446
+ coinMarketCapId: 4943
1447
+ },
1448
+ {
1449
+ chainId: 1,
1450
+ tokenAddress: '0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T',
1451
+ faAddress: null,
1452
+ name: 'Wrapped BNB',
1453
+ symbol: 'WBNB',
1454
+ decimals: 8,
1455
+ bridge: 'Wormhole',
1456
+ panoraSymbol: 'whWBNB',
1457
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BNB.svg',
1458
+ websiteUrl: null,
1459
+ category: 'Bridged',
1460
+ isInPanoraTokenList: false,
1461
+ isBanned: false,
1462
+ panoraOrderIndex: 360,
1463
+ coinGeckoId: 'binancecoin',
1464
+ coinMarketCapId: 1839
1465
+ },
1466
+ {
1467
+ chainId: 1,
1468
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin',
1469
+ faAddress: null,
1470
+ name: 'Wrapped BNB',
1471
+ symbol: 'WBNB',
1472
+ decimals: 8,
1473
+ bridge: 'Celer',
1474
+ panoraSymbol: 'ceWBNB',
1475
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BNB.svg',
1476
+ websiteUrl: null,
1477
+ category: 'Bridged',
1478
+ isInPanoraTokenList: false,
1479
+ isBanned: false,
1480
+ panoraOrderIndex: 365,
1481
+ coinGeckoId: 'binancecoin',
1482
+ coinMarketCapId: 1839
1483
+ },
1484
+ {
1485
+ chainId: 1,
1486
+ tokenAddress: '0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T',
1487
+ faAddress: null,
1488
+ name: 'Solana',
1489
+ symbol: 'SOL',
1490
+ decimals: 8,
1491
+ bridge: 'Wormhole',
1492
+ panoraSymbol: 'whSOL',
1493
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SOL.svg',
1494
+ websiteUrl: null,
1495
+ category: 'Bridged',
1496
+ isInPanoraTokenList: false,
1497
+ isBanned: false,
1498
+ panoraOrderIndex: 370,
1499
+ coinGeckoId: 'solana',
1500
+ coinMarketCapId: 5426
1501
+ },
1502
+ {
1503
+ chainId: 1,
1504
+ tokenAddress: '0x4def3d3dee27308886f0a3611dd161ce34f977a9a5de4e80b237225923492a2a::coin::T',
1505
+ faAddress: '0xb81588af2f7d291e8e57f673ec74d4a38f0654633ad6bbeb1cfd4bb0550ae0df',
1506
+ name: 'Gari',
1507
+ symbol: 'GARI',
1508
+ decimals: 8,
1509
+ bridge: 'Wormhole',
1510
+ panoraSymbol: 'whGARI',
1511
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GARI.svg',
1512
+ websiteUrl: 'https://gari.network',
1513
+ category: 'Bridged',
1514
+ isInPanoraTokenList: false,
1515
+ isBanned: false,
1516
+ panoraOrderIndex: 375,
1517
+ coinGeckoId: 'gari-network',
1518
+ coinMarketCapId: 12969
1519
+ },
1520
+ {
1521
+ chainId: 1,
1522
+ tokenAddress:
1523
+ '0x2778b277644d375721766abfff0df2adca795f6cbae9f02ff1c95ce9adb6ee28::aptos_shiba_coin::AptosShibaCoin',
1524
+ faAddress: null,
1525
+ name: 'Aptos Shiba',
1526
+ symbol: 'APTSHIBA',
1527
+ decimals: 6,
1528
+ bridge: null,
1529
+ panoraSymbol: 'AptosShibaCoin',
1530
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTSHIBA.svg',
1531
+ websiteUrl: null,
1532
+ category: 'Meme',
1533
+ isInPanoraTokenList: false,
1534
+ isBanned: false,
1535
+ panoraOrderIndex: 380,
1536
+ coinGeckoId: null,
1537
+ coinMarketCapId: null
1538
+ },
1539
+ {
1540
+ chainId: 1,
1541
+ tokenAddress: '0x66302f3c648890f70ca3fafc42c919483945f3ba155101bc2e149e38a8b93afc::toss_coin::TossCoin',
1542
+ faAddress: null,
1543
+ name: 'TOSS',
1544
+ symbol: 'TOSS',
1545
+ decimals: 9,
1546
+ bridge: null,
1547
+ panoraSymbol: 'TOSS',
1548
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/TOSS.png',
1549
+ websiteUrl: null,
1550
+ category: 'Meme',
1551
+ isInPanoraTokenList: false,
1552
+ isBanned: false,
1553
+ panoraOrderIndex: 385,
1554
+ coinGeckoId: null,
1555
+ coinMarketCapId: null
1556
+ },
1557
+ {
1558
+ chainId: 1,
1559
+ tokenAddress: '0xe1bfc010d2bdd576036f4c1f3ea7d547f19188f5b78075dd961420d843ee914c::brew_coin::BrewCoin',
1560
+ faAddress: null,
1561
+ name: 'Brewtos',
1562
+ symbol: 'BREW',
1563
+ decimals: 8,
1564
+ bridge: null,
1565
+ panoraSymbol: 'BREW',
1566
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BREW.png',
1567
+ websiteUrl: null,
1568
+ category: 'Meme',
1569
+ isInPanoraTokenList: false,
1570
+ isBanned: false,
1571
+ panoraOrderIndex: 390,
1572
+ coinGeckoId: null,
1573
+ coinMarketCapId: null
1574
+ },
1575
+ {
1576
+ chainId: 1,
1577
+ tokenAddress: '0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb::apcoin::ApCoin',
1578
+ faAddress: null,
1579
+ name: 'APass Coin',
1580
+ symbol: 'APC',
1581
+ decimals: 8,
1582
+ bridge: null,
1583
+ panoraSymbol: 'APC',
1584
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APC.svg',
1585
+ websiteUrl: 'https://aptpp.com',
1586
+ category: 'Native',
1587
+ isInPanoraTokenList: false,
1588
+ isBanned: false,
1589
+ panoraOrderIndex: 395,
1590
+ coinGeckoId: null,
1591
+ coinMarketCapId: 23226
1592
+ },
1593
+ {
1594
+ chainId: 1,
1595
+ tokenAddress: '0x9a19f4c81f7dc7b8ae6f568d562e6fb056c3894303229c91f73f34c24b0403b0::luffycoin::Luffy',
1596
+ faAddress: null,
1597
+ name: 'LUFFY',
1598
+ symbol: 'LUFFY',
1599
+ decimals: 6,
1600
+ bridge: null,
1601
+ panoraSymbol: 'LUFFY',
1602
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LUFFY.webp',
1603
+ websiteUrl: null,
1604
+ category: 'Native',
1605
+ isInPanoraTokenList: false,
1606
+ isBanned: false,
1607
+ panoraOrderIndex: 400,
1608
+ coinGeckoId: null,
1609
+ coinMarketCapId: null
1610
+ },
1611
+ {
1612
+ chainId: 1,
1613
+ tokenAddress: '0xcc78307c77f1c2c0fdfee17269bfca7876a0b35438c3442417480c0d5c370fbc::AptopadCoin::APD',
1614
+ faAddress: null,
1615
+ name: 'Aptopad Coin',
1616
+ symbol: 'APD',
1617
+ decimals: 8,
1618
+ bridge: null,
1619
+ panoraSymbol: 'APD',
1620
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APD.png',
1621
+ websiteUrl: 'https://aptopad.io',
1622
+ category: 'Native',
1623
+ isInPanoraTokenList: false,
1624
+ isBanned: false,
1625
+ panoraOrderIndex: 405,
1626
+ coinGeckoId: 'aptopad',
1627
+ coinMarketCapId: 24733
1628
+ },
1629
+ {
1630
+ chainId: 1,
1631
+ tokenAddress: '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::legendary_meme::LegendaryMEME',
1632
+ faAddress: null,
1633
+ name: 'Legendary Meme',
1634
+ symbol: 'LME',
1635
+ decimals: 8,
1636
+ bridge: null,
1637
+ panoraSymbol: 'LME',
1638
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LME.svg',
1639
+ websiteUrl: 'https://legendaryme.me',
1640
+ category: 'Meme',
1641
+ isInPanoraTokenList: false,
1642
+ isBanned: false,
1643
+ panoraOrderIndex: 410,
1644
+ coinGeckoId: 'legendary-meme',
1645
+ coinMarketCapId: null
1646
+ },
1647
+ {
1648
+ chainId: 1,
1649
+ tokenAddress: '0x5a1e84cdd217034d764abb91bf20aa0536c5a8c900831a37b393fe3af98c3f55::thepeoplecoin::The_People',
1650
+ faAddress: null,
1651
+ name: 'The People',
1652
+ symbol: 'People',
1653
+ decimals: 6,
1654
+ bridge: null,
1655
+ panoraSymbol: 'People',
1656
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PEOPLE.png',
1657
+ websiteUrl: 'https://thepeopleapt.xyz',
1658
+ category: 'Native',
1659
+ isInPanoraTokenList: false,
1660
+ isBanned: false,
1661
+ panoraOrderIndex: 415,
1662
+ coinGeckoId: null,
1663
+ coinMarketCapId: null
1664
+ },
1665
+ {
1666
+ chainId: 1,
1667
+ tokenAddress:
1668
+ '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::move_ecosystem_fund::MoveEcosystemFund',
1669
+ faAddress: null,
1670
+ name: 'Move Ecosystem Fund',
1671
+ symbol: 'MOVE',
1672
+ decimals: 8,
1673
+ bridge: null,
1674
+ panoraSymbol: 'MOVE-MEF',
1675
+ logoUrl: null,
1676
+ websiteUrl: null,
1677
+ category: 'Native',
1678
+ isInPanoraTokenList: false,
1679
+ isBanned: false,
1680
+ panoraOrderIndex: 420,
1681
+ coinGeckoId: null,
1682
+ coinMarketCapId: null
1683
+ },
1684
+ {
1685
+ chainId: 1,
1686
+ tokenAddress: '0x3be1b0966a7f400c1ea57e6ddfe5f060282592a1f4df4d45872a7c8bc46b5ba5::zapdos::Zapdos',
1687
+ faAddress: null,
1688
+ name: 'Zapdos',
1689
+ symbol: 'ZAP',
1690
+ decimals: 1,
1691
+ bridge: null,
1692
+ panoraSymbol: 'ZAP',
1693
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZAP.png',
1694
+ websiteUrl: 'https://zapdos.dev',
1695
+ category: 'Native',
1696
+ isInPanoraTokenList: false,
1697
+ isBanned: false,
1698
+ panoraOrderIndex: 425,
1699
+ coinGeckoId: null,
1700
+ coinMarketCapId: null
1701
+ },
1702
+ {
1703
+ chainId: 1,
1704
+ tokenAddress: '0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T',
1705
+ faAddress: null,
1706
+ name: 'USD Coin (Wormhole Solana)',
1707
+ symbol: 'USDCso',
1708
+ decimals: 6,
1709
+ bridge: 'Wormhole',
1710
+ panoraSymbol: 'whUSDCso',
1711
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1712
+ websiteUrl: null,
1713
+ category: 'Bridged',
1714
+ isInPanoraTokenList: false,
1715
+ isBanned: false,
1716
+ panoraOrderIndex: 430,
1717
+ coinGeckoId: 'usd-coin',
1718
+ coinMarketCapId: 3408
1719
+ },
1720
+ {
1721
+ chainId: 1,
1722
+ tokenAddress: '0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T',
1723
+ faAddress: null,
1724
+ name: 'USD Coin (Wormhole BSC)',
1725
+ symbol: 'USDCbs',
1726
+ decimals: 8,
1727
+ bridge: 'Wormhole',
1728
+ panoraSymbol: 'whUSDCbs',
1729
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1730
+ websiteUrl: null,
1731
+ category: 'Bridged',
1732
+ isInPanoraTokenList: false,
1733
+ isBanned: false,
1734
+ panoraOrderIndex: 435,
1735
+ coinGeckoId: 'usd-coin',
1736
+ coinMarketCapId: 3408
1737
+ },
1738
+ {
1739
+ chainId: 1,
1740
+ tokenAddress: '0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T',
1741
+ faAddress: null,
1742
+ name: 'USD Coin (Wormhole Avalanche)',
1743
+ symbol: 'USDCav',
1744
+ decimals: 6,
1745
+ bridge: 'Wormhole',
1746
+ panoraSymbol: 'whUSDCav',
1747
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1748
+ websiteUrl: null,
1749
+ category: 'Bridged',
1750
+ isInPanoraTokenList: false,
1751
+ isBanned: false,
1752
+ panoraOrderIndex: 440,
1753
+ coinGeckoId: 'usd-coin',
1754
+ coinMarketCapId: 3408
1755
+ },
1756
+ {
1757
+ chainId: 1,
1758
+ tokenAddress: '0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T',
1759
+ faAddress: null,
1760
+ name: 'USD Coin (Wormhole Polygon)',
1761
+ symbol: 'USDCpo',
1762
+ decimals: 6,
1763
+ bridge: 'Wormhole',
1764
+ panoraSymbol: 'whUSDCpo',
1765
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1766
+ websiteUrl: null,
1767
+ category: 'Bridged',
1768
+ isInPanoraTokenList: false,
1769
+ isBanned: false,
1770
+ panoraOrderIndex: 445,
1771
+ coinGeckoId: 'usd-coin',
1772
+ coinMarketCapId: 3408
1773
+ },
1774
+ {
1775
+ chainId: 1,
1776
+ tokenAddress: '0xd6d6372c8bde72a7ab825c00b9edd35e643fb94a61c55d9d94a9db3010098548::USDC::Coin',
1777
+ faAddress: null,
1778
+ name: 'USD Coin (Multichain)',
1779
+ symbol: 'multiUSDC',
1780
+ decimals: 6,
1781
+ bridge: null,
1782
+ panoraSymbol: 'multiUSDC',
1783
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
1784
+ websiteUrl: 'https://multichain.org',
1785
+ category: 'Bridged',
1786
+ isInPanoraTokenList: false,
1787
+ isBanned: false,
1788
+ panoraOrderIndex: 450,
1789
+ coinGeckoId: 'usd-coin',
1790
+ coinMarketCapId: 3408
1791
+ },
1792
+ {
1793
+ chainId: 1,
1794
+ tokenAddress: '0x55987edfab9a57f69bac759674f139ae473b5e09a9283848c1f87faf6fc1e789::shrimp::ShrimpCoin',
1795
+ faAddress: null,
1796
+ name: 'SHRIMP',
1797
+ symbol: 'SHRIMP',
1798
+ decimals: 2,
1799
+ bridge: null,
1800
+ panoraSymbol: 'SHRIMP',
1801
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SHRIMP.png',
1802
+ websiteUrl: 'https://shrimp.app',
1803
+ category: 'Meme',
1804
+ isInPanoraTokenList: false,
1805
+ isBanned: false,
1806
+ panoraOrderIndex: 455,
1807
+ coinGeckoId: null,
1808
+ coinMarketCapId: 29921
1809
+ },
1810
+ {
1811
+ chainId: 1,
1812
+ tokenAddress: '0x4ef6d6d174ae393cec4c8af0b75638082fe45c92e552b4df8bc679e3a0ddcb13::CAPTOS::CAPTOS',
1813
+ faAddress: null,
1814
+ name: 'Captos',
1815
+ symbol: 'CAPTOS',
1816
+ decimals: 6,
1817
+ bridge: null,
1818
+ panoraSymbol: 'CAPTOS',
1819
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CAPTOS.png',
1820
+ websiteUrl: null,
1821
+ category: 'Meme',
1822
+ isInPanoraTokenList: false,
1823
+ isBanned: false,
1824
+ panoraOrderIndex: 460,
1825
+ coinGeckoId: null,
1826
+ coinMarketCapId: null
1827
+ },
1828
+ {
1829
+ chainId: 1,
1830
+ tokenAddress: '0x967adbf2e05fe665ab86a3bf2c4acfa39fbf62097963474ef70a0786dae8cfa2::NRUH::NRUH',
1831
+ faAddress: null,
1832
+ name: 'nRuH BeRs',
1833
+ symbol: 'NRUH',
1834
+ decimals: 6,
1835
+ bridge: null,
1836
+ panoraSymbol: 'NRUH',
1837
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NRUH.png',
1838
+ websiteUrl: null,
1839
+ category: 'Meme',
1840
+ isInPanoraTokenList: false,
1841
+ isBanned: false,
1842
+ panoraOrderIndex: 465,
1843
+ coinGeckoId: null,
1844
+ coinMarketCapId: null
1845
+ },
1846
+ {
1847
+ chainId: 1,
1848
+ tokenAddress: '0x2dcbc03740a6fa2efee926b9df329184cce357d0573bdab09930f4d48e61a4c8::STOS::STOS',
1849
+ faAddress: null,
1850
+ name: 'sherritos',
1851
+ symbol: 'STOS',
1852
+ decimals: 6,
1853
+ bridge: null,
1854
+ panoraSymbol: 'STOS',
1855
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/STOS.png',
1856
+ websiteUrl: null,
1857
+ category: 'Meme',
1858
+ isInPanoraTokenList: false,
1859
+ isBanned: false,
1860
+ panoraOrderIndex: 470,
1861
+ coinGeckoId: null,
1862
+ coinMarketCapId: null
1863
+ },
1864
+ {
1865
+ chainId: 1,
1866
+ tokenAddress: '0x6f446fe32a361c5512863d5e610f7d7eaa54d5cee1cea6a2712f2e56da693f1c::MODENG::MODENG',
1867
+ faAddress: null,
1868
+ name: 'Mo Deng',
1869
+ symbol: 'MODENG',
1870
+ decimals: 6,
1871
+ bridge: null,
1872
+ panoraSymbol: 'MODENG',
1873
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MODENG.jpg',
1874
+ websiteUrl: null,
1875
+ category: 'Meme',
1876
+ isInPanoraTokenList: true,
1877
+ isBanned: false,
1878
+ panoraOrderIndex: 475,
1879
+ coinGeckoId: null,
1880
+ coinMarketCapId: null
1881
+ },
1882
+ {
1883
+ chainId: 1,
1884
+ tokenAddress: '0x61ed8b048636516b4eaf4c74250fa4f9440d9c3e163d96aeb863fe658a4bdc67::CASH::CASH',
1885
+ faAddress: null,
1886
+ name: 'CASH',
1887
+ symbol: 'CASH',
1888
+ decimals: 6,
1889
+ bridge: null,
1890
+ panoraSymbol: 'CASH',
1891
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CASH.png',
1892
+ websiteUrl: 'https://app.zion.bet',
1893
+ category: 'Meme',
1894
+ isInPanoraTokenList: true,
1895
+ isBanned: false,
1896
+ panoraOrderIndex: 480,
1897
+ coinGeckoId: null,
1898
+ coinMarketCapId: null
1899
+ },
1900
+ {
1901
+ chainId: 1,
1902
+ tokenAddress: '0x33df6ad8f2208d8f575076e59fda6e195ef5c1908f0dae9e461a1aada7c12418::SNZ::SNZ',
1903
+ faAddress: null,
1904
+ name: 'Tissue',
1905
+ symbol: 'SNZ',
1906
+ decimals: 6,
1907
+ bridge: null,
1908
+ panoraSymbol: 'SNZ',
1909
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SNZ.jpg',
1910
+ websiteUrl: null,
1911
+ category: 'Meme',
1912
+ isInPanoraTokenList: false,
1913
+ isBanned: false,
1914
+ panoraOrderIndex: 485,
1915
+ coinGeckoId: null,
1916
+ coinMarketCapId: null
1917
+ },
1918
+ {
1919
+ chainId: 1,
1920
+ tokenAddress: '0xa8c3d4ec01aa0bcaa23bac67d0c3e9d5df2d9e8b82a01ad4f8448aebf3d9a961::POK::POK',
1921
+ faAddress: null,
1922
+ name: 'Purrfectly Okay Coin',
1923
+ symbol: 'POK',
1924
+ decimals: 6,
1925
+ bridge: null,
1926
+ panoraSymbol: 'POK',
1927
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/POK.jpg',
1928
+ websiteUrl: null,
1929
+ category: 'Meme',
1930
+ isInPanoraTokenList: false,
1931
+ isBanned: false,
1932
+ panoraOrderIndex: 490,
1933
+ coinGeckoId: null,
1934
+ coinMarketCapId: null
1935
+ },
1936
+ {
1937
+ chainId: 1,
1938
+ tokenAddress: '0x24dc0c6bd0a98f31961589e6432a8038833128f7c802ba148172553987c379f::MEOW::MEOW',
1939
+ faAddress: null,
1940
+ name: 'Meowtos',
1941
+ symbol: 'MEOW',
1942
+ decimals: 6,
1943
+ bridge: null,
1944
+ panoraSymbol: 'MEOW',
1945
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MEOW.svg',
1946
+ websiteUrl: 'https://meowtos.xyz',
1947
+ category: 'Meme',
1948
+ isInPanoraTokenList: false,
1949
+ isBanned: false,
1950
+ panoraOrderIndex: 495,
1951
+ coinGeckoId: null,
1952
+ coinMarketCapId: null
1953
+ },
1954
+ {
1955
+ chainId: 1,
1956
+ tokenAddress: '0x8e36c188da866c4faccb1ace68a33cca40149d942953a6b6a9976e709396ddb8::BEARD::BEARD',
1957
+ faAddress: null,
1958
+ name: '$BEARD',
1959
+ symbol: 'BEARD',
1960
+ decimals: 6,
1961
+ bridge: null,
1962
+ panoraSymbol: 'BEARD',
1963
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BEARD.png',
1964
+ websiteUrl: null,
1965
+ category: 'Meme',
1966
+ isInPanoraTokenList: false,
1967
+ isBanned: false,
1968
+ panoraOrderIndex: 500,
1969
+ coinGeckoId: null,
1970
+ coinMarketCapId: null
1971
+ },
1972
+ {
1973
+ chainId: 1,
1974
+ tokenAddress: '0xaf1077397a61aebda08ff61dfebd571ccdf7a777618b8d66832b5ab0656852bd::FOG::FOG',
1975
+ faAddress: null,
1976
+ name: 'FAG DOG COIN',
1977
+ symbol: 'FOG',
1978
+ decimals: 6,
1979
+ bridge: null,
1980
+ panoraSymbol: 'FOG',
1981
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/FOG.jpg',
1982
+ websiteUrl: null,
1983
+ category: 'Meme',
1984
+ isInPanoraTokenList: false,
1985
+ isBanned: false,
1986
+ panoraOrderIndex: 505,
1987
+ coinGeckoId: null,
1988
+ coinMarketCapId: null
1989
+ },
1990
+ {
1991
+ chainId: 1,
1992
+ tokenAddress: '0x23906ec47702dfcdb8ca35dc6eab5cb5d567b86ac1ef0d32a53b786c14ed0d98::POLES::POLES',
1993
+ faAddress: null,
1994
+ name: 'CHOADpoles',
1995
+ symbol: 'POLES',
1996
+ decimals: 6,
1997
+ bridge: null,
1998
+ panoraSymbol: 'POLES',
1999
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/POLES.png',
2000
+ websiteUrl: null,
2001
+ category: 'Meme',
2002
+ isInPanoraTokenList: false,
2003
+ isBanned: false,
2004
+ panoraOrderIndex: 510,
2005
+ coinGeckoId: null,
2006
+ coinMarketCapId: null
2007
+ },
2008
+ {
2009
+ chainId: 1,
2010
+ tokenAddress: '0x8f59ac670c9cdaa22503bfede0be49e6759626b18727fbf8d876e18861ff3986::RAPT::RAPT',
2011
+ faAddress: null,
2012
+ name: 'Raptos',
2013
+ symbol: 'RAPT',
2014
+ decimals: 6,
2015
+ bridge: null,
2016
+ panoraSymbol: 'RAPT',
2017
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RAPT.png',
2018
+ websiteUrl: null,
2019
+ category: 'Meme',
2020
+ isInPanoraTokenList: false,
2021
+ isBanned: false,
2022
+ panoraOrderIndex: 515,
2023
+ coinGeckoId: null,
2024
+ coinMarketCapId: null
2025
+ },
2026
+ {
2027
+ chainId: 1,
2028
+ tokenAddress: '0xbafd66d813a51ed6b5d2db99b18b61d2fccbc2e46979690fe84198272c59ca5f::zaptos::Zaptos',
2029
+ faAddress: null,
2030
+ name: 'ZAPTOS',
2031
+ symbol: 'ZAPT',
2032
+ decimals: 8,
2033
+ bridge: null,
2034
+ panoraSymbol: 'ZAPT',
2035
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZAPT.png',
2036
+ websiteUrl: null,
2037
+ category: 'Meme',
2038
+ isInPanoraTokenList: false,
2039
+ isBanned: false,
2040
+ panoraOrderIndex: 520,
2041
+ coinGeckoId: null,
2042
+ coinMarketCapId: null
2043
+ },
2044
+ {
2045
+ chainId: 1,
2046
+ tokenAddress: '0x2ac1304f147af6f3e3362c64f1c9c95dd84f67a8d6e300185e22c5a6f8f661af::PUPTOS::PUPTOS',
2047
+ faAddress: null,
2048
+ name: 'PUPTOS',
2049
+ symbol: 'PUPTOS',
2050
+ decimals: 6,
2051
+ bridge: null,
2052
+ panoraSymbol: 'PUPTOS',
2053
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PUPTOS.png',
2054
+ websiteUrl: null,
2055
+ category: 'Meme',
2056
+ isInPanoraTokenList: false,
2057
+ isBanned: false,
2058
+ panoraOrderIndex: 525,
2059
+ coinGeckoId: null,
2060
+ coinMarketCapId: null
2061
+ },
2062
+ {
2063
+ chainId: 1,
2064
+ tokenAddress: '0xf9cd51e1211f467c52d91c96491aae6c7a068e5f23736e2b58f885412346624c::PP1::PP',
2065
+ faAddress: null,
2066
+ name: 'PP token',
2067
+ symbol: 'PP',
2068
+ decimals: 6,
2069
+ bridge: null,
2070
+ panoraSymbol: 'PP',
2071
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PP.png',
2072
+ websiteUrl: null,
2073
+ category: 'Meme',
2074
+ isInPanoraTokenList: false,
2075
+ isBanned: false,
2076
+ panoraOrderIndex: 530,
2077
+ coinGeckoId: null,
2078
+ coinMarketCapId: null
2079
+ },
2080
+ {
2081
+ chainId: 1,
2082
+ tokenAddress: '0xbd92f54e3ebf1e80a0efa05f8bbd607fc6dd00ec208c0d743ee6ba3c10f03846::APOP::APOP',
2083
+ faAddress: null,
2084
+ name: 'Apeople Coin',
2085
+ symbol: 'APOP',
2086
+ decimals: 6,
2087
+ bridge: null,
2088
+ panoraSymbol: 'APOP',
2089
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APOP.jpg',
2090
+ websiteUrl: null,
2091
+ category: 'Meme',
2092
+ isInPanoraTokenList: false,
2093
+ isBanned: false,
2094
+ panoraOrderIndex: 535,
2095
+ coinGeckoId: null,
2096
+ coinMarketCapId: null
2097
+ },
2098
+ {
2099
+ chainId: 1,
2100
+ tokenAddress: '0x2eebec013472480cc903cf7f118ccadcf813b4bf5e57aafba250746eff2150d5::BEDOG::BEDOG',
2101
+ faAddress: null,
2102
+ name: 'Baby Edog',
2103
+ symbol: 'BEDOG',
2104
+ decimals: 6,
2105
+ bridge: null,
2106
+ panoraSymbol: 'BEDOG',
2107
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BEDOG.svg',
2108
+ websiteUrl: 'https://edog.baby',
2109
+ category: 'Meme',
2110
+ isInPanoraTokenList: false,
2111
+ isBanned: false,
2112
+ panoraOrderIndex: 540,
2113
+ coinGeckoId: null,
2114
+ coinMarketCapId: null
2115
+ },
2116
+ {
2117
+ chainId: 1,
2118
+ tokenAddress: '0x55c833f3c668dd863d3848d306e426a33eac615bb93be03fe3a2f721701fec1::UPDOG::UPDOG',
2119
+ faAddress: null,
2120
+ name: 'UPDOG',
2121
+ symbol: 'UPDOG',
2122
+ decimals: 6,
2123
+ bridge: null,
2124
+ panoraSymbol: 'UPDOG',
2125
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/UPDOG.png',
2126
+ websiteUrl: 'https://updogapt.xyz',
2127
+ category: 'Meme',
2128
+ isInPanoraTokenList: false,
2129
+ isBanned: false,
2130
+ panoraOrderIndex: 545,
2131
+ coinGeckoId: null,
2132
+ coinMarketCapId: null
2133
+ },
2134
+ {
2135
+ chainId: 1,
2136
+ tokenAddress: '0x1605f6d99b995e8ddb6200fdccccf97a2497fe1f024a46f6c178a501f0d1b60e::ACAT::ACAT',
2137
+ faAddress: null,
2138
+ name: 'AptoCat',
2139
+ symbol: 'ACAT',
2140
+ decimals: 6,
2141
+ bridge: null,
2142
+ panoraSymbol: 'ACAT',
2143
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ACAT.png',
2144
+ websiteUrl: 'https://www.aptocat.xyz',
2145
+ category: 'Meme',
2146
+ isInPanoraTokenList: false,
2147
+ isBanned: false,
2148
+ panoraOrderIndex: 550,
2149
+ coinGeckoId: null,
2150
+ coinMarketCapId: null
2151
+ },
2152
+ {
2153
+ chainId: 1,
2154
+ tokenAddress: '0xc95e07a20f94acb04f1188b51bafbbeec93363760c066f4ced3884a48137da8a::GHO::GHO',
2155
+ faAddress: null,
2156
+ name: 'GHOST',
2157
+ symbol: 'GHO',
2158
+ decimals: 6,
2159
+ bridge: null,
2160
+ panoraSymbol: 'GHO',
2161
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GHO.jpg',
2162
+ websiteUrl: null,
2163
+ category: 'Meme',
2164
+ isInPanoraTokenList: false,
2165
+ isBanned: false,
2166
+ panoraOrderIndex: 555,
2167
+ coinGeckoId: null,
2168
+ coinMarketCapId: null
2169
+ },
2170
+ {
2171
+ chainId: 1,
2172
+ tokenAddress: '0x135726730c0e4e71652a6726354f148dec46974d5c152b0042ad58b37ea3c864::FaptOS::FaptOS',
2173
+ faAddress: null,
2174
+ name: 'FaptOS',
2175
+ symbol: 'FaptOS',
2176
+ decimals: 6,
2177
+ bridge: null,
2178
+ panoraSymbol: 'FaptOS',
2179
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/FAPTOS.png',
2180
+ websiteUrl: 'https://faptosaptos.com',
2181
+ category: 'Meme',
2182
+ isInPanoraTokenList: false,
2183
+ isBanned: false,
2184
+ panoraOrderIndex: 560,
2185
+ coinGeckoId: null,
2186
+ coinMarketCapId: null
2187
+ },
2188
+ {
2189
+ chainId: 1,
2190
+ tokenAddress: '0xce1a44fa48a726258a11a499797bc38befa6bc2ef4019b686c59e0a301b1a1c8::BUBU::BUBU',
2191
+ faAddress: null,
2192
+ name: 'LABUBUTOS',
2193
+ symbol: 'BUBU',
2194
+ decimals: 6,
2195
+ bridge: null,
2196
+ panoraSymbol: 'BUBU',
2197
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUBU.jpg',
2198
+ websiteUrl: null,
2199
+ category: 'Meme',
2200
+ isInPanoraTokenList: false,
2201
+ isBanned: false,
2202
+ panoraOrderIndex: 565,
2203
+ coinGeckoId: null,
2204
+ coinMarketCapId: null
2205
+ },
2206
+ {
2207
+ chainId: 1,
2208
+ tokenAddress: '0xbafe0208ba2a3ea2c66a6868f9361a13f4014490e9b77fb0364c5cf55340ffbe::AMAGA::AMAGA',
2209
+ faAddress: null,
2210
+ name: 'AptosMAGA',
2211
+ symbol: 'AMAGA',
2212
+ decimals: 6,
2213
+ bridge: null,
2214
+ panoraSymbol: 'AMAGA',
2215
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/AMAGA.jpg',
2216
+ websiteUrl: null,
2217
+ category: 'Meme',
2218
+ isInPanoraTokenList: false,
2219
+ isBanned: false,
2220
+ panoraOrderIndex: 570,
2221
+ coinGeckoId: null,
2222
+ coinMarketCapId: null
2223
+ },
2224
+ {
2225
+ chainId: 1,
2226
+ tokenAddress: '0x68495e47585861928e07e1fc629501b06822b230508bcf05c4fc19bec9a82405::MOTOS::MOTOS',
2227
+ faAddress: null,
2228
+ name: 'MOTOS',
2229
+ symbol: 'MOTOS',
2230
+ decimals: 6,
2231
+ bridge: null,
2232
+ panoraSymbol: 'MOTOS',
2233
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOTOS.jpg',
2234
+ websiteUrl: null,
2235
+ category: 'Meme',
2236
+ isInPanoraTokenList: false,
2237
+ isBanned: false,
2238
+ panoraOrderIndex: 575,
2239
+ coinGeckoId: null,
2240
+ coinMarketCapId: null
2241
+ },
2242
+ {
2243
+ chainId: 1,
2244
+ tokenAddress: '0x10a51c8275d90165aec142e326fcd9dc2e8def57d6271a86ef38a0e5a0a8e142::DWIF::DWI',
2245
+ faAddress: null,
2246
+ name: 'DOGWIFHAIR',
2247
+ symbol: 'DWIF',
2248
+ decimals: 6,
2249
+ bridge: null,
2250
+ panoraSymbol: 'DWIF',
2251
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DWIF.jpg',
2252
+ websiteUrl: null,
2253
+ category: 'Meme',
2254
+ isInPanoraTokenList: false,
2255
+ isBanned: false,
2256
+ panoraOrderIndex: 580,
2257
+ coinGeckoId: null,
2258
+ coinMarketCapId: null
2259
+ },
2260
+ {
2261
+ chainId: 1,
2262
+ tokenAddress: '0x744467880fbc1a723d8ba8437cd6de3de942789fe6611fc992de8574596c9b5c::CMT::CMT',
2263
+ faAddress: null,
2264
+ name: 'Cryptomolot',
2265
+ symbol: 'CMT',
2266
+ decimals: 6,
2267
+ bridge: null,
2268
+ panoraSymbol: 'CMT',
2269
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CMT.png',
2270
+ websiteUrl: null,
2271
+ category: 'Meme',
2272
+ isInPanoraTokenList: false,
2273
+ isBanned: false,
2274
+ panoraOrderIndex: 590,
2275
+ coinGeckoId: null,
2276
+ coinMarketCapId: null
2277
+ },
2278
+ {
2279
+ chainId: 1,
2280
+ tokenAddress: '0x2f277e648b3761b65818d92f0a7c151cb38a1d33b1a8b18d4c5748bbcd9fcca5::Netzy::Netzy',
2281
+ faAddress: null,
2282
+ name: 'The Mole Netzy',
2283
+ symbol: 'Netzy',
2284
+ decimals: 6,
2285
+ bridge: null,
2286
+ panoraSymbol: 'Netzy',
2287
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NETZY.jpg',
2288
+ websiteUrl: null,
2289
+ category: 'Meme',
2290
+ isInPanoraTokenList: false,
2291
+ isBanned: false,
2292
+ panoraOrderIndex: 595,
2293
+ coinGeckoId: null,
2294
+ coinMarketCapId: null
2295
+ },
2296
+ {
2297
+ chainId: 1,
2298
+ tokenAddress: '0x541e21bc602730511c0b2de1dbb8e77e5e16031931a955dc988bbed3f600b510::Rice::Rice',
2299
+ faAddress: null,
2300
+ name: 'Rice Token',
2301
+ symbol: 'Rice',
2302
+ decimals: 6,
2303
+ bridge: null,
2304
+ panoraSymbol: 'Rice',
2305
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RICE.png',
2306
+ websiteUrl: null,
2307
+ category: 'Meme',
2308
+ isInPanoraTokenList: false,
2309
+ isBanned: false,
2310
+ panoraOrderIndex: 600,
2311
+ coinGeckoId: null,
2312
+ coinMarketCapId: null
2313
+ },
2314
+ {
2315
+ chainId: 1,
2316
+ tokenAddress: '0xc89f2e0a7f61424e0b951936820f0423e3f076948dcdced112b76244ed840a25::burritos_coin::BurritosCoin',
2317
+ faAddress: null,
2318
+ name: 'BURRITOS',
2319
+ symbol: 'BURRITOS',
2320
+ decimals: 9,
2321
+ bridge: null,
2322
+ panoraSymbol: 'BURRITOS',
2323
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BURRITOS.png',
2324
+ websiteUrl: 'https://burritos-aptos.com',
2325
+ category: 'Meme',
2326
+ isInPanoraTokenList: false,
2327
+ isBanned: false,
2328
+ panoraOrderIndex: 605,
2329
+ coinGeckoId: null,
2330
+ coinMarketCapId: null
2331
+ },
2332
+ {
2333
+ chainId: 1,
2334
+ tokenAddress: '0x8ea59d57259d0312fa21e0cb9099d359462d9e0050c9139960ff9a2313ce1c9d::coin::T',
2335
+ faAddress: null,
2336
+ name: 'o.xyz',
2337
+ symbol: 'O',
2338
+ decimals: 8,
2339
+ bridge: null,
2340
+ panoraSymbol: 'O',
2341
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/o-xyz.svg',
2342
+ websiteUrl: 'https://www.o.xyz',
2343
+ category: 'Native',
2344
+ isInPanoraTokenList: true,
2345
+ isBanned: false,
2346
+ panoraOrderIndex: 610,
2347
+ coinGeckoId: null,
2348
+ coinMarketCapId: null
2349
+ },
2350
+ {
2351
+ chainId: 1,
2352
+ tokenAddress: null,
2353
+ faAddress: '0x3b5200e090d188c274e06b0d64b3f66638fb996fb0b350499975ff36b1f4595',
2354
+ name: 'esMKL',
2355
+ symbol: 'esMKL',
2356
+ decimals: 6,
2357
+ bridge: null,
2358
+ panoraSymbol: 'esMKL',
2359
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/esMKL.png',
2360
+ websiteUrl: 'https://merkle.trade',
2361
+ category: 'Native',
2362
+ isInPanoraTokenList: false,
2363
+ isBanned: false,
2364
+ panoraOrderIndex: 10000,
2365
+ coinGeckoId: null,
2366
+ coinMarketCapId: null
2367
+ },
2368
+ {
2369
+ chainId: 1,
2370
+ tokenAddress:
2371
+ '0x5ae6789dd2fec1a9ec9cccfb3acaf12e93d432f0a3a42c92fe1a9d490b7bbc06::house_lp::MKLP<0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC>',
2372
+ faAddress: null,
2373
+ name: 'Merkle LP',
2374
+ symbol: 'MKLP',
2375
+ decimals: 6,
2376
+ bridge: null,
2377
+ panoraSymbol: 'MKLP',
2378
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MKLP.png',
2379
+ websiteUrl: 'https://merkle.trade',
2380
+ category: 'Native',
2381
+ isInPanoraTokenList: false,
2382
+ isBanned: false,
2383
+ panoraOrderIndex: 10000,
2384
+ coinGeckoId: null,
2385
+ coinMarketCapId: null
2386
+ },
2387
+ {
2388
+ chainId: 1,
2389
+ tokenAddress: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef::EONcoin::EONCoin',
2390
+ faAddress: '0xcab64ed0d956462e9b8ba7c340fdb8b9ab52da1503f37b522288bc0c5bf944de',
2391
+ name: 'EON',
2392
+ symbol: 'EON',
2393
+ decimals: 8,
2394
+ bridge: null,
2395
+ panoraSymbol: 'EON',
2396
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/EON.svg',
2397
+ websiteUrl: 'https://eonlabz.com',
2398
+ category: 'Native',
2399
+ isInPanoraTokenList: false,
2400
+ isBanned: false,
2401
+ panoraOrderIndex: 100000,
2402
+ coinGeckoId: null,
2403
+ coinMarketCapId: null
2404
+ },
2405
+ {
2406
+ chainId: 1,
2407
+ tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin',
2408
+ faAddress: null,
2409
+ name: 'Binance USD',
2410
+ symbol: 'BUSD',
2411
+ decimals: 8,
2412
+ bridge: 'Celer',
2413
+ panoraSymbol: 'ceBUSD',
2414
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUSD.png',
2415
+ websiteUrl: null,
2416
+ category: 'Bridged',
2417
+ isInPanoraTokenList: false,
2418
+ isBanned: false,
2419
+ panoraOrderIndex: 100000,
2420
+ coinGeckoId: 'binance-usd',
2421
+ coinMarketCapId: null
2422
+ },
2423
+ {
2424
+ chainId: 1,
2425
+ tokenAddress: '0x25a64579760a4c64be0d692327786a6375ec80740152851490cfd0b53604cf95::coin::ETERN',
2426
+ faAddress: null,
2427
+ name: 'Eternal Token',
2428
+ symbol: 'ETERN',
2429
+ decimals: 8,
2430
+ bridge: null,
2431
+ panoraSymbol: 'ETERN',
2432
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ETERN.svg',
2433
+ websiteUrl: 'https://eternalfinance.io',
2434
+ category: 'Native',
2435
+ isInPanoraTokenList: false,
2436
+ isBanned: false,
2437
+ panoraOrderIndex: 100000,
2438
+ coinGeckoId: null,
2439
+ coinMarketCapId: null
2440
+ },
2441
+ {
2442
+ chainId: 1,
2443
+ tokenAddress: '0xd916a950d4c1279df4aa0d6f32011842dc5c633a45c11ac5019232c159d115bb::coin::T',
2444
+ faAddress: null,
2445
+ name: 'wTBT Pool',
2446
+ symbol: 'wTBT',
2447
+ decimals: 8,
2448
+ bridge: null,
2449
+ panoraSymbol: 'wTBT',
2450
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WTBT.svg',
2451
+ websiteUrl: 'https://www.tprotocol.io',
2452
+ category: 'Native',
2453
+ isInPanoraTokenList: false,
2454
+ isBanned: false,
2455
+ panoraOrderIndex: 100000,
2456
+ coinGeckoId: 'wtbt',
2457
+ coinMarketCapId: null
2458
+ },
2459
+ {
2460
+ chainId: 1,
2461
+ tokenAddress: '0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T',
2462
+ faAddress: null,
2463
+ name: 'Binance USD',
2464
+ symbol: 'BUSD',
2465
+ decimals: 8,
2466
+ bridge: 'Wormhole',
2467
+ panoraSymbol: 'whBUSD',
2468
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUSD.png',
2469
+ websiteUrl: null,
2470
+ category: 'Bridged',
2471
+ isInPanoraTokenList: false,
2472
+ isBanned: false,
2473
+ panoraOrderIndex: 100000,
2474
+ coinGeckoId: 'binance-usd',
2475
+ coinMarketCapId: null
2476
+ },
2477
+ {
2478
+ chainId: 1,
2479
+ tokenAddress: '0xced3e98a47279b4d39a75fa8da867e2e8383d5d8ce7e59b2964a9469616a761b::coin::T',
2480
+ faAddress: null,
2481
+ name: 'Wrapped SUI',
2482
+ symbol: 'WSUI',
2483
+ decimals: 8,
2484
+ bridge: null,
2485
+ panoraSymbol: 'WSUI',
2486
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SUI.svg',
2487
+ websiteUrl: null,
2488
+ category: 'Native',
2489
+ isInPanoraTokenList: false,
2490
+ isBanned: false,
2491
+ panoraOrderIndex: 100000,
2492
+ coinGeckoId: null,
2493
+ coinMarketCapId: null
2494
+ },
2495
+ {
2496
+ chainId: 1,
2497
+ tokenAddress: '0x33afc05395020c12a31ada7d7d833f31ae1dd892124edec50297c7d608a6e7bd::NEBULA::NEBULA',
2498
+ faAddress: null,
2499
+ name: 'Nebula',
2500
+ symbol: 'NBUL',
2501
+ decimals: 8,
2502
+ bridge: null,
2503
+ panoraSymbol: 'NBUL',
2504
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NBUL.svg',
2505
+ websiteUrl: 'https://nebuladao.space',
2506
+ category: 'Native',
2507
+ isInPanoraTokenList: false,
2508
+ isBanned: false,
2509
+ panoraOrderIndex: 100000,
2510
+ coinGeckoId: null,
2511
+ coinMarketCapId: null
2512
+ },
2513
+ {
2514
+ chainId: 1,
2515
+ tokenAddress: '0x9906c12b3b7a12721b9dddf23e6dd5ff5dfc93c5241dada855780758b01fedd3::DOOT_SKELETON::DOOT_SKELETON',
2516
+ faAddress: null,
2517
+ name: 'DOOT Skeleton',
2518
+ symbol: 'DOOT',
2519
+ decimals: 8,
2520
+ bridge: null,
2521
+ panoraSymbol: 'DOOT',
2522
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DOOT.svg',
2523
+ websiteUrl: 'https://skeltal.io',
2524
+ category: 'Meme',
2525
+ isInPanoraTokenList: false,
2526
+ isBanned: false,
2527
+ panoraOrderIndex: 100000,
2528
+ coinGeckoId: null,
2529
+ coinMarketCapId: null
2530
+ },
2531
+ {
2532
+ chainId: 1,
2533
+ tokenAddress: '0x8235f05ea1901e682bc09b3be93eba0727e94c020ccb0e57074843315c675521::BLADEEWIFHAT::BLADEEWIFHAT',
2534
+ faAddress: null,
2535
+ name: 'bladeewifhat',
2536
+ symbol: 'BLADEE',
2537
+ decimals: 8,
2538
+ bridge: null,
2539
+ panoraSymbol: 'BLADEE',
2540
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BLADEE.jpg',
2541
+ websiteUrl: null,
2542
+ category: 'Meme',
2543
+ isInPanoraTokenList: false,
2544
+ isBanned: false,
2545
+ panoraOrderIndex: 100000,
2546
+ coinGeckoId: null,
2547
+ coinMarketCapId: null
2548
+ },
2549
+ {
2550
+ chainId: 1,
2551
+ tokenAddress: '0x7bdeaba6f037caf06bb5b2d57df9ee03a07e2a9df45b338ef3deb44d16c01d10::spring_coin::Spring_Coin',
2552
+ faAddress: null,
2553
+ name: 'SPRING',
2554
+ symbol: 'SPRING',
2555
+ decimals: 9,
2556
+ bridge: null,
2557
+ panoraSymbol: 'SPRING',
2558
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SPRING.webp',
2559
+ websiteUrl: 'https://springers.co.in',
2560
+ category: 'Native',
2561
+ isInPanoraTokenList: false,
2562
+ isBanned: false,
2563
+ panoraOrderIndex: 100000,
2564
+ coinGeckoId: 'spring',
2565
+ coinMarketCapId: null
2566
+ },
2567
+ {
2568
+ chainId: 1,
2569
+ tokenAddress: '0x27975005fd8b836a905dc7f81c51f89e76091a4d0c4d694265f6eae0c05cb400::proton_a5d::PROTON_E54',
2570
+ faAddress: '0x8b91a08070628408c7130b82ce8789e13d978edfccb6db02b79c493ead63a2e8',
2571
+ name: 'AlpacaINU Coin',
2572
+ symbol: 'ALI',
2573
+ decimals: 6,
2574
+ bridge: null,
2575
+ panoraSymbol: 'ALI',
2576
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ALI.svg',
2577
+ websiteUrl: 'https://twitter.com/AlpacaINU',
2578
+ category: 'Meme',
2579
+ isInPanoraTokenList: false,
2580
+ isBanned: false,
2581
+ panoraOrderIndex: 100000,
2582
+ coinGeckoId: null,
2583
+ coinMarketCapId: null
2584
+ },
2585
+ {
2586
+ chainId: 1,
2587
+ tokenAddress:
2588
+ '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::ditto_discount_coin::DittoDiscountCoin',
2589
+ faAddress: null,
2590
+ name: 'Ditto Discount Token',
2591
+ symbol: 'DTO',
2592
+ decimals: 8,
2593
+ bridge: null,
2594
+ panoraSymbol: 'DTO',
2595
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DTO.svg',
2596
+ websiteUrl: 'https://www.dittofinance.io',
2597
+ category: 'Native',
2598
+ isInPanoraTokenList: false,
2599
+ isBanned: false,
2600
+ panoraOrderIndex: 100000,
2601
+ coinGeckoId: 'ditto-discount-token',
2602
+ coinMarketCapId: null
2603
+ },
2604
+ {
2605
+ chainId: 1,
2606
+ tokenAddress: '0x66398cf97d29fd3825f65b37cb2773268e5438d37e20777e6a98261da0cf1f1e::ddos_coin::DDOS_COIN',
2607
+ faAddress: null,
2608
+ name: 'DDOS Token',
2609
+ symbol: 'DDOS',
2610
+ decimals: 8,
2611
+ bridge: null,
2612
+ panoraSymbol: 'DDOS',
2613
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DDOS.svg',
2614
+ websiteUrl: 'https://ddosapt.com',
2615
+ category: 'Meme',
2616
+ isInPanoraTokenList: false,
2617
+ isBanned: false,
2618
+ panoraOrderIndex: 100000,
2619
+ coinGeckoId: null,
2620
+ coinMarketCapId: null
2621
+ },
2622
+ {
2623
+ chainId: 1,
2624
+ tokenAddress: '0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T',
2625
+ faAddress: null,
2626
+ name: 'Dai Stablecoin (Wormhole)',
2627
+ symbol: 'DAI',
2628
+ decimals: 8,
2629
+ bridge: 'Wormhole',
2630
+ panoraSymbol: 'whDAI',
2631
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DAI.svg',
2632
+ websiteUrl: null,
2633
+ category: 'Bridged',
2634
+ isInPanoraTokenList: false,
2635
+ isBanned: false,
2636
+ panoraOrderIndex: 100000,
2637
+ coinGeckoId: 'dai',
2638
+ coinMarketCapId: null
2639
+ },
2640
+ {
2641
+ chainId: 1,
2642
+ tokenAddress: '0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T',
2643
+ faAddress: null,
2644
+ name: 'Tether USD',
2645
+ symbol: 'USDTbs',
2646
+ decimals: 8,
2647
+ bridge: 'Wormhole',
2648
+ panoraSymbol: 'whUSDTbs',
2649
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT_BRIDGED.svg',
2650
+ websiteUrl: null,
2651
+ category: 'Bridged',
2652
+ isInPanoraTokenList: false,
2653
+ isBanned: false,
2654
+ panoraOrderIndex: 100000,
2655
+ coinGeckoId: null,
2656
+ coinMarketCapId: null
2657
+ },
2658
+ {
2659
+ chainId: 1,
2660
+ tokenAddress: '0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T',
2661
+ faAddress: null,
2662
+ name: 'Wrapped AVAX (Wormhole)',
2663
+ symbol: 'WAVAX',
2664
+ decimals: 8,
2665
+ bridge: 'Wormhole',
2666
+ panoraSymbol: 'whWAVAX',
2667
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/AVAX.webp',
2668
+ websiteUrl: null,
2669
+ category: 'Bridged',
2670
+ isInPanoraTokenList: false,
2671
+ isBanned: false,
2672
+ panoraOrderIndex: 100000,
2673
+ coinGeckoId: 'avalanche-2',
2674
+ coinMarketCapId: 5805
2675
+ },
2676
+ {
2677
+ chainId: 1,
2678
+ tokenAddress: '0xf6f87fb53c090da2cd681cd30eccec6825685e6f305bfb9efdbbdf31796a83a7::MONKE::MONKE',
2679
+ faAddress: null,
2680
+ name: 'MONKE',
2681
+ symbol: 'MONKE',
2682
+ decimals: 6,
2683
+ bridge: null,
2684
+ panoraSymbol: 'MONKE',
2685
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MONKE.png',
2686
+ websiteUrl: null,
2687
+ category: 'Meme',
2688
+ isInPanoraTokenList: false,
2689
+ isBanned: false,
2690
+ panoraOrderIndex: 100000,
2691
+ coinGeckoId: null,
2692
+ coinMarketCapId: null
2693
+ },
2694
+ {
2695
+ chainId: 1,
2696
+ tokenAddress: '0x83b619e2d9e6e10d15ed4b714111a4cd9526c1c2ae0eec4b252a619d3e8bdda3::MAU::MAU',
2697
+ faAddress: null,
2698
+ name: 'MAU',
2699
+ symbol: 'MAU',
2700
+ decimals: 8,
2701
+ bridge: null,
2702
+ panoraSymbol: 'MAU',
2703
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MAU.png',
2704
+ websiteUrl: 'https://mauprotocol.com',
2705
+ category: 'Meme',
2706
+ isInPanoraTokenList: false,
2707
+ isBanned: false,
2708
+ panoraOrderIndex: 100000,
2709
+ coinGeckoId: null,
2710
+ coinMarketCapId: null
2711
+ },
2712
+ {
2713
+ chainId: 1,
2714
+ tokenAddress: '0x9a8d0e2fde92bb5a503ad899b352b630952651cba26e4959d0ed19d79f9b02ee::asset::MoveYourBody',
2715
+ faAddress: null,
2716
+ name: 'MoveYourBody',
2717
+ symbol: 'body',
2718
+ decimals: 8,
2719
+ bridge: null,
2720
+ panoraSymbol: 'body',
2721
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BODY.png',
2722
+ websiteUrl: 'https://www.moveyourbody.xyz',
2723
+ category: 'Native',
2724
+ isInPanoraTokenList: false,
2725
+ isBanned: false,
2726
+ panoraOrderIndex: 100000,
2727
+ coinGeckoId: null,
2728
+ coinMarketCapId: null
2729
+ },
2730
+ {
2731
+ chainId: 1,
2732
+ tokenAddress: '0x1fc2f33ab6b624e3e632ba861b755fd8e61d2c2e6cf8292e415880b4c198224d::apt20::EVA',
2733
+ faAddress: null,
2734
+ name: 'EVA',
2735
+ symbol: 'EVA',
2736
+ decimals: 8,
2737
+ bridge: null,
2738
+ panoraSymbol: 'EVA',
2739
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/EVA.png',
2740
+ websiteUrl: 'https://apt-20.com',
2741
+ category: 'Native',
2742
+ isInPanoraTokenList: false,
2743
+ isBanned: false,
2744
+ panoraOrderIndex: 100000,
2745
+ coinGeckoId: null,
2746
+ coinMarketCapId: null
2747
+ },
2748
+ {
2749
+ chainId: 1,
2750
+ tokenAddress: '0x7e19e5790911597559ec6b41c5465ab062be22d6ba5729845bf257a2361d7608::CITADELI::CITADELI',
2751
+ faAddress: null,
2752
+ name: 'Citadeli',
2753
+ symbol: 'CTD',
2754
+ decimals: 8,
2755
+ bridge: null,
2756
+ panoraSymbol: 'CTD',
2757
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CTD.svg',
2758
+ websiteUrl: 'https://citadeli.crypto',
2759
+ category: 'Native',
2760
+ isInPanoraTokenList: false,
2761
+ isBanned: false,
2762
+ panoraOrderIndex: 100000,
2763
+ coinGeckoId: null,
2764
+ coinMarketCapId: null
2765
+ },
2766
+ {
2767
+ chainId: 1,
2768
+ tokenAddress:
2769
+ '0x8b2df69c9766e18486c37e3cfc53c6ce6e9aa58bbc606a8a0a219f24cf9eafc1::sui_launch_token::SuiLaunchToken',
2770
+ faAddress: null,
2771
+ name: 'Sui Launch Token',
2772
+ symbol: 'SLT',
2773
+ decimals: 8,
2774
+ bridge: null,
2775
+ panoraSymbol: 'SLT',
2776
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SLT.svg',
2777
+ websiteUrl: 'http://suilaunch.io',
2778
+ category: 'Native',
2779
+ isInPanoraTokenList: false,
2780
+ isBanned: false,
2781
+ panoraOrderIndex: 100000,
2782
+ coinGeckoId: null,
2783
+ coinMarketCapId: null
2784
+ },
2785
+ {
2786
+ chainId: 1,
2787
+ tokenAddress: '0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T',
2788
+ faAddress: null,
2789
+ name: 'SWEAT',
2790
+ symbol: 'SWEAT',
2791
+ decimals: 8,
2792
+ bridge: 'Wormhole',
2793
+ panoraSymbol: 'whSWEAT',
2794
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SWEAT.webp',
2795
+ websiteUrl: null,
2796
+ category: 'Bridged',
2797
+ isInPanoraTokenList: false,
2798
+ isBanned: false,
2799
+ panoraOrderIndex: 100000,
2800
+ coinGeckoId: 'sweatcoin',
2801
+ coinMarketCapId: null
2802
+ },
2803
+ {
2804
+ chainId: 1,
2805
+ tokenAddress: '0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T',
2806
+ faAddress: null,
2807
+ name: 'NEAR (Wormhole)',
2808
+ symbol: 'NEAR',
2809
+ decimals: 8,
2810
+ bridge: 'Wormhole',
2811
+ panoraSymbol: 'whNEAR',
2812
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NEAR.webp',
2813
+ websiteUrl: null,
2814
+ category: 'Bridged',
2815
+ isInPanoraTokenList: false,
2816
+ isBanned: false,
2817
+ panoraOrderIndex: 100000,
2818
+ coinGeckoId: 'near',
2819
+ coinMarketCapId: null
2820
+ },
2821
+ {
2822
+ chainId: 1,
2823
+ tokenAddress: '0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T',
2824
+ faAddress: null,
2825
+ name: 'Nexum Coin',
2826
+ symbol: 'NEXM',
2827
+ decimals: 8,
2828
+ bridge: 'Wormhole',
2829
+ panoraSymbol: 'whNEXM',
2830
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NEXM.webp',
2831
+ websiteUrl: null,
2832
+ category: 'Bridged',
2833
+ isInPanoraTokenList: false,
2834
+ isBanned: false,
2835
+ panoraOrderIndex: 100000,
2836
+ coinGeckoId: 'nexum',
2837
+ coinMarketCapId: null
2838
+ },
2839
+ {
2840
+ chainId: 1,
2841
+ tokenAddress: '0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T',
2842
+ faAddress: null,
2843
+ name: 'SushiToken (Wormhole)',
2844
+ symbol: 'SUSHI',
2845
+ decimals: 8,
2846
+ bridge: 'Wormhole',
2847
+ panoraSymbol: 'whSUSHI',
2848
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SUSHI.webp',
2849
+ websiteUrl: null,
2850
+ category: 'Bridged',
2851
+ isInPanoraTokenList: false,
2852
+ isBanned: false,
2853
+ panoraOrderIndex: 100000,
2854
+ coinGeckoId: 'sushi',
2855
+ coinMarketCapId: null
2856
+ },
2857
+ {
2858
+ chainId: 1,
2859
+ tokenAddress: '0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T',
2860
+ faAddress: null,
2861
+ name: 'Celo (Wormhole)',
2862
+ symbol: 'CELO',
2863
+ decimals: 8,
2864
+ bridge: 'Wormhole',
2865
+ panoraSymbol: 'whCELO',
2866
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CELO.webp',
2867
+ websiteUrl: null,
2868
+ category: 'Bridged',
2869
+ isInPanoraTokenList: false,
2870
+ isBanned: false,
2871
+ panoraOrderIndex: 100000,
2872
+ coinGeckoId: 'celo',
2873
+ coinMarketCapId: null
2874
+ },
2875
+ {
2876
+ chainId: 1,
2877
+ tokenAddress: '0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T',
2878
+ faAddress: null,
2879
+ name: 'FTX Token',
2880
+ symbol: 'FTT',
2881
+ decimals: 8,
2882
+ bridge: 'Wormhole',
2883
+ panoraSymbol: 'whFTT',
2884
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/FTT.webp',
2885
+ websiteUrl: null,
2886
+ category: 'Bridged',
2887
+ isInPanoraTokenList: false,
2888
+ isBanned: false,
2889
+ panoraOrderIndex: 100000,
2890
+ coinGeckoId: 'ftx-token',
2891
+ coinMarketCapId: null
2892
+ },
2893
+ {
2894
+ chainId: 1,
2895
+ tokenAddress: '0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T',
2896
+ faAddress: null,
2897
+ name: 'Chain',
2898
+ symbol: 'XCN',
2899
+ decimals: 8,
2900
+ bridge: 'Wormhole',
2901
+ panoraSymbol: 'whXCN',
2902
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/XCN.webp',
2903
+ websiteUrl: null,
2904
+ category: 'Bridged',
2905
+ isInPanoraTokenList: false,
2906
+ isBanned: false,
2907
+ panoraOrderIndex: 100000,
2908
+ coinGeckoId: 'chain-2',
2909
+ coinMarketCapId: null
2910
+ },
2911
+ {
2912
+ chainId: 1,
2913
+ tokenAddress: '0x91b54cb4441c88fa21b7ca5b8b860e8b6fe726c23866bed91999823e65c1026d::GEMKRW::GEMKRW',
2914
+ faAddress: null,
2915
+ name: 'GEM.KRW',
2916
+ symbol: 'GEMKRW',
2917
+ decimals: 2,
2918
+ bridge: null,
2919
+ panoraSymbol: 'GEMKRW',
2920
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GEMKRW.svg',
2921
+ websiteUrl: null,
2922
+ category: 'Native',
2923
+ isInPanoraTokenList: false,
2924
+ isBanned: false,
2925
+ panoraOrderIndex: 100000,
2926
+ coinGeckoId: null,
2927
+ coinMarketCapId: null
2928
+ },
2929
+ {
2930
+ chainId: 1,
2931
+ tokenAddress: '0x7c2aaaaf3f019bbf7f02beed21fc4ec352cc38272f93cb11e61ec7c89bfe5f4b::xbtc::XBTC',
2932
+ faAddress: null,
2933
+ name: 'XBTC',
2934
+ symbol: 'XBTC',
2935
+ decimals: 8,
2936
+ bridge: null,
2937
+ panoraSymbol: 'XBTC',
2938
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
2939
+ websiteUrl: null,
2940
+ category: 'Native',
2941
+ isInPanoraTokenList: false,
2942
+ isBanned: false,
2943
+ panoraOrderIndex: 100000,
2944
+ coinGeckoId: null,
2945
+ coinMarketCapId: null
2946
+ },
2947
+ {
2948
+ chainId: 1,
2949
+ tokenAddress:
2950
+ '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0x1::aptos_coin::AptosCoin>',
2951
+ faAddress: null,
2952
+ name: 'Aries Aptos Coin LP Token',
2953
+ symbol: 'ar-APT',
2954
+ decimals: 8,
2955
+ bridge: null,
2956
+ panoraSymbol: 'ar-APT',
2957
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ar-APT.svg',
2958
+ websiteUrl: 'https://ariesmarkets.xyz',
2959
+ category: 'Native',
2960
+ isInPanoraTokenList: false,
2961
+ isBanned: false,
2962
+ panoraOrderIndex: 100000,
2963
+ coinGeckoId: null,
2964
+ coinMarketCapId: null
2965
+ },
2966
+ {
2967
+ chainId: 1,
2968
+ tokenAddress:
2969
+ '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T>',
2970
+ faAddress: null,
2971
+ name: 'Aries Solana (Wormhole) LP Token',
2972
+ symbol: 'ar-SOL',
2973
+ decimals: 8,
2974
+ bridge: null,
2975
+ panoraSymbol: 'ar-SOL',
2976
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ar-SOL.svg',
2977
+ websiteUrl: 'https://ariesmarkets.xyz',
2978
+ category: 'Native',
2979
+ isInPanoraTokenList: false,
2980
+ isBanned: false,
2981
+ panoraOrderIndex: 100000,
2982
+ coinGeckoId: null,
2983
+ coinMarketCapId: null
2984
+ },
2985
+ {
2986
+ chainId: 1,
2987
+ tokenAddress:
2988
+ '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC>',
2989
+ faAddress: null,
2990
+ name: 'Aries USDC (Layerzero) LP Token',
2991
+ symbol: 'ar-zUSDC',
2992
+ decimals: 6,
2993
+ bridge: null,
2994
+ panoraSymbol: 'ar-lzUSDC',
2995
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ar-USDC.svg',
2996
+ websiteUrl: 'https://ariesmarkets.xyz',
2997
+ category: 'Native',
2998
+ isInPanoraTokenList: false,
2999
+ isBanned: false,
3000
+ panoraOrderIndex: 100000,
3001
+ coinGeckoId: null,
3002
+ coinMarketCapId: null
3003
+ },
3004
+ {
3005
+ chainId: 1,
3006
+ tokenAddress:
3007
+ '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T>',
3008
+ faAddress: null,
3009
+ name: 'Aries USDC (Wormhole) LP Token',
3010
+ symbol: 'ar-USDC',
3011
+ decimals: 6,
3012
+ bridge: null,
3013
+ panoraSymbol: 'ar-whUSDC',
3014
+ logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ar-USDC.svg',
3015
+ websiteUrl: 'https://ariesmarkets.xyz',
3016
+ category: 'Native',
3017
+ isInPanoraTokenList: false,
3018
+ isBanned: false,
3019
+ panoraOrderIndex: 100000,
3020
+ coinGeckoId: null,
3021
+ coinMarketCapId: null
3022
+ },
3023
+ {
3024
+ chainId: 1,
3025
+ tokenAddress: '0x397071c01929cc6672a17f130bd62b1bce224309029837ce4f18214cc83ce2a7::USDC::USDC',
3026
+ faAddress: null,
3027
+ name: '💸 USDC-APTOS.ORG',
3028
+ symbol: 'USDC-APTOS',
3029
+ decimals: 6,
3030
+ bridge: null,
3031
+ panoraSymbol: 'USDC-APTOS',
3032
+ logoUrl: null,
3033
+ websiteUrl: null,
3034
+ category: 'Native',
3035
+ isInPanoraTokenList: false,
3036
+ isBanned: true,
3037
+ panoraOrderIndex: 100000,
3038
+ coinGeckoId: null,
3039
+ coinMarketCapId: null
3040
+ },
3041
+ {
3042
+ chainId: 1,
3043
+ tokenAddress: '0x48327a479bf5c5d2e36d5e9846362cff2d99e0e27ff92859fc247893fded3fbd::APTOS::APTOS',
3044
+ faAddress: null,
3045
+ name: '💸 aptclaim.net',
3046
+ symbol: '$APT',
3047
+ decimals: 6,
3048
+ bridge: null,
3049
+ panoraSymbol: '$APT',
3050
+ logoUrl: null,
3051
+ websiteUrl: null,
3052
+ category: 'Native',
3053
+ isInPanoraTokenList: false,
3054
+ isBanned: true,
3055
+ panoraOrderIndex: 100000,
3056
+ coinGeckoId: null,
3057
+ coinMarketCapId: null
3058
+ },
3059
+ {
3060
+ chainId: 1,
3061
+ tokenAddress: '0xbbc4a9af0e7fa8885bda5db08028e7b882f2c2bba1e0fedbad1d8316f73f8b2f::memes::Memecoins',
3062
+ faAddress: null,
3063
+ name: '⭐ aptosmeme.com',
3064
+ symbol: 'MEME',
3065
+ decimals: 8,
3066
+ bridge: null,
3067
+ panoraSymbol: 'MEME',
3068
+ logoUrl: null,
3069
+ websiteUrl: null,
3070
+ category: 'Native',
3071
+ isInPanoraTokenList: false,
3072
+ isBanned: true,
3073
+ panoraOrderIndex: 100000,
3074
+ coinGeckoId: null,
3075
+ coinMarketCapId: null
3076
+ },
3077
+ {
3078
+ chainId: 1,
3079
+ tokenAddress: '0xf658475dc67a4d48295dbcea6de1dc3c9af64c1c80d4161284df369be941dafb::moon_coin::MoonCoin',
3080
+ faAddress: null,
3081
+ name: 'ClaimAPTGift.com',
3082
+ symbol: 'aGift.site',
3083
+ decimals: 6,
3084
+ bridge: null,
3085
+ panoraSymbol: 'aGift.site',
3086
+ logoUrl: null,
3087
+ websiteUrl: null,
3088
+ category: 'Native',
3089
+ isInPanoraTokenList: false,
3090
+ isBanned: true,
3091
+ panoraOrderIndex: 100000,
3092
+ coinGeckoId: null,
3093
+ coinMarketCapId: null
3094
+ },
3095
+ {
3096
+ chainId: 1,
3097
+ tokenAddress: '0xbc106d0fef7e5ce159423a1a9312e011bca7fb57f961146a2f88003a779b25c2::QUEST::QUEST',
3098
+ faAddress: null,
3099
+ name: '▪ AptosQuest.io',
3100
+ symbol: 'COINS',
3101
+ decimals: 6,
3102
+ bridge: null,
3103
+ panoraSymbol: 'COINS',
3104
+ logoUrl: null,
3105
+ websiteUrl: null,
3106
+ category: 'Native',
3107
+ isInPanoraTokenList: false,
3108
+ isBanned: true,
3109
+ panoraOrderIndex: 100000,
3110
+ coinGeckoId: null,
3111
+ coinMarketCapId: null
3112
+ },
3113
+ {
3114
+ chainId: 1,
3115
+ tokenAddress: '0x50788befc1107c0cc4473848a92e5c783c635866ce3c98de71d2eeb7d2a34f85::apt_rewards::APTRewards',
3116
+ faAddress: null,
3117
+ name: 'https://aptosx.app',
3118
+ symbol: 'APT Reward',
3119
+ decimals: 6,
3120
+ bridge: null,
3121
+ panoraSymbol: 'APT Reward',
3122
+ logoUrl: null,
3123
+ websiteUrl: 'https://aptosx.app',
3124
+ category: 'Native',
3125
+ isInPanoraTokenList: false,
3126
+ isBanned: true,
3127
+ panoraOrderIndex: 100000,
3128
+ coinGeckoId: null,
3129
+ coinMarketCapId: null
3130
+ }
3131
+ ]