@sentio/sdk 2.7.0 → 2.7.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,1501 @@
1
+ import { getPriceByType } from '@sentio/sdk/utils';
2
+ import { CHAIN_IDS } from '@sentio/sdk';
3
+ import { Status, ClientError } from 'nice-grpc-common';
4
+ import fetch from 'node-fetch';
5
+ const WHITELISTED_COINS = new Map();
6
+ export async function initCoinList() {
7
+ let list = DEFAULT_LIST;
8
+ try {
9
+ const resp = await fetch('https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/src/defaultList.mainnet.json');
10
+ list = (await resp.json());
11
+ }
12
+ catch (e) {
13
+ console.warn("Can't not fetch newest coin list, use default list");
14
+ }
15
+ for (const info of list) {
16
+ let bridge = 'native';
17
+ if (info.name.includes('Celer')) {
18
+ bridge = 'Celer';
19
+ }
20
+ if (info.name.includes('LayerZero')) {
21
+ bridge = 'LayerZero';
22
+ }
23
+ if (info.name.includes('Wormhole')) {
24
+ bridge = 'Wormhole';
25
+ }
26
+ // if (!info.coingecko_id) {
27
+ // if (info.symbol.endsWith("APT")) {
28
+ // info.coingecko_id = "aptos"
29
+ // }
30
+ // if (info.symbol.startsWith("USD")) {
31
+ // info.coingecko_id = "usd-coin"
32
+ // }
33
+ // // TODO add moji
34
+ // }
35
+ WHITELISTED_COINS.set(info.token_type.type, { ...info, bridge });
36
+ }
37
+ }
38
+ export function whitelistCoins() {
39
+ return WHITELISTED_COINS;
40
+ }
41
+ export function whiteListed(type) {
42
+ return WHITELISTED_COINS.has(type);
43
+ }
44
+ export function getCoinInfo(type) {
45
+ const r = WHITELISTED_COINS.get(type);
46
+ if (!r) {
47
+ console.warn('coin info not existed in white list');
48
+ return {
49
+ token_type: { type: type },
50
+ symbol: type.split('::')[2],
51
+ decimals: 1,
52
+ bridge: 'native',
53
+ };
54
+ }
55
+ return r;
56
+ }
57
+ export async function getPrice(coinType, timestamp) {
58
+ if (!whiteListed(coinType)) {
59
+ return 0.0;
60
+ }
61
+ const date = new Date(timestamp / 1000);
62
+ try {
63
+ return (await getPriceByType(CHAIN_IDS.APTOS_MAINNET, coinType, date)) || 0;
64
+ }
65
+ catch (error) {
66
+ if (error instanceof ClientError && error.code === Status.NOT_FOUND) {
67
+ return 0;
68
+ }
69
+ console.log(JSON.stringify(error));
70
+ throw error;
71
+ }
72
+ }
73
+ export async function calculateValueInUsd(n, coinInfo, timestamp) {
74
+ if (typeof timestamp === 'string') {
75
+ timestamp = parseInt(timestamp);
76
+ }
77
+ const price = await getPrice(coinInfo.token_type.type, timestamp);
78
+ const amount = n.scaleDown(coinInfo.decimals);
79
+ return amount.multipliedBy(price);
80
+ }
81
+ export function delay(ms) {
82
+ return new Promise((resolve) => setTimeout(resolve, ms));
83
+ }
84
+ const DEFAULT_LIST = [
85
+ {
86
+ name: 'Aptos Coin',
87
+ symbol: 'APT',
88
+ official_symbol: 'APT',
89
+ coingecko_id: 'aptos',
90
+ decimals: 8,
91
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/APT.webp',
92
+ project_url: 'https://aptoslabs.com/',
93
+ token_type: {
94
+ type: '0x1::aptos_coin::AptosCoin',
95
+ account_address: '0x1',
96
+ module_name: 'aptos_coin',
97
+ struct_name: 'AptosCoin',
98
+ },
99
+ extensions: {
100
+ data: [['bridge', 'native']],
101
+ },
102
+ unique_index: 1,
103
+ source: 'native',
104
+ permissioned_listing: true,
105
+ hippo_symbol: 'APT',
106
+ pancake_symbol: 'APT',
107
+ },
108
+ {
109
+ name: 'Meeiro',
110
+ symbol: 'MEE',
111
+ official_symbol: 'MEE',
112
+ coingecko_id: '',
113
+ decimals: 6,
114
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/MEE.svg',
115
+ project_url: 'https://meeiro.xyz',
116
+ token_type: {
117
+ type: '0xe9c192ff55cffab3963c695cff6dbf9dad6aff2bb5ac19a6415cad26a81860d9::mee_coin::MeeCoin',
118
+ account_address: '0xe9c192ff55cffab3963c695cff6dbf9dad6aff2bb5ac19a6415cad26a81860d9',
119
+ module_name: 'mee_coin',
120
+ struct_name: 'MeeCoin',
121
+ },
122
+ extensions: {
123
+ data: [['bridge', 'native']],
124
+ },
125
+ unique_index: 101,
126
+ source: 'native',
127
+ permissioned_listing: true,
128
+ hippo_symbol: 'MEE',
129
+ pancake_symbol: 'MEE',
130
+ },
131
+ {
132
+ name: 'Ditto Staked Aptos',
133
+ symbol: 'stAPT',
134
+ official_symbol: 'stAPT',
135
+ coingecko_id: 'ditto-staked-aptos',
136
+ decimals: 8,
137
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DittoStakedAptos.svg',
138
+ project_url: 'https://www.dittofinance.io/',
139
+ token_type: {
140
+ type: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos',
141
+ account_address: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5',
142
+ module_name: 'staked_coin',
143
+ struct_name: 'StakedAptos',
144
+ },
145
+ extensions: {
146
+ data: [['bridge', 'native']],
147
+ },
148
+ unique_index: 156,
149
+ source: 'native',
150
+ permissioned_listing: true,
151
+ hippo_symbol: 'stAPT',
152
+ pancake_symbol: 'stAPT',
153
+ },
154
+ {
155
+ name: 'Ditto Discount Token',
156
+ symbol: 'DTO',
157
+ official_symbol: 'DTO',
158
+ coingecko_id: 'ditto-discount-token',
159
+ decimals: 8,
160
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DTO.svg',
161
+ project_url: 'https://www.dittofinance.io/',
162
+ token_type: {
163
+ type: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::ditto_discount_coin::DittoDiscountCoin',
164
+ account_address: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5',
165
+ module_name: 'ditto_discount_coin',
166
+ struct_name: 'DittoDiscountCoin',
167
+ },
168
+ extensions: {
169
+ data: [['bridge', 'native']],
170
+ },
171
+ unique_index: 191,
172
+ source: 'native',
173
+ permissioned_listing: true,
174
+ hippo_symbol: 'DTO',
175
+ pancake_symbol: 'DTO',
176
+ },
177
+ {
178
+ name: 'DAI',
179
+ symbol: 'devDAI',
180
+ official_symbol: 'DAI',
181
+ coingecko_id: 'dai',
182
+ decimals: 8,
183
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DAI.webp',
184
+ project_url: 'project_url',
185
+ token_type: {
186
+ type: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68::devnet_coins::DevnetDAI',
187
+ account_address: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68',
188
+ module_name: 'devnet_coins',
189
+ struct_name: 'DevnetDAI',
190
+ },
191
+ extensions: {
192
+ data: [],
193
+ },
194
+ unique_index: 213,
195
+ source: 'native',
196
+ hippo_symbol: 'devDAI',
197
+ pancake_symbol: 'devDAI',
198
+ permissioned_listing: false,
199
+ },
200
+ {
201
+ name: 'Aptoge',
202
+ symbol: 'APTOGE',
203
+ official_symbol: 'APTOGE',
204
+ coingecko_id: '',
205
+ decimals: 6,
206
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/APTOGE.svg',
207
+ project_url: 'https://aptoge.com',
208
+ token_type: {
209
+ type: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge',
210
+ account_address: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf',
211
+ module_name: 'Aptoge',
212
+ struct_name: 'Aptoge',
213
+ },
214
+ extensions: {
215
+ data: [['bridge', 'native']],
216
+ },
217
+ unique_index: 231,
218
+ source: 'native',
219
+ permissioned_listing: true,
220
+ hippo_symbol: 'APTOGE',
221
+ pancake_symbol: 'APTOGE',
222
+ },
223
+ {
224
+ name: 'Eternal Token',
225
+ symbol: 'ETERN',
226
+ official_symbol: 'ETERN',
227
+ coingecko_id: '',
228
+ decimals: 8,
229
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ETERN.svg',
230
+ project_url: 'https://eternalfinance.io',
231
+ token_type: {
232
+ type: '0x25a64579760a4c64be0d692327786a6375ec80740152851490cfd0b53604cf95::coin::ETERN',
233
+ account_address: '0x25a64579760a4c64be0d692327786a6375ec80740152851490cfd0b53604cf95',
234
+ module_name: 'coin',
235
+ struct_name: 'ETERN',
236
+ },
237
+ extensions: {
238
+ data: [],
239
+ },
240
+ unique_index: 256,
241
+ source: 'native',
242
+ permissioned_listing: true,
243
+ hippo_symbol: 'ETERN',
244
+ pancake_symbol: 'ETERN',
245
+ },
246
+ {
247
+ name: 'Argo USD',
248
+ symbol: 'USDA',
249
+ official_symbol: 'USDA',
250
+ coingecko_id: '',
251
+ decimals: 6,
252
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDA.svg',
253
+ project_url: 'https://argo.fi/',
254
+ token_type: {
255
+ type: '0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA',
256
+ account_address: '0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc',
257
+ module_name: 'usda',
258
+ struct_name: 'USDA',
259
+ },
260
+ extensions: {
261
+ data: [['bridge', 'native']],
262
+ },
263
+ unique_index: 351,
264
+ source: 'native',
265
+ permissioned_listing: true,
266
+ hippo_symbol: 'USDA',
267
+ pancake_symbol: 'USDA',
268
+ },
269
+ {
270
+ name: 'APass Coin',
271
+ symbol: 'APC',
272
+ official_symbol: 'APC',
273
+ coingecko_id: '',
274
+ decimals: 8,
275
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/APC.svg',
276
+ project_url: 'https://aptpp.com',
277
+ token_type: {
278
+ type: '0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb::apcoin::ApCoin',
279
+ account_address: '0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb',
280
+ module_name: 'apcoin',
281
+ struct_name: 'ApCoin',
282
+ },
283
+ extensions: {
284
+ data: [['bridge', 'native']],
285
+ },
286
+ unique_index: 392,
287
+ source: 'native',
288
+ hippo_symbol: 'APC',
289
+ pancake_symbol: 'APC',
290
+ permissioned_listing: false,
291
+ },
292
+ {
293
+ name: 'PancakeSwap Token',
294
+ symbol: 'CAKE',
295
+ official_symbol: 'CAKE',
296
+ coingecko_id: 'pancakeswap-token',
297
+ decimals: 8,
298
+ logo_url: 'https://pancakeswap.finance/images/tokens/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82.svg',
299
+ project_url: 'https://pancakeswap.finance/',
300
+ token_type: {
301
+ type: '0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT',
302
+ account_address: '0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6',
303
+ module_name: 'oft',
304
+ struct_name: 'CakeOFT',
305
+ },
306
+ extensions: {
307
+ data: [['bridge', 'native']],
308
+ },
309
+ unique_index: 397,
310
+ source: 'native',
311
+ permissioned_listing: true,
312
+ hippo_symbol: 'CAKE',
313
+ pancake_symbol: 'CAKE',
314
+ },
315
+ {
316
+ name: 'EON',
317
+ symbol: 'EON',
318
+ official_symbol: 'EON',
319
+ coingecko_id: '',
320
+ decimals: 8,
321
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/EON.svg',
322
+ project_url: 'https://eonlabz.com/',
323
+ token_type: {
324
+ type: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef::EONcoin::EONCoin',
325
+ account_address: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef',
326
+ module_name: 'EONcoin',
327
+ struct_name: 'EONCoin',
328
+ },
329
+ extensions: {
330
+ data: [['bridge', 'native']],
331
+ },
332
+ unique_index: 477,
333
+ source: 'native',
334
+ hippo_symbol: 'EON',
335
+ pancake_symbol: 'EON',
336
+ permissioned_listing: false,
337
+ },
338
+ {
339
+ name: 'Mojito',
340
+ symbol: 'MOJO',
341
+ official_symbol: 'MOJO',
342
+ coingecko_id: 'mojito',
343
+ decimals: 8,
344
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/MOJO.svg',
345
+ project_url: 'https://www.mojito.markets/',
346
+ token_type: {
347
+ type: '0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO',
348
+ account_address: '0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4',
349
+ module_name: 'coin',
350
+ struct_name: 'MOJO',
351
+ },
352
+ extensions: {
353
+ data: [['bridge', 'native']],
354
+ },
355
+ unique_index: 551,
356
+ source: 'native',
357
+ hippo_symbol: 'MOJO',
358
+ pancake_symbol: 'MOJO',
359
+ permissioned_listing: false,
360
+ },
361
+ {
362
+ name: 'USD Coin',
363
+ symbol: 'devUSDC',
364
+ official_symbol: 'USDC',
365
+ coingecko_id: 'usd-coin',
366
+ decimals: 8,
367
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.webp',
368
+ project_url: 'project_url',
369
+ token_type: {
370
+ type: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68::devnet_coins::DevnetUSDC',
371
+ account_address: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68',
372
+ module_name: 'devnet_coins',
373
+ struct_name: 'DevnetUSDC',
374
+ },
375
+ extensions: {
376
+ data: [],
377
+ },
378
+ unique_index: 553,
379
+ source: 'native',
380
+ hippo_symbol: 'devUSDC',
381
+ pancake_symbol: 'devUSDC',
382
+ permissioned_listing: false,
383
+ },
384
+ {
385
+ name: 'Doglaika Coin',
386
+ symbol: 'DLC',
387
+ official_symbol: 'DLC',
388
+ coingecko_id: 'doglaikacoin',
389
+ decimals: 8,
390
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DLC.svg',
391
+ project_url: 'http://linktr.ee/doglaikacoin',
392
+ token_type: {
393
+ type: '0x84edd115c901709ef28f3cb66a82264ba91bfd24789500b6fd34ab9e8888e272::coin::DLC',
394
+ account_address: '0x84edd115c901709ef28f3cb66a82264ba91bfd24789500b6fd34ab9e8888e272',
395
+ module_name: 'coin',
396
+ struct_name: 'DLC',
397
+ },
398
+ extensions: {
399
+ data: [['bridge', 'native']],
400
+ },
401
+ unique_index: 591,
402
+ source: 'native',
403
+ permissioned_listing: true,
404
+ hippo_symbol: 'DLC',
405
+ pancake_symbol: 'DLC',
406
+ },
407
+ {
408
+ name: 'Bitcoin',
409
+ symbol: 'devBTC',
410
+ official_symbol: 'BTC',
411
+ coingecko_id: 'bitcoin',
412
+ decimals: 8,
413
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BTC.webp',
414
+ project_url: 'project_url',
415
+ token_type: {
416
+ type: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68::devnet_coins::DevnetBTC',
417
+ account_address: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68',
418
+ module_name: 'devnet_coins',
419
+ struct_name: 'DevnetBTC',
420
+ },
421
+ extensions: {
422
+ data: [],
423
+ },
424
+ unique_index: 662,
425
+ source: 'native',
426
+ hippo_symbol: 'devBTC',
427
+ pancake_symbol: 'devBTC',
428
+ permissioned_listing: false,
429
+ },
430
+ {
431
+ name: 'The People',
432
+ symbol: 'People',
433
+ official_symbol: 'People',
434
+ coingecko_id: '',
435
+ decimals: 6,
436
+ logo_url: 'https://raw.githubusercontent.com/ThePeopleAPT/the_peoplemove/main/Logo.png',
437
+ project_url: 'https://thepeopleapt.xyz/',
438
+ token_type: {
439
+ type: '0x5a1e84cdd217034d764abb91bf20aa0536c5a8c900831a37b393fe3af98c3f55::thepeoplecoin::The_People',
440
+ account_address: '0x5a1e84cdd217034d764abb91bf20aa0536c5a8c900831a37b393fe3af98c3f55',
441
+ module_name: 'thepeoplecoin',
442
+ struct_name: 'The_People',
443
+ },
444
+ extensions: {
445
+ data: [['bridge', 'native']],
446
+ },
447
+ unique_index: 691,
448
+ source: 'native',
449
+ hippo_symbol: 'People',
450
+ pancake_symbol: 'People',
451
+ permissioned_listing: false,
452
+ },
453
+ {
454
+ name: 'AnimeSwap Coin',
455
+ symbol: 'ANI',
456
+ official_symbol: 'ANI',
457
+ coingecko_id: '',
458
+ decimals: 8,
459
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ANI.png',
460
+ project_url: 'http://animeswap.org/',
461
+ token_type: {
462
+ type: '0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c::AnimeCoin::ANI',
463
+ account_address: '0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c',
464
+ module_name: 'AnimeCoin',
465
+ struct_name: 'ANI',
466
+ },
467
+ extensions: {
468
+ data: [['bridge', 'native']],
469
+ },
470
+ unique_index: 712,
471
+ source: 'native',
472
+ permissioned_listing: true,
473
+ hippo_symbol: 'ANI',
474
+ pancake_symbol: 'ANI',
475
+ },
476
+ {
477
+ name: 'Abel Coin',
478
+ symbol: 'ABEL',
479
+ official_symbol: 'ABEL',
480
+ coingecko_id: '',
481
+ decimals: 8,
482
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ABEL.svg',
483
+ project_url: 'https://www.abelfinance.xyz/',
484
+ token_type: {
485
+ type: '0x7c0322595a73b3fc53bb166f5783470afeb1ed9f46d1176db62139991505dc61::abel_coin::AbelCoin',
486
+ account_address: '0x7c0322595a73b3fc53bb166f5783470afeb1ed9f46d1176db62139991505dc61',
487
+ module_name: 'abel_coin',
488
+ struct_name: 'AbelCoin',
489
+ },
490
+ extensions: {
491
+ data: [['bridge', 'native']],
492
+ },
493
+ unique_index: 790,
494
+ source: 'native',
495
+ permissioned_listing: true,
496
+ hippo_symbol: 'ABEL',
497
+ pancake_symbol: 'ABEL',
498
+ },
499
+ {
500
+ name: 'SPRING',
501
+ symbol: 'SPRING',
502
+ official_symbol: 'SPRING',
503
+ coingecko_id: 'spring',
504
+ decimals: 9,
505
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/SPRING.webp',
506
+ project_url: 'https://springers.co.in/',
507
+ token_type: {
508
+ type: '0x7bdeaba6f037caf06bb5b2d57df9ee03a07e2a9df45b338ef3deb44d16c01d10::spring_coin::Spring_Coin',
509
+ account_address: '0x7bdeaba6f037caf06bb5b2d57df9ee03a07e2a9df45b338ef3deb44d16c01d10',
510
+ module_name: 'spring_coin',
511
+ struct_name: 'Spring_Coin',
512
+ },
513
+ extensions: {
514
+ data: [],
515
+ },
516
+ unique_index: 797,
517
+ source: 'native',
518
+ hippo_symbol: 'SPRING',
519
+ pancake_symbol: 'SPRING',
520
+ permissioned_listing: false,
521
+ },
522
+ {
523
+ name: 'BlueMove',
524
+ symbol: 'MOVE',
525
+ official_symbol: 'MOVE',
526
+ coingecko_id: 'bluemove',
527
+ decimals: 8,
528
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/MOVE.svg',
529
+ project_url: 'https://bluemove.net/',
530
+ token_type: {
531
+ type: '0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb::move_coin::MoveCoin',
532
+ account_address: '0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb',
533
+ module_name: 'move_coin',
534
+ struct_name: 'MoveCoin',
535
+ },
536
+ extensions: {
537
+ data: [],
538
+ },
539
+ unique_index: 912,
540
+ source: 'native',
541
+ permissioned_listing: true,
542
+ hippo_symbol: 'MOVE',
543
+ pancake_symbol: 'MOVE',
544
+ },
545
+ {
546
+ name: 'Tether',
547
+ symbol: 'devUSDT',
548
+ official_symbol: 'USDT',
549
+ coingecko_id: 'tether',
550
+ decimals: 8,
551
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDT.webp',
552
+ project_url: 'project_url',
553
+ token_type: {
554
+ type: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68::devnet_coins::DevnetUSDT',
555
+ account_address: '0x498d8926f16eb9ca90cab1b3a26aa6f97a080b3fcbe6e83ae150b7243a00fb68',
556
+ module_name: 'devnet_coins',
557
+ struct_name: 'DevnetUSDT',
558
+ },
559
+ extensions: {
560
+ data: [],
561
+ },
562
+ unique_index: 923,
563
+ source: 'native',
564
+ hippo_symbol: 'devUSDT',
565
+ pancake_symbol: 'devUSDT',
566
+ permissioned_listing: false,
567
+ },
568
+ {
569
+ name: 'AptosLaunch Token',
570
+ symbol: 'ALT',
571
+ official_symbol: 'ALT',
572
+ coingecko_id: '',
573
+ decimals: 8,
574
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/Aptoslaunchlogob.svg',
575
+ project_url: 'https://aptoslaunch.io',
576
+ token_type: {
577
+ type: '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::aptos_launch_token::AptosLaunchToken',
578
+ account_address: '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e',
579
+ module_name: 'aptos_launch_token',
580
+ struct_name: 'AptosLaunchToken',
581
+ },
582
+ extensions: {
583
+ data: [['bridge', 'native']],
584
+ },
585
+ unique_index: 928,
586
+ source: 'native',
587
+ permissioned_listing: true,
588
+ hippo_symbol: 'ALT',
589
+ pancake_symbol: 'ALT',
590
+ },
591
+ {
592
+ name: 'AlpacaINU Coin',
593
+ symbol: 'ALI',
594
+ official_symbol: 'ALI',
595
+ coingecko_id: '',
596
+ decimals: 6,
597
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ALI.svg',
598
+ project_url: 'https://twitter.com/AlpacaINU',
599
+ token_type: {
600
+ type: '0x27975005fd8b836a905dc7f81c51f89e76091a4d0c4d694265f6eae0c05cb400::proton_a5d::PROTON_E54',
601
+ account_address: '0x27975005fd8b836a905dc7f81c51f89e76091a4d0c4d694265f6eae0c05cb400',
602
+ module_name: 'coin',
603
+ struct_name: 'ALI',
604
+ },
605
+ extensions: {
606
+ data: [],
607
+ },
608
+ unique_index: 937,
609
+ source: 'native',
610
+ hippo_symbol: 'ALI',
611
+ pancake_symbol: 'ALI',
612
+ permissioned_listing: false,
613
+ },
614
+ {
615
+ name: 'Tortuga Staked Aptos',
616
+ symbol: 'tAPT',
617
+ official_symbol: 'tAPT',
618
+ coingecko_id: 'tortuga-staked-aptos',
619
+ decimals: 8,
620
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/TortugaStakedAptos.png',
621
+ project_url: 'https://tortuga.finance/',
622
+ token_type: {
623
+ type: '0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin',
624
+ account_address: '0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114',
625
+ module_name: 'staked_aptos_coin',
626
+ struct_name: 'StakedAptosCoin',
627
+ },
628
+ extensions: {
629
+ data: [['bridge', 'native']],
630
+ },
631
+ unique_index: 952,
632
+ source: 'native',
633
+ permissioned_listing: true,
634
+ hippo_symbol: 'tAPT',
635
+ pancake_symbol: 'tAPT',
636
+ },
637
+ {
638
+ name: 'AptSwap Governance Token',
639
+ symbol: 'APTSWAP',
640
+ official_symbol: 'APTSWAP',
641
+ coingecko_id: '',
642
+ decimals: 8,
643
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/AptSwap.svg',
644
+ project_url: 'http://aptswap.io',
645
+ token_type: {
646
+ type: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::AptSwap::AptSwapGovernance',
647
+ account_address: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf',
648
+ module_name: 'AptSwap',
649
+ struct_name: 'AptSwapGovernance',
650
+ },
651
+ extensions: {
652
+ data: [['bridge', 'native']],
653
+ },
654
+ unique_index: 971,
655
+ source: 'native',
656
+ hippo_symbol: 'APTSWAP',
657
+ pancake_symbol: 'APTSWAP',
658
+ permissioned_listing: false,
659
+ },
660
+ {
661
+ name: 'USD Coin (Wormhole)',
662
+ symbol: 'USDC',
663
+ official_symbol: 'USDC',
664
+ coingecko_id: 'usd-coin',
665
+ decimals: 6,
666
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
667
+ project_url: '',
668
+ token_type: {
669
+ type: '0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T',
670
+ account_address: '0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea',
671
+ module_name: 'coin',
672
+ struct_name: 'T',
673
+ },
674
+ extensions: {
675
+ data: [['bridge', 'wormhole']],
676
+ },
677
+ unique_index: 2001,
678
+ source: 'wormhole',
679
+ permissioned_listing: true,
680
+ hippo_symbol: 'wUSDC',
681
+ pancake_symbol: 'whUSDC',
682
+ },
683
+ {
684
+ name: 'Tether USD (Wormhole)',
685
+ symbol: 'USDT',
686
+ official_symbol: 'USDT',
687
+ coingecko_id: 'tether',
688
+ decimals: 6,
689
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDT.svg',
690
+ project_url: '',
691
+ token_type: {
692
+ type: '0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T',
693
+ account_address: '0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852',
694
+ module_name: 'coin',
695
+ struct_name: 'T',
696
+ },
697
+ extensions: {
698
+ data: [['bridge', 'wormhole']],
699
+ },
700
+ unique_index: 2002,
701
+ source: 'wormhole',
702
+ permissioned_listing: true,
703
+ hippo_symbol: 'wUSDT',
704
+ pancake_symbol: 'whUSDT',
705
+ },
706
+ {
707
+ name: 'Wrapped BTC (Wormhole)',
708
+ symbol: 'WBTC',
709
+ official_symbol: 'WBTC',
710
+ coingecko_id: 'wrapped-bitcoin',
711
+ decimals: 8,
712
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BTC.webp',
713
+ project_url: '',
714
+ token_type: {
715
+ type: '0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T',
716
+ account_address: '0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e',
717
+ module_name: 'coin',
718
+ struct_name: 'T',
719
+ },
720
+ extensions: {
721
+ data: [['bridge', 'wormhole']],
722
+ },
723
+ unique_index: 2003,
724
+ source: 'wormhole',
725
+ permissioned_listing: true,
726
+ hippo_symbol: 'wWBTC',
727
+ pancake_symbol: 'whWBTC',
728
+ },
729
+ {
730
+ name: 'Wrapped Ether (Wormhole)',
731
+ symbol: 'WETH',
732
+ official_symbol: 'WETH',
733
+ coingecko_id: 'weth',
734
+ decimals: 8,
735
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/WETH.svg',
736
+ project_url: '',
737
+ token_type: {
738
+ type: '0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T',
739
+ account_address: '0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb',
740
+ module_name: 'coin',
741
+ struct_name: 'T',
742
+ },
743
+ extensions: {
744
+ data: [['bridge', 'wormhole']],
745
+ },
746
+ unique_index: 2004,
747
+ source: 'wormhole',
748
+ permissioned_listing: true,
749
+ hippo_symbol: 'wWETH',
750
+ pancake_symbol: 'whWETH',
751
+ },
752
+ {
753
+ name: 'Dai Stablecoin (Wormhole)',
754
+ symbol: 'DAI',
755
+ official_symbol: 'DAI',
756
+ coingecko_id: 'dai',
757
+ decimals: 8,
758
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DAI.webp',
759
+ project_url: '',
760
+ token_type: {
761
+ type: '0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T',
762
+ account_address: '0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c',
763
+ module_name: 'coin',
764
+ struct_name: 'T',
765
+ },
766
+ extensions: {
767
+ data: [['bridge', 'wormhole']],
768
+ },
769
+ unique_index: 2005,
770
+ source: 'wormhole',
771
+ permissioned_listing: true,
772
+ hippo_symbol: 'wDAI',
773
+ pancake_symbol: 'whDAI',
774
+ },
775
+ {
776
+ name: 'BUSD Token (Wormhole)',
777
+ symbol: 'BUSD',
778
+ official_symbol: 'BUSD',
779
+ coingecko_id: 'binance-usd',
780
+ decimals: 8,
781
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BUSD.webp',
782
+ project_url: '',
783
+ token_type: {
784
+ type: '0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T',
785
+ account_address: '0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75',
786
+ module_name: 'coin',
787
+ struct_name: 'T',
788
+ },
789
+ extensions: {
790
+ data: [['bridge', 'wormhole']],
791
+ },
792
+ unique_index: 2006,
793
+ source: 'wormhole',
794
+ permissioned_listing: true,
795
+ hippo_symbol: 'wBUSD',
796
+ pancake_symbol: 'whBUSD',
797
+ },
798
+ {
799
+ name: 'Wrapped BNB (Wormhole)',
800
+ symbol: 'WBNB',
801
+ official_symbol: 'WBNB',
802
+ coingecko_id: 'binancecoin',
803
+ decimals: 8,
804
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BNB.webp',
805
+ project_url: '',
806
+ token_type: {
807
+ type: '0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T',
808
+ account_address: '0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86',
809
+ module_name: 'coin',
810
+ struct_name: 'T',
811
+ },
812
+ extensions: {
813
+ data: [['bridge', 'wormhole']],
814
+ },
815
+ unique_index: 2009,
816
+ source: 'wormhole',
817
+ permissioned_listing: true,
818
+ hippo_symbol: 'wWBNB',
819
+ pancake_symbol: 'whWBNB',
820
+ },
821
+ {
822
+ name: 'SOL (Wormhole)',
823
+ symbol: 'SOL',
824
+ official_symbol: 'SOL',
825
+ coingecko_id: 'solana',
826
+ decimals: 8,
827
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/SOL.webp',
828
+ project_url: '',
829
+ token_type: {
830
+ type: '0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T',
831
+ account_address: '0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13',
832
+ module_name: 'coin',
833
+ struct_name: 'T',
834
+ },
835
+ extensions: {
836
+ data: [['bridge', 'wormhole-solana']],
837
+ },
838
+ unique_index: 2011,
839
+ source: 'wormhole',
840
+ permissioned_listing: true,
841
+ hippo_symbol: 'wSOL',
842
+ pancake_symbol: 'whSOL',
843
+ },
844
+ {
845
+ name: 'Tether USD',
846
+ symbol: 'USDTbs',
847
+ official_symbol: 'USDT',
848
+ coingecko_id: 'tether',
849
+ decimals: 8,
850
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDT.svg',
851
+ project_url: '',
852
+ token_type: {
853
+ type: '0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T',
854
+ account_address: '0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed',
855
+ module_name: 'coin',
856
+ struct_name: 'T',
857
+ },
858
+ extensions: {
859
+ data: [['bridge', 'wormhole-bsc']],
860
+ },
861
+ unique_index: 2050,
862
+ source: 'wormhole-bsc',
863
+ permissioned_listing: true,
864
+ hippo_symbol: 'USDTbs',
865
+ pancake_symbol: 'USDTbs',
866
+ },
867
+ {
868
+ name: 'USD Coin (Wormhole Solana)',
869
+ symbol: 'USDCso',
870
+ official_symbol: 'USDC',
871
+ coingecko_id: '',
872
+ decimals: 6,
873
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
874
+ project_url: '',
875
+ token_type: {
876
+ type: '0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T',
877
+ account_address: '0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080',
878
+ module_name: 'coin',
879
+ struct_name: 'T',
880
+ },
881
+ extensions: {
882
+ data: [['bridge', 'wormhole-solana']],
883
+ },
884
+ unique_index: 2113,
885
+ source: 'wormhole-solana',
886
+ permissioned_listing: true,
887
+ hippo_symbol: 'USDCso',
888
+ pancake_symbol: 'USDCso',
889
+ },
890
+ {
891
+ name: 'USD Coin (Wormhole Polygon)',
892
+ symbol: 'USDCpo',
893
+ official_symbol: 'USDC',
894
+ coingecko_id: 'usd-coin',
895
+ decimals: 6,
896
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
897
+ project_url: '',
898
+ token_type: {
899
+ type: '0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e::coin::T',
900
+ account_address: '0xc7160b1c2415d19a88add188ec726e62aab0045f0aed798106a2ef2994a9101e',
901
+ module_name: 'coin',
902
+ struct_name: 'T',
903
+ },
904
+ extensions: {
905
+ data: [['bridge', 'wormhole-polygon']],
906
+ },
907
+ unique_index: 2171,
908
+ source: 'wormhole-polygon',
909
+ permissioned_listing: true,
910
+ hippo_symbol: 'USDCpo',
911
+ pancake_symbol: 'USDCpo',
912
+ },
913
+ {
914
+ name: 'USD Coin (Wormhole, BSC)',
915
+ symbol: 'USDCbs',
916
+ official_symbol: 'USDC',
917
+ coingecko_id: 'usd-coin',
918
+ decimals: 8,
919
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
920
+ project_url: '',
921
+ token_type: {
922
+ type: '0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T',
923
+ account_address: '0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595',
924
+ module_name: 'coin',
925
+ struct_name: 'T',
926
+ },
927
+ extensions: {
928
+ data: [['bridge', 'wormhole-bsc']],
929
+ },
930
+ unique_index: 2202,
931
+ source: 'wormhole-bsc',
932
+ permissioned_listing: true,
933
+ hippo_symbol: 'USDCbs',
934
+ pancake_symbol: 'USDCbs',
935
+ },
936
+ {
937
+ name: 'USD Coin (Wormhole Avalanche)',
938
+ symbol: 'USDCav',
939
+ official_symbol: 'USDC',
940
+ coingecko_id: 'usd-coin',
941
+ decimals: 6,
942
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
943
+ project_url: '',
944
+ token_type: {
945
+ type: '0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T',
946
+ account_address: '0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff',
947
+ module_name: 'coin',
948
+ struct_name: 'T',
949
+ },
950
+ extensions: {
951
+ data: [['bridge', 'wormhole-avalanche']],
952
+ },
953
+ unique_index: 2304,
954
+ source: 'wormhole-avalanche',
955
+ permissioned_listing: true,
956
+ hippo_symbol: 'USDCav',
957
+ pancake_symbol: 'USDCav',
958
+ },
959
+ {
960
+ name: 'Wrapped AVAX (Wormhole)',
961
+ symbol: 'WAVAX',
962
+ official_symbol: 'WAVAX',
963
+ coingecko_id: 'avalanche-2',
964
+ decimals: 8,
965
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/AVAX.webp',
966
+ project_url: '',
967
+ token_type: {
968
+ type: '0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T',
969
+ account_address: '0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f',
970
+ module_name: 'coin',
971
+ struct_name: 'T',
972
+ },
973
+ extensions: {
974
+ data: [['bridge', 'wormhole']],
975
+ },
976
+ unique_index: 2332,
977
+ source: 'wormhole',
978
+ permissioned_listing: true,
979
+ hippo_symbol: 'wWAVAX',
980
+ pancake_symbol: 'whWAVAX',
981
+ },
982
+ {
983
+ name: 'SWEAT',
984
+ symbol: 'SWEAT',
985
+ official_symbol: 'SWEAT',
986
+ coingecko_id: 'sweatcoin',
987
+ decimals: 8,
988
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/SWEAT.webp',
989
+ project_url: '',
990
+ token_type: {
991
+ type: '0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693::coin::T',
992
+ account_address: '0x9aa4c03344444b53f4d9b1bca229ed2ac47504e3ea6cd0683ebdc0c5ecefd693',
993
+ module_name: 'coin',
994
+ struct_name: 'T',
995
+ },
996
+ extensions: {
997
+ data: [['bridge', 'wormhole']],
998
+ },
999
+ unique_index: 2409,
1000
+ source: 'wormhole',
1001
+ permissioned_listing: true,
1002
+ hippo_symbol: 'wSWEAT',
1003
+ pancake_symbol: 'whSWEAT',
1004
+ },
1005
+ {
1006
+ name: 'NEAR (Wormhole)',
1007
+ symbol: 'NEAR',
1008
+ official_symbol: 'NEAR',
1009
+ coingecko_id: 'near',
1010
+ decimals: 8,
1011
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/NEAR.webp',
1012
+ project_url: '',
1013
+ token_type: {
1014
+ type: '0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T',
1015
+ account_address: '0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa',
1016
+ module_name: 'coin',
1017
+ struct_name: 'T',
1018
+ },
1019
+ extensions: {
1020
+ data: [['bridge', 'wormhole']],
1021
+ },
1022
+ unique_index: 2492,
1023
+ source: 'wormhole',
1024
+ permissioned_listing: true,
1025
+ hippo_symbol: 'wNEAR',
1026
+ pancake_symbol: 'whNEAR',
1027
+ },
1028
+ {
1029
+ name: 'Nexum Coin',
1030
+ symbol: 'NEXM',
1031
+ official_symbol: 'NEXM',
1032
+ coingecko_id: 'nexum',
1033
+ decimals: 8,
1034
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/NEXM.webp',
1035
+ project_url: '',
1036
+ token_type: {
1037
+ type: '0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T',
1038
+ account_address: '0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32',
1039
+ module_name: 'coin',
1040
+ struct_name: 'T',
1041
+ },
1042
+ extensions: {
1043
+ data: [['bridge', 'wormhole']],
1044
+ },
1045
+ unique_index: 2527,
1046
+ source: 'wormhole',
1047
+ permissioned_listing: true,
1048
+ hippo_symbol: 'wNEXM',
1049
+ pancake_symbol: 'whNEXM',
1050
+ },
1051
+ {
1052
+ name: 'SushiToken (Wormhole)',
1053
+ symbol: 'SUSHI',
1054
+ official_symbol: 'SUSHI',
1055
+ coingecko_id: 'sushi',
1056
+ decimals: 8,
1057
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/SUSHI.webp',
1058
+ project_url: '',
1059
+ token_type: {
1060
+ type: '0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T',
1061
+ account_address: '0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689',
1062
+ module_name: 'coin',
1063
+ struct_name: 'T',
1064
+ },
1065
+ extensions: {
1066
+ data: [['bridge', 'wormhole']],
1067
+ },
1068
+ unique_index: 2700,
1069
+ source: 'wormhole',
1070
+ permissioned_listing: true,
1071
+ hippo_symbol: 'wSUSHI',
1072
+ pancake_symbol: 'whSUSHI',
1073
+ },
1074
+ {
1075
+ name: 'Celo (Wormhole)',
1076
+ symbol: 'CELO',
1077
+ official_symbol: 'CELO',
1078
+ coingecko_id: 'celo',
1079
+ decimals: 8,
1080
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/CELO.webp',
1081
+ project_url: '',
1082
+ token_type: {
1083
+ type: '0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112::coin::T',
1084
+ account_address: '0xac0c3c35d50f6ef00e3b4db6998732fe9ed6331384925fe8ec95fcd7745a9112',
1085
+ module_name: 'coin',
1086
+ struct_name: 'T',
1087
+ },
1088
+ extensions: {
1089
+ data: [['bridge', 'wormhole']],
1090
+ },
1091
+ unique_index: 2801,
1092
+ source: 'wormhole',
1093
+ permissioned_listing: true,
1094
+ hippo_symbol: 'wCELO',
1095
+ pancake_symbol: 'whCELO',
1096
+ },
1097
+ {
1098
+ name: 'FTX Token',
1099
+ symbol: 'FTT',
1100
+ official_symbol: 'FTT',
1101
+ coingecko_id: 'ftx-token',
1102
+ decimals: 8,
1103
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/FTXToken.webp',
1104
+ project_url: '',
1105
+ token_type: {
1106
+ type: '0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T',
1107
+ account_address: '0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b',
1108
+ module_name: 'coin',
1109
+ struct_name: 'T',
1110
+ },
1111
+ extensions: {
1112
+ data: [['bridge', 'wormhole']],
1113
+ },
1114
+ unique_index: 2971,
1115
+ source: 'wormhole',
1116
+ permissioned_listing: true,
1117
+ hippo_symbol: 'wFTT',
1118
+ pancake_symbol: 'whFTT',
1119
+ },
1120
+ {
1121
+ name: 'Chain',
1122
+ symbol: 'XCN',
1123
+ official_symbol: 'XCN',
1124
+ coingecko_id: 'chain-2',
1125
+ decimals: 8,
1126
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/XCN.webp',
1127
+ project_url: '',
1128
+ token_type: {
1129
+ type: '0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5::coin::T',
1130
+ account_address: '0xcefd39b563951a9ec2670aa57086f9adb3493671368ea60ff99e0bc98f697bb5',
1131
+ module_name: 'coin',
1132
+ struct_name: 'T',
1133
+ },
1134
+ extensions: {
1135
+ data: [['bridge', 'wormhole']],
1136
+ },
1137
+ unique_index: 2991,
1138
+ source: 'wormhole',
1139
+ permissioned_listing: true,
1140
+ hippo_symbol: 'wXCN',
1141
+ pancake_symbol: 'whXCN',
1142
+ },
1143
+ {
1144
+ name: 'USD Coin (LayerZero)',
1145
+ symbol: 'zUSDC',
1146
+ official_symbol: 'USDC',
1147
+ coingecko_id: 'usd-coin',
1148
+ decimals: 6,
1149
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
1150
+ project_url: '',
1151
+ token_type: {
1152
+ type: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC',
1153
+ account_address: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa',
1154
+ module_name: 'asset',
1155
+ struct_name: 'USDC',
1156
+ },
1157
+ extensions: {
1158
+ data: [['bridge', 'layerzero']],
1159
+ },
1160
+ unique_index: 3001,
1161
+ source: 'layerzero',
1162
+ permissioned_listing: true,
1163
+ hippo_symbol: 'zUSDC',
1164
+ pancake_symbol: 'lzUSDC',
1165
+ },
1166
+ {
1167
+ name: 'USD Tether (LayerZero)',
1168
+ symbol: 'zUSDT',
1169
+ official_symbol: 'USDT',
1170
+ coingecko_id: 'tether',
1171
+ decimals: 6,
1172
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDT.svg',
1173
+ project_url: '',
1174
+ token_type: {
1175
+ type: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT',
1176
+ account_address: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa',
1177
+ module_name: 'asset',
1178
+ struct_name: 'USDT',
1179
+ },
1180
+ extensions: {
1181
+ data: [['bridge', 'layerzero']],
1182
+ },
1183
+ unique_index: 3002,
1184
+ source: 'layerzero',
1185
+ permissioned_listing: true,
1186
+ hippo_symbol: 'zUSDT',
1187
+ pancake_symbol: 'lzUSDT',
1188
+ },
1189
+ {
1190
+ name: 'Wrapped Ether (LayerZero)',
1191
+ symbol: 'zWETH',
1192
+ official_symbol: 'WETH',
1193
+ coingecko_id: 'weth',
1194
+ decimals: 6,
1195
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/WETH.svg',
1196
+ project_url: '',
1197
+ token_type: {
1198
+ type: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH',
1199
+ account_address: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa',
1200
+ module_name: 'asset',
1201
+ struct_name: 'WETH',
1202
+ },
1203
+ extensions: {
1204
+ data: [['bridge', 'layerzero']],
1205
+ },
1206
+ unique_index: 3004,
1207
+ source: 'layerzero',
1208
+ permissioned_listing: true,
1209
+ hippo_symbol: 'zWETH',
1210
+ pancake_symbol: 'lzWETH',
1211
+ },
1212
+ {
1213
+ name: 'USD Coin (Celer)',
1214
+ symbol: 'ceUSDC',
1215
+ official_symbol: 'USDC',
1216
+ coingecko_id: 'usd-coin',
1217
+ decimals: 6,
1218
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDC.svg',
1219
+ project_url: 'https://celer.network',
1220
+ token_type: {
1221
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin',
1222
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1223
+ module_name: 'celer_coin_manager',
1224
+ struct_name: 'UsdcCoin',
1225
+ },
1226
+ extensions: {
1227
+ data: [['bridge', 'celer']],
1228
+ },
1229
+ unique_index: 4001,
1230
+ source: 'celer',
1231
+ permissioned_listing: true,
1232
+ hippo_symbol: 'ceUSDC',
1233
+ pancake_symbol: 'ceUSDC',
1234
+ },
1235
+ {
1236
+ name: 'Tether USD (Celer)',
1237
+ symbol: 'ceUSDT',
1238
+ official_symbol: 'USDT',
1239
+ coingecko_id: 'tether',
1240
+ decimals: 6,
1241
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/USDT.svg',
1242
+ project_url: 'https://celer.network',
1243
+ token_type: {
1244
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin',
1245
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1246
+ module_name: 'celer_coin_manager',
1247
+ struct_name: 'UsdtCoin',
1248
+ },
1249
+ extensions: {
1250
+ data: [['bridge', 'celer']],
1251
+ },
1252
+ unique_index: 4002,
1253
+ source: 'celer',
1254
+ permissioned_listing: true,
1255
+ hippo_symbol: 'ceUSDT',
1256
+ pancake_symbol: 'ceUSDT',
1257
+ },
1258
+ {
1259
+ name: 'Wrapped BTC (Celer)',
1260
+ symbol: 'ceWBTC',
1261
+ official_symbol: 'WBTC',
1262
+ coingecko_id: 'wrapped-bitcoin',
1263
+ decimals: 8,
1264
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/WBTC.svg',
1265
+ project_url: 'https://celer.network',
1266
+ token_type: {
1267
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin',
1268
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1269
+ module_name: 'celer_coin_manager',
1270
+ struct_name: 'WbtcCoin',
1271
+ },
1272
+ extensions: {
1273
+ data: [['bridge', 'celer']],
1274
+ },
1275
+ unique_index: 4003,
1276
+ source: 'celer',
1277
+ permissioned_listing: true,
1278
+ hippo_symbol: 'ceWBTC',
1279
+ pancake_symbol: 'ceWBTC',
1280
+ },
1281
+ {
1282
+ name: 'Wrapped Ether (Celer)',
1283
+ symbol: 'ceWETH',
1284
+ official_symbol: 'WETH',
1285
+ coingecko_id: 'ethereum',
1286
+ decimals: 8,
1287
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/WETH.svg',
1288
+ project_url: 'https://celer.network',
1289
+ token_type: {
1290
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin',
1291
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1292
+ module_name: 'celer_coin_manager',
1293
+ struct_name: 'WethCoin',
1294
+ },
1295
+ extensions: {
1296
+ data: [['bridge', 'celer']],
1297
+ },
1298
+ unique_index: 4004,
1299
+ source: 'celer',
1300
+ permissioned_listing: true,
1301
+ hippo_symbol: 'ceWETH',
1302
+ pancake_symbol: 'ceWETH',
1303
+ },
1304
+ {
1305
+ name: 'Dai Stablecoin (Celer)',
1306
+ symbol: 'ceDAI',
1307
+ official_symbol: 'DAI',
1308
+ coingecko_id: 'dai',
1309
+ decimals: 8,
1310
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/DAI.svg',
1311
+ project_url: 'https://celer.network',
1312
+ token_type: {
1313
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin',
1314
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1315
+ module_name: 'celer_coin_manager',
1316
+ struct_name: 'DaiCoin',
1317
+ },
1318
+ extensions: {
1319
+ data: [['bridge', 'celer']],
1320
+ },
1321
+ unique_index: 4005,
1322
+ source: 'celer',
1323
+ permissioned_listing: true,
1324
+ hippo_symbol: 'ceDAI',
1325
+ pancake_symbol: 'ceDAI',
1326
+ },
1327
+ {
1328
+ name: 'Binance Coin (Celer)',
1329
+ symbol: 'ceBNB',
1330
+ official_symbol: 'BNB',
1331
+ coingecko_id: 'binancecoin',
1332
+ decimals: 8,
1333
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BNB.svg',
1334
+ project_url: 'https://celer.network',
1335
+ token_type: {
1336
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin',
1337
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1338
+ module_name: 'celer_coin_manager',
1339
+ struct_name: 'BnbCoin',
1340
+ },
1341
+ extensions: {
1342
+ data: [['bridge', 'celer']],
1343
+ },
1344
+ unique_index: 4113,
1345
+ source: 'celer',
1346
+ permissioned_listing: true,
1347
+ hippo_symbol: 'ceBNB',
1348
+ pancake_symbol: 'ceBNB',
1349
+ },
1350
+ {
1351
+ name: 'Binance USD (Celer)',
1352
+ symbol: 'ceBUSD',
1353
+ official_symbol: 'BUSD',
1354
+ coingecko_id: 'binance-usd',
1355
+ decimals: 8,
1356
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/BUSD.svg',
1357
+ project_url: 'https://celer.network',
1358
+ token_type: {
1359
+ type: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin',
1360
+ account_address: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d',
1361
+ module_name: 'celer_coin_manager',
1362
+ struct_name: 'BusdCoin',
1363
+ },
1364
+ extensions: {
1365
+ data: [['bridge', 'celer']],
1366
+ },
1367
+ unique_index: 4119,
1368
+ source: 'celer',
1369
+ permissioned_listing: true,
1370
+ hippo_symbol: 'ceBUSD',
1371
+ pancake_symbol: 'ceBUSD',
1372
+ },
1373
+ {
1374
+ name: 'XBTC',
1375
+ symbol: 'XBTC',
1376
+ official_symbol: 'XBTC',
1377
+ coingecko_id: '',
1378
+ decimals: 8,
1379
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/XBTC.svg',
1380
+ project_url: 'https://github.com/OmniBTC/OmniBridge',
1381
+ token_type: {
1382
+ type: '0x3b0a7c06837e8fbcce41af0e629fdc1f087b06c06ff9e86f81910995288fd7fb::xbtc::XBTC',
1383
+ account_address: '0x3b0a7c06837e8fbcce41af0e629fdc1f087b06c06ff9e86f81910995288fd7fb',
1384
+ module_name: 'xbtc',
1385
+ struct_name: 'XBTC',
1386
+ },
1387
+ extensions: {
1388
+ data: [],
1389
+ },
1390
+ unique_index: 5003,
1391
+ source: 'omnibridge',
1392
+ permissioned_listing: true,
1393
+ hippo_symbol: 'XBTC',
1394
+ pancake_symbol: 'XBTC',
1395
+ },
1396
+ {
1397
+ name: 'Aries Aptos Coin LP Token',
1398
+ symbol: 'ar-APT',
1399
+ official_symbol: 'aAPT',
1400
+ coingecko_id: '',
1401
+ decimals: 8,
1402
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ar-APT.svg',
1403
+ project_url: 'https://ariesmarkets.xyz/',
1404
+ token_type: {
1405
+ type: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0x1::aptos_coin::AptosCoin>',
1406
+ account_address: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3',
1407
+ module_name: 'reserve',
1408
+ struct_name: 'LP<0x1::aptos_coin::AptosCoin>',
1409
+ },
1410
+ extensions: {
1411
+ data: [
1412
+ ['lp', 'aries'],
1413
+ ['bridge', 'native'],
1414
+ ],
1415
+ },
1416
+ unique_index: 15338,
1417
+ source: 'native',
1418
+ permissioned_listing: true,
1419
+ hippo_symbol: 'ar-APT',
1420
+ pancake_symbol: 'ar-APT',
1421
+ },
1422
+ {
1423
+ name: 'Aries Solana (Wormhole) LP Token',
1424
+ symbol: 'ar-SOL',
1425
+ official_symbol: 'aSOL',
1426
+ coingecko_id: '',
1427
+ decimals: 8,
1428
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ar-SOL.svg',
1429
+ project_url: 'https://ariesmarkets.xyz/',
1430
+ token_type: {
1431
+ type: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T>',
1432
+ account_address: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3',
1433
+ module_name: 'reserve',
1434
+ struct_name: 'LP<0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T>',
1435
+ },
1436
+ extensions: {
1437
+ data: [
1438
+ ['lp', 'aries'],
1439
+ ['bridge', 'native'],
1440
+ ],
1441
+ },
1442
+ unique_index: 15339,
1443
+ source: 'native',
1444
+ permissioned_listing: true,
1445
+ hippo_symbol: 'ar-SOL',
1446
+ pancake_symbol: 'ar-SOL',
1447
+ },
1448
+ {
1449
+ name: 'Aries USDC (Layerzero) LP Token',
1450
+ symbol: 'ar-zUSDC',
1451
+ official_symbol: 'aUSDC',
1452
+ coingecko_id: '',
1453
+ decimals: 6,
1454
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ar-USDC.svg',
1455
+ project_url: 'https://ariesmarkets.xyz/',
1456
+ token_type: {
1457
+ type: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC>',
1458
+ account_address: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3',
1459
+ module_name: 'reserve',
1460
+ struct_name: 'LP<0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC>',
1461
+ },
1462
+ extensions: {
1463
+ data: [
1464
+ ['lp', 'aries'],
1465
+ ['bridge', 'native'],
1466
+ ],
1467
+ },
1468
+ unique_index: 15340,
1469
+ source: 'native',
1470
+ permissioned_listing: true,
1471
+ hippo_symbol: 'ar-zUSDC',
1472
+ pancake_symbol: 'ar-zUSDC',
1473
+ },
1474
+ {
1475
+ name: 'Aries USDC (Wormhole) LP Token',
1476
+ symbol: 'ar-USDC',
1477
+ official_symbol: 'aUSDC',
1478
+ coingecko_id: '',
1479
+ decimals: 6,
1480
+ logo_url: 'https://raw.githubusercontent.com/hippospace/aptos-coin-list/main/icons/ar-USDC.svg',
1481
+ project_url: 'https://ariesmarkets.xyz/',
1482
+ token_type: {
1483
+ type: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3::reserve::LP<0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T>',
1484
+ account_address: '0x9770fa9c725cbd97eb50b2be5f7416efdfd1f1554beb0750d4dae4c64e860da3',
1485
+ module_name: 'reserve',
1486
+ struct_name: 'LP<0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T>',
1487
+ },
1488
+ extensions: {
1489
+ data: [
1490
+ ['lp', 'aries'],
1491
+ ['bridge', 'native'],
1492
+ ],
1493
+ },
1494
+ unique_index: 15341,
1495
+ source: 'native',
1496
+ permissioned_listing: true,
1497
+ hippo_symbol: 'ar-USDC',
1498
+ pancake_symbol: 'ar-USDC',
1499
+ },
1500
+ ];
1501
+ //# sourceMappingURL=coin.js.map