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