@sentio/sdk 2.44.7-rc.6 → 2.45.0-rc.1

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