@sentio/sdk 2.44.7-rc.6 → 2.45.0

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