@sentio/sdk 2.41.6 → 2.42.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.
- package/lib/aptos/ext/index.d.ts +1 -0
- package/lib/aptos/ext/index.d.ts.map +1 -1
- package/lib/aptos/ext/index.js +1 -0
- package/lib/aptos/ext/index.js.map +1 -1
- package/lib/aptos/ext/token.d.ts +21 -0
- package/lib/aptos/ext/token.d.ts.map +1 -0
- package/lib/aptos/ext/token.js +1987 -0
- package/lib/aptos/ext/token.js.map +1 -0
- package/package.json +3 -3
- package/src/aptos/ext/index.ts +1 -0
- package/src/aptos/ext/token.ts +2050 -0
@@ -0,0 +1,2050 @@
|
|
1
|
+
import { getPriceByType } from '../../utils/index.js'
|
2
|
+
import fetch from 'node-fetch'
|
3
|
+
import { accountTypeString, parseMoveType, SPLITTER } from '@typemove/move'
|
4
|
+
import { AptosNetwork, getClient } from '../network.js'
|
5
|
+
import { coin } from '../builtin/0x1.js'
|
6
|
+
import { MoveStructId } from '@aptos-labs/ts-sdk'
|
7
|
+
import { AptosChainId } from '@sentio/chain'
|
8
|
+
|
9
|
+
type TokenInfo = {
|
10
|
+
chainId: number
|
11
|
+
tokenAddress: `0x${string}`
|
12
|
+
name: string
|
13
|
+
symbol: string
|
14
|
+
decimals: number
|
15
|
+
bridge: 'LayerZero' | 'Wormhole' | 'Celer' | null
|
16
|
+
panoraSymbol: string
|
17
|
+
logoUrl: string | null
|
18
|
+
websiteUrl: string | null
|
19
|
+
category: 'Native' | 'Bridged' | 'Meme'
|
20
|
+
isInPanoraTokenList: boolean
|
21
|
+
isBanned: boolean
|
22
|
+
panoraOrderIndex: number | null
|
23
|
+
coingeckoId: string | null
|
24
|
+
coinGeckoId?: string // for compatibility
|
25
|
+
coinMarketCapId: number | null
|
26
|
+
}
|
27
|
+
|
28
|
+
export type SimpleTokenInfo = {
|
29
|
+
tokenAddress: `0x${string}`
|
30
|
+
name: string
|
31
|
+
symbol: string
|
32
|
+
decimals: number
|
33
|
+
bridge: 'LayerZero' | 'Wormhole' | 'Celer' | 'Native'
|
34
|
+
logoUrl?: string
|
35
|
+
websiteUrl?: string
|
36
|
+
category: 'Native' | 'Bridged' | 'Meme'
|
37
|
+
coinGeckoId?: string
|
38
|
+
coinMarketCapId?: number
|
39
|
+
}
|
40
|
+
|
41
|
+
const TOKEN_MAP = new Map<string, SimpleTokenInfo>()
|
42
|
+
|
43
|
+
export async function initTokenList() {
|
44
|
+
let list = DEFAULT_TOKEN_LIST
|
45
|
+
try {
|
46
|
+
const resp = await fetch('https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/token-list.json')
|
47
|
+
list = (await resp.json()) as any[]
|
48
|
+
} catch (e) {
|
49
|
+
console.warn("Can't not fetch newest token list, use default list")
|
50
|
+
}
|
51
|
+
|
52
|
+
setTokenList(list)
|
53
|
+
}
|
54
|
+
|
55
|
+
function tokenInfoToSimple(info: TokenInfo): SimpleTokenInfo {
|
56
|
+
if (info.coinGeckoId) {
|
57
|
+
info.coingeckoId = info.coinGeckoId
|
58
|
+
}
|
59
|
+
return {
|
60
|
+
tokenAddress: info.tokenAddress,
|
61
|
+
name: info.name,
|
62
|
+
symbol: info.panoraSymbol,
|
63
|
+
decimals: info.decimals,
|
64
|
+
bridge: info.bridge === null ? 'Native' : info.bridge,
|
65
|
+
logoUrl: info.logoUrl == null ? undefined : info.logoUrl,
|
66
|
+
websiteUrl: info.websiteUrl == null ? undefined : info.websiteUrl,
|
67
|
+
category: info.category,
|
68
|
+
coinGeckoId: info.coingeckoId == null ? undefined : info.coingeckoId,
|
69
|
+
coinMarketCapId: info.coinMarketCapId == null ? undefined : info.coinMarketCapId
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
function setTokenList(list: TokenInfo[]) {
|
74
|
+
for (const info of list) {
|
75
|
+
const simpleInfo = tokenInfoToSimple(info)
|
76
|
+
if (
|
77
|
+
simpleInfo.tokenAddress ===
|
78
|
+
'0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::stapt_token::StakedApt' &&
|
79
|
+
simpleInfo.symbol === 'stAPT'
|
80
|
+
) {
|
81
|
+
simpleInfo.symbol = 'amStApt'
|
82
|
+
}
|
83
|
+
TOKEN_MAP.set(info.tokenAddress, simpleInfo)
|
84
|
+
}
|
85
|
+
}
|
86
|
+
|
87
|
+
export function whitelistTokens() {
|
88
|
+
return TOKEN_MAP
|
89
|
+
}
|
90
|
+
|
91
|
+
export function isWhiteListToken(token: string): boolean {
|
92
|
+
if (token.includes(SPLITTER)) {
|
93
|
+
const [addr, module, type] = token.split(SPLITTER)
|
94
|
+
const normalized = [accountTypeString(addr), module, type].join(SPLITTER)
|
95
|
+
return TOKEN_MAP.has(normalized)
|
96
|
+
}
|
97
|
+
return TOKEN_MAP.has(accountTypeString(token))
|
98
|
+
}
|
99
|
+
|
100
|
+
const TOKEN_METADATA_CACHE = new Map<string, Promise<any | null>>()
|
101
|
+
|
102
|
+
// token: address of the fungible asset, e.g. "0xa", or the coin type, e.g. "0x1::aptos::AptosCoin"
|
103
|
+
export async function getTokenInfoWithFallback(token: string, network?: AptosNetwork): Promise<SimpleTokenInfo> {
|
104
|
+
const r = TOKEN_MAP.get(token)
|
105
|
+
if (!r) {
|
106
|
+
network = network || AptosNetwork.MAIN_NET
|
107
|
+
const key = network + '_' + token
|
108
|
+
let promise = TOKEN_METADATA_CACHE.get(key)
|
109
|
+
if (!promise) {
|
110
|
+
const client = getClient(network)
|
111
|
+
// client.getDigitalAssetData()
|
112
|
+
|
113
|
+
let account = token
|
114
|
+
let metadataType: MoveStructId = `0x1::fungible_asset::Metadata`
|
115
|
+
if (account.includes(SPLITTER)) {
|
116
|
+
account = account.split(SPLITTER)[0]
|
117
|
+
metadataType = coin.CoinInfo.type(parseMoveType(token)).getSignature() as MoveStructId
|
118
|
+
}
|
119
|
+
|
120
|
+
promise = client.getAccountResource({ accountAddress: account, resourceType: metadataType })
|
121
|
+
TOKEN_METADATA_CACHE.set(key, promise)
|
122
|
+
}
|
123
|
+
const meta = await promise
|
124
|
+
if (meta === null) {
|
125
|
+
throw Error('Coin not existed ' + key)
|
126
|
+
}
|
127
|
+
|
128
|
+
// const parts = type.split(SPLITTER)
|
129
|
+
return {
|
130
|
+
category: 'Native',
|
131
|
+
tokenAddress: token as `0x${string}`,
|
132
|
+
name: meta.name,
|
133
|
+
symbol: meta.symbol,
|
134
|
+
decimals: meta.decimals,
|
135
|
+
bridge: 'Native',
|
136
|
+
logoUrl: meta.icon_uri,
|
137
|
+
websiteUrl: meta.project_uri
|
138
|
+
}
|
139
|
+
}
|
140
|
+
return r
|
141
|
+
}
|
142
|
+
|
143
|
+
export async function getPriceForToken(
|
144
|
+
token: string,
|
145
|
+
timestamp: number,
|
146
|
+
network = AptosChainId.APTOS_MAINNET
|
147
|
+
): Promise<number> {
|
148
|
+
if (!isWhiteListToken(token)) {
|
149
|
+
return 0.0
|
150
|
+
}
|
151
|
+
const date = new Date(timestamp / 1000)
|
152
|
+
try {
|
153
|
+
return (await getPriceByType(network, token, date)) || 0
|
154
|
+
} catch (error) {
|
155
|
+
console.log(JSON.stringify(error))
|
156
|
+
throw error
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
export async function tokenTokenValueInUsd(
|
161
|
+
n: bigint,
|
162
|
+
coinInfo: SimpleTokenInfo,
|
163
|
+
timestamp: number,
|
164
|
+
network = AptosChainId.APTOS_MAINNET
|
165
|
+
) {
|
166
|
+
const price = await getPriceForToken(coinInfo.tokenAddress, timestamp, network)
|
167
|
+
const amount = n.scaleDown(coinInfo.decimals)
|
168
|
+
return amount.multipliedBy(price)
|
169
|
+
}
|
170
|
+
|
171
|
+
const DEFAULT_TOKEN_LIST: TokenInfo[] = [
|
172
|
+
{
|
173
|
+
chainId: 1,
|
174
|
+
tokenAddress: '0x1::aptos_coin::AptosCoin',
|
175
|
+
name: 'Aptos Coin',
|
176
|
+
symbol: 'APT',
|
177
|
+
decimals: 8,
|
178
|
+
bridge: null,
|
179
|
+
panoraSymbol: 'APT',
|
180
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APT.svg',
|
181
|
+
websiteUrl: 'https://aptosfoundation.org',
|
182
|
+
category: 'Native',
|
183
|
+
isInPanoraTokenList: true,
|
184
|
+
isBanned: false,
|
185
|
+
panoraOrderIndex: 1,
|
186
|
+
coingeckoId: 'aptos',
|
187
|
+
coinMarketCapId: 21794
|
188
|
+
},
|
189
|
+
{
|
190
|
+
chainId: 1,
|
191
|
+
tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC',
|
192
|
+
name: 'USD Coin',
|
193
|
+
symbol: 'USDC',
|
194
|
+
decimals: 6,
|
195
|
+
bridge: 'LayerZero',
|
196
|
+
panoraSymbol: 'lzUSDC',
|
197
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
198
|
+
websiteUrl: null,
|
199
|
+
category: 'Bridged',
|
200
|
+
isInPanoraTokenList: true,
|
201
|
+
isBanned: false,
|
202
|
+
panoraOrderIndex: 10,
|
203
|
+
coingeckoId: 'usd-coin',
|
204
|
+
coinMarketCapId: 3408
|
205
|
+
},
|
206
|
+
{
|
207
|
+
chainId: 1,
|
208
|
+
tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT',
|
209
|
+
name: 'Tether USD',
|
210
|
+
symbol: 'USDT',
|
211
|
+
decimals: 6,
|
212
|
+
bridge: 'LayerZero',
|
213
|
+
panoraSymbol: 'lzUSDT',
|
214
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT.svg',
|
215
|
+
websiteUrl: null,
|
216
|
+
category: 'Bridged',
|
217
|
+
isInPanoraTokenList: true,
|
218
|
+
isBanned: false,
|
219
|
+
panoraOrderIndex: 15,
|
220
|
+
coingeckoId: 'tether',
|
221
|
+
coinMarketCapId: 825
|
222
|
+
},
|
223
|
+
{
|
224
|
+
chainId: 1,
|
225
|
+
tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WETH',
|
226
|
+
name: 'Wrapped Ether',
|
227
|
+
symbol: 'WETH',
|
228
|
+
decimals: 6,
|
229
|
+
bridge: 'LayerZero',
|
230
|
+
panoraSymbol: 'lzWETH',
|
231
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
|
232
|
+
websiteUrl: null,
|
233
|
+
category: 'Bridged',
|
234
|
+
isInPanoraTokenList: true,
|
235
|
+
isBanned: false,
|
236
|
+
panoraOrderIndex: 20,
|
237
|
+
coingeckoId: 'ethereum',
|
238
|
+
coinMarketCapId: 1027
|
239
|
+
},
|
240
|
+
{
|
241
|
+
chainId: 1,
|
242
|
+
tokenAddress: '0x42d77150661adcc068603bde2453bea1e22fa7ca08878ec88b7e077709c01171::oft::WUSDMOFT',
|
243
|
+
name: 'Wrap USDM',
|
244
|
+
symbol: 'WUSDM',
|
245
|
+
decimals: 8,
|
246
|
+
bridge: 'LayerZero',
|
247
|
+
panoraSymbol: 'lzWUSDM',
|
248
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WUSDM.png',
|
249
|
+
websiteUrl: 'https://mountainprotocol.com',
|
250
|
+
category: 'Bridged',
|
251
|
+
isInPanoraTokenList: true,
|
252
|
+
isBanned: false,
|
253
|
+
panoraOrderIndex: 24,
|
254
|
+
coingeckoId: null,
|
255
|
+
coinMarketCapId: null
|
256
|
+
},
|
257
|
+
{
|
258
|
+
chainId: 1,
|
259
|
+
tokenAddress: '0xcfea864b32833f157f042618bd845145256b1bf4c0da34a7013b76e42daa53cc::usdy::USDY',
|
260
|
+
name: 'Ondo US Dollar Yield',
|
261
|
+
symbol: 'USDY',
|
262
|
+
decimals: 6,
|
263
|
+
bridge: null,
|
264
|
+
panoraSymbol: 'USDY',
|
265
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDY.svg',
|
266
|
+
websiteUrl: 'https://ondo.finance',
|
267
|
+
category: 'Native',
|
268
|
+
isInPanoraTokenList: true,
|
269
|
+
isBanned: false,
|
270
|
+
panoraOrderIndex: 38,
|
271
|
+
coingeckoId: 'ondo-us-dollar-yield',
|
272
|
+
coinMarketCapId: 29256
|
273
|
+
},
|
274
|
+
{
|
275
|
+
chainId: 1,
|
276
|
+
tokenAddress: '0x7fd500c11216f0fe3095d0c4b8aa4d64a4e2e04f83758462f2b127255643615::thl_coin::THL',
|
277
|
+
name: 'Thala Token',
|
278
|
+
symbol: 'THL',
|
279
|
+
decimals: 8,
|
280
|
+
bridge: null,
|
281
|
+
panoraSymbol: 'THL',
|
282
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/THL.png',
|
283
|
+
websiteUrl: 'https://www.thala.fi',
|
284
|
+
category: 'Native',
|
285
|
+
isInPanoraTokenList: true,
|
286
|
+
isBanned: false,
|
287
|
+
panoraOrderIndex: 30,
|
288
|
+
coingeckoId: 'thala',
|
289
|
+
coinMarketCapId: 24268
|
290
|
+
},
|
291
|
+
{
|
292
|
+
chainId: 1,
|
293
|
+
tokenAddress: '0x2ebb2ccac5e027a87fa0e2e5f656a3a4238d6a48d93ec9b610d570fc0aa0df12',
|
294
|
+
name: 'Cellana',
|
295
|
+
symbol: 'CELL',
|
296
|
+
decimals: 8,
|
297
|
+
bridge: null,
|
298
|
+
panoraSymbol: 'CELL',
|
299
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CELL.png',
|
300
|
+
websiteUrl: 'https://cellana.finance',
|
301
|
+
category: 'Native',
|
302
|
+
isInPanoraTokenList: true,
|
303
|
+
isBanned: false,
|
304
|
+
panoraOrderIndex: 35,
|
305
|
+
coingeckoId: 'cellena-finance',
|
306
|
+
coinMarketCapId: null
|
307
|
+
},
|
308
|
+
{
|
309
|
+
chainId: 1,
|
310
|
+
tokenAddress: '0x268d4a7a2ad93274edf6116f9f20ad8455223a7ab5fc73154f687e7dbc3e3ec6::LOON::LOON',
|
311
|
+
name: 'The Loonies',
|
312
|
+
symbol: 'LOON',
|
313
|
+
decimals: 6,
|
314
|
+
bridge: null,
|
315
|
+
panoraSymbol: 'LOON',
|
316
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LOON.jpg',
|
317
|
+
category: 'Native',
|
318
|
+
isInPanoraTokenList: true,
|
319
|
+
panoraOrderIndex: 38,
|
320
|
+
coingeckoId: null,
|
321
|
+
coinMarketCapId: null,
|
322
|
+
isBanned: false,
|
323
|
+
websiteUrl: null
|
324
|
+
},
|
325
|
+
|
326
|
+
{
|
327
|
+
chainId: 1,
|
328
|
+
tokenAddress: '0xe4ccb6d39136469f376242c31b34d10515c8eaaa38092f804db8e08a8f53c5b2::assets_v1::EchoCoin002',
|
329
|
+
name: 'Gui Inu',
|
330
|
+
symbol: 'GUI',
|
331
|
+
decimals: 6,
|
332
|
+
bridge: null,
|
333
|
+
panoraSymbol: 'GUI',
|
334
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GUI.png',
|
335
|
+
websiteUrl: 'https://www.guiinu.com',
|
336
|
+
category: 'Meme',
|
337
|
+
isInPanoraTokenList: true,
|
338
|
+
isBanned: false,
|
339
|
+
panoraOrderIndex: 40,
|
340
|
+
coingeckoId: 'gui-inu',
|
341
|
+
coinMarketCapId: 28851
|
342
|
+
},
|
343
|
+
{
|
344
|
+
chainId: 1,
|
345
|
+
tokenAddress: '0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::amapt_token::AmnisApt',
|
346
|
+
name: 'Amnis Aptos Coin',
|
347
|
+
symbol: 'amAPT',
|
348
|
+
decimals: 8,
|
349
|
+
bridge: null,
|
350
|
+
panoraSymbol: 'amAPT',
|
351
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/amAPT.png',
|
352
|
+
websiteUrl: 'https://amnis.finance',
|
353
|
+
category: 'Native',
|
354
|
+
isInPanoraTokenList: true,
|
355
|
+
isBanned: false,
|
356
|
+
panoraOrderIndex: 45,
|
357
|
+
coingeckoId: 'amnis-aptos',
|
358
|
+
coinMarketCapId: 29034
|
359
|
+
},
|
360
|
+
{
|
361
|
+
chainId: 1,
|
362
|
+
tokenAddress: '0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6::staking::ThalaAPT',
|
363
|
+
name: 'Thala APT',
|
364
|
+
symbol: 'thAPT',
|
365
|
+
decimals: 8,
|
366
|
+
bridge: null,
|
367
|
+
panoraSymbol: 'thAPT',
|
368
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/thAPT.png',
|
369
|
+
websiteUrl: 'https://thala.fi',
|
370
|
+
category: 'Native',
|
371
|
+
isInPanoraTokenList: true,
|
372
|
+
isBanned: false,
|
373
|
+
panoraOrderIndex: 50,
|
374
|
+
coingeckoId: 'thala-apt',
|
375
|
+
coinMarketCapId: null
|
376
|
+
},
|
377
|
+
{
|
378
|
+
chainId: 1,
|
379
|
+
tokenAddress: '0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a::stapt_token::StakedApt',
|
380
|
+
name: 'Staked Aptos Coin',
|
381
|
+
symbol: 'stAPT',
|
382
|
+
decimals: 8,
|
383
|
+
bridge: null,
|
384
|
+
panoraSymbol: 'stAPT',
|
385
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/stAptAmnis.png',
|
386
|
+
websiteUrl: 'https://stake.amnis.finance',
|
387
|
+
category: 'Native',
|
388
|
+
isInPanoraTokenList: true,
|
389
|
+
isBanned: false,
|
390
|
+
panoraOrderIndex: 55,
|
391
|
+
coingeckoId: 'amnis-staked-aptos-coin',
|
392
|
+
coinMarketCapId: null
|
393
|
+
},
|
394
|
+
{
|
395
|
+
chainId: 1,
|
396
|
+
tokenAddress: '0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6::staking::StakedThalaAPT',
|
397
|
+
name: 'Staked Thala APT',
|
398
|
+
symbol: 'sthAPT',
|
399
|
+
decimals: 8,
|
400
|
+
bridge: null,
|
401
|
+
panoraSymbol: 'sthAPT',
|
402
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/sthAPT.png',
|
403
|
+
websiteUrl: 'https://thala.fi',
|
404
|
+
category: 'Native',
|
405
|
+
isInPanoraTokenList: true,
|
406
|
+
isBanned: false,
|
407
|
+
panoraOrderIndex: 60,
|
408
|
+
coingeckoId: 'staked-thala-apt',
|
409
|
+
coinMarketCapId: null
|
410
|
+
},
|
411
|
+
{
|
412
|
+
chainId: 1,
|
413
|
+
tokenAddress: '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD',
|
414
|
+
name: 'Move Dollar',
|
415
|
+
symbol: 'MOD',
|
416
|
+
decimals: 8,
|
417
|
+
bridge: null,
|
418
|
+
panoraSymbol: 'MOD',
|
419
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOD.png',
|
420
|
+
websiteUrl: 'https://www.thala.fi',
|
421
|
+
category: 'Native',
|
422
|
+
isInPanoraTokenList: true,
|
423
|
+
isBanned: false,
|
424
|
+
panoraOrderIndex: 65,
|
425
|
+
coingeckoId: 'move-dollar',
|
426
|
+
coinMarketCapId: null
|
427
|
+
},
|
428
|
+
{
|
429
|
+
chainId: 1,
|
430
|
+
tokenAddress: '0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T',
|
431
|
+
name: 'USD Coin',
|
432
|
+
symbol: 'USDC',
|
433
|
+
decimals: 6,
|
434
|
+
bridge: 'Wormhole',
|
435
|
+
panoraSymbol: 'whUSDC',
|
436
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
437
|
+
websiteUrl: null,
|
438
|
+
category: 'Bridged',
|
439
|
+
isInPanoraTokenList: true,
|
440
|
+
isBanned: false,
|
441
|
+
panoraOrderIndex: 70,
|
442
|
+
coingeckoId: 'usd-coin',
|
443
|
+
coinMarketCapId: 3408
|
444
|
+
},
|
445
|
+
{
|
446
|
+
chainId: 1,
|
447
|
+
tokenAddress: '0x73eb84966be67e4697fc5ae75173ca6c35089e802650f75422ab49a8729704ec::coin::DooDoo',
|
448
|
+
name: 'DooDoo',
|
449
|
+
symbol: 'DooDoo',
|
450
|
+
decimals: 8,
|
451
|
+
bridge: null,
|
452
|
+
panoraSymbol: 'DooDoo',
|
453
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DOODOO.png',
|
454
|
+
websiteUrl: 'https://doodoo.io',
|
455
|
+
category: 'Meme',
|
456
|
+
isInPanoraTokenList: true,
|
457
|
+
isBanned: false,
|
458
|
+
panoraOrderIndex: 75,
|
459
|
+
coingeckoId: 'doodoo',
|
460
|
+
coinMarketCapId: 28881
|
461
|
+
},
|
462
|
+
{
|
463
|
+
chainId: 1,
|
464
|
+
tokenAddress: '0x4fbed3f8a3fd8a11081c8b6392152a8b0cb14d70d0414586f0c9b858fcd2d6a7::UPTOS::UPTOS',
|
465
|
+
name: 'UPTOS',
|
466
|
+
symbol: 'UPTOS',
|
467
|
+
decimals: 8,
|
468
|
+
bridge: null,
|
469
|
+
panoraSymbol: 'UPTOS',
|
470
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/UPTOS.svg',
|
471
|
+
websiteUrl: 'https://uptos.xyz',
|
472
|
+
category: 'Meme',
|
473
|
+
isInPanoraTokenList: true,
|
474
|
+
isBanned: false,
|
475
|
+
panoraOrderIndex: 80,
|
476
|
+
coingeckoId: 'uptos',
|
477
|
+
coinMarketCapId: 30366
|
478
|
+
},
|
479
|
+
{
|
480
|
+
chainId: 1,
|
481
|
+
tokenAddress: '0x63be1898a424616367e19bbd881f456a78470e123e2770b5b5dcdceb61279c54::movegpt_token::MovegptCoin',
|
482
|
+
name: 'MOVEGPT',
|
483
|
+
symbol: 'MGPT',
|
484
|
+
decimals: 8,
|
485
|
+
bridge: null,
|
486
|
+
panoraSymbol: 'MGPT',
|
487
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MGPT.jpg',
|
488
|
+
websiteUrl: 'https://movegpt.io/',
|
489
|
+
category: 'Native',
|
490
|
+
isInPanoraTokenList: true,
|
491
|
+
isBanned: false,
|
492
|
+
panoraOrderIndex: 85,
|
493
|
+
coingeckoId: 'movegpt',
|
494
|
+
coinMarketCapId: null
|
495
|
+
},
|
496
|
+
{
|
497
|
+
chainId: 1,
|
498
|
+
tokenAddress: '0xe88ae9670071da40a9a6b1d97aab8f6f1898fdc3b8f1c1038b492dfad738448b::coin::Donk',
|
499
|
+
name: 'Donk',
|
500
|
+
symbol: 'DONK',
|
501
|
+
decimals: 8,
|
502
|
+
bridge: null,
|
503
|
+
panoraSymbol: 'DONK',
|
504
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DONK.png',
|
505
|
+
websiteUrl: null,
|
506
|
+
category: 'Meme',
|
507
|
+
isInPanoraTokenList: true,
|
508
|
+
isBanned: false,
|
509
|
+
panoraOrderIndex: 93,
|
510
|
+
coingeckoId: null,
|
511
|
+
coinMarketCapId: null
|
512
|
+
},
|
513
|
+
{
|
514
|
+
chainId: 1,
|
515
|
+
tokenAddress: '0xf6f87fb53c090da2cd681cd30eccec6825685e6f305bfb9efdbbdf31796a83a7::MONKE::MONKE',
|
516
|
+
name: 'MONKE',
|
517
|
+
symbol: 'MONKE',
|
518
|
+
decimals: 6,
|
519
|
+
bridge: null,
|
520
|
+
panoraSymbol: 'MONKE',
|
521
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MONKE.png',
|
522
|
+
category: 'Meme',
|
523
|
+
isInPanoraTokenList: true,
|
524
|
+
panoraOrderIndex: 94,
|
525
|
+
coingeckoId: null,
|
526
|
+
coinMarketCapId: null,
|
527
|
+
isBanned: false,
|
528
|
+
websiteUrl: null
|
529
|
+
},
|
530
|
+
{
|
531
|
+
chainId: 1,
|
532
|
+
tokenAddress: '0x967adbf2e05fe665ab86a3bf2c4acfa39fbf62097963474ef70a0786dae8cfa2::NRUH::NRUH',
|
533
|
+
name: 'nRuH BeRs',
|
534
|
+
symbol: 'NRUH',
|
535
|
+
decimals: 6,
|
536
|
+
bridge: null,
|
537
|
+
panoraSymbol: 'NRUH',
|
538
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NRUH.png',
|
539
|
+
category: 'Meme',
|
540
|
+
isInPanoraTokenList: true,
|
541
|
+
panoraOrderIndex: 95,
|
542
|
+
coingeckoId: null,
|
543
|
+
coinMarketCapId: null,
|
544
|
+
isBanned: false,
|
545
|
+
websiteUrl: null
|
546
|
+
},
|
547
|
+
{
|
548
|
+
chainId: 1,
|
549
|
+
tokenAddress: '0x2dcbc03740a6fa2efee926b9df329184cce357d0573bdab09930f4d48e61a4c8::STOS::STOS',
|
550
|
+
name: 'sherritos',
|
551
|
+
symbol: 'STOS',
|
552
|
+
decimals: 6,
|
553
|
+
bridge: null,
|
554
|
+
panoraSymbol: 'STOS',
|
555
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/STOS.png',
|
556
|
+
category: 'Meme',
|
557
|
+
isInPanoraTokenList: true,
|
558
|
+
panoraOrderIndex: 96,
|
559
|
+
coingeckoId: null,
|
560
|
+
coinMarketCapId: null,
|
561
|
+
isBanned: false,
|
562
|
+
websiteUrl: null
|
563
|
+
},
|
564
|
+
{
|
565
|
+
chainId: 1,
|
566
|
+
tokenAddress: '0xdcfa079344261bfde45e7f6281df091743b8d3098bf9e26e1c0212fc5b070621::zaaptos_token::ZaaptosCoin',
|
567
|
+
name: 'Zaaptos Coin',
|
568
|
+
symbol: 'ZAAP',
|
569
|
+
decimals: 8,
|
570
|
+
bridge: null,
|
571
|
+
panoraSymbol: 'ZAAP',
|
572
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZAAP.png',
|
573
|
+
websiteUrl: null,
|
574
|
+
category: 'Meme',
|
575
|
+
isInPanoraTokenList: true,
|
576
|
+
isBanned: false,
|
577
|
+
panoraOrderIndex: 98,
|
578
|
+
coingeckoId: null,
|
579
|
+
coinMarketCapId: null
|
580
|
+
},
|
581
|
+
{
|
582
|
+
chainId: 1,
|
583
|
+
tokenAddress: '0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6::oft::CakeOFT',
|
584
|
+
name: 'PancakeSwap Token',
|
585
|
+
symbol: 'CAKE',
|
586
|
+
decimals: 8,
|
587
|
+
bridge: null,
|
588
|
+
panoraSymbol: 'CAKE',
|
589
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/Pancake.png',
|
590
|
+
websiteUrl: 'https://pancakeswap.finance',
|
591
|
+
category: 'Native',
|
592
|
+
isInPanoraTokenList: true,
|
593
|
+
isBanned: false,
|
594
|
+
panoraOrderIndex: 99,
|
595
|
+
coingeckoId: 'pancakeswap-token',
|
596
|
+
coinMarketCapId: 7186
|
597
|
+
},
|
598
|
+
{
|
599
|
+
chainId: 1,
|
600
|
+
tokenAddress: '0xe50684a338db732d8fb8a3ac71c4b8633878bd0193bca5de2ebc852a83b35099::propbase_coin::PROPS',
|
601
|
+
name: 'Propbase',
|
602
|
+
symbol: 'PROPS',
|
603
|
+
decimals: 8,
|
604
|
+
bridge: null,
|
605
|
+
panoraSymbol: 'PROPS',
|
606
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PROPS.png',
|
607
|
+
websiteUrl: 'https://www.propbase.app',
|
608
|
+
category: 'Native',
|
609
|
+
isInPanoraTokenList: true,
|
610
|
+
isBanned: false,
|
611
|
+
panoraOrderIndex: 100,
|
612
|
+
coingeckoId: 'propbase',
|
613
|
+
coinMarketCapId: 28385
|
614
|
+
},
|
615
|
+
{
|
616
|
+
chainId: 1,
|
617
|
+
tokenAddress: '0xbe3c4b493632b4d776d56e19d91dcfb34f591f759f6b57f8632d455360da503c::dumdum_coin::DumdumCoin',
|
618
|
+
name: 'Dumdum',
|
619
|
+
symbol: 'DUMDUM',
|
620
|
+
decimals: 8,
|
621
|
+
bridge: null,
|
622
|
+
panoraSymbol: 'DUMDUM',
|
623
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DUMDUM.png',
|
624
|
+
websiteUrl: 'https://dumdum.cc/',
|
625
|
+
category: 'Meme',
|
626
|
+
isInPanoraTokenList: true,
|
627
|
+
isBanned: false,
|
628
|
+
panoraOrderIndex: 105,
|
629
|
+
coingeckoId: null,
|
630
|
+
coinMarketCapId: null
|
631
|
+
},
|
632
|
+
{
|
633
|
+
chainId: 1,
|
634
|
+
tokenAddress: '0xada35ada7e43e2ee1c39633ffccec38b76ce702b4efc2e60b50f63fbe4f710d8::apetos_token::ApetosCoin',
|
635
|
+
name: 'APETOS',
|
636
|
+
symbol: 'APE',
|
637
|
+
decimals: 8,
|
638
|
+
bridge: null,
|
639
|
+
panoraSymbol: 'APE',
|
640
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APE.png',
|
641
|
+
websiteUrl: null,
|
642
|
+
category: 'Meme',
|
643
|
+
isInPanoraTokenList: true,
|
644
|
+
isBanned: false,
|
645
|
+
panoraOrderIndex: 106,
|
646
|
+
coingeckoId: null,
|
647
|
+
coinMarketCapId: null
|
648
|
+
},
|
649
|
+
{
|
650
|
+
chainId: 1,
|
651
|
+
tokenAddress: '0xd6a49762f6e4f7401ee79be6f5d4111e70db1408966ba1aa204e6e10c9d437ca::bubbles::BubblesCoin',
|
652
|
+
name: 'BUBBLES',
|
653
|
+
symbol: 'BUBBLES',
|
654
|
+
decimals: 8,
|
655
|
+
bridge: null,
|
656
|
+
panoraSymbol: 'BUBBLES',
|
657
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUBBLES.jpg',
|
658
|
+
websiteUrl: null,
|
659
|
+
category: 'Meme',
|
660
|
+
isInPanoraTokenList: false,
|
661
|
+
isBanned: false,
|
662
|
+
panoraOrderIndex: 107,
|
663
|
+
coingeckoId: null,
|
664
|
+
coinMarketCapId: null
|
665
|
+
},
|
666
|
+
{
|
667
|
+
chainId: 1,
|
668
|
+
tokenAddress: '0x665d06fcd9c94430099f82973f2a5e5f13142e42fa172e72ce14f51a64bd8ad9::coin_mbx::MBX',
|
669
|
+
name: 'MARBLEX',
|
670
|
+
symbol: 'MBX',
|
671
|
+
decimals: 8,
|
672
|
+
bridge: null,
|
673
|
+
panoraSymbol: 'MBX',
|
674
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MBX.png',
|
675
|
+
websiteUrl: 'https://marblex.io',
|
676
|
+
category: 'Native',
|
677
|
+
isInPanoraTokenList: true,
|
678
|
+
isBanned: false,
|
679
|
+
panoraOrderIndex: 110,
|
680
|
+
coingeckoId: 'marblex',
|
681
|
+
coinMarketCapId: 18895
|
682
|
+
},
|
683
|
+
{
|
684
|
+
chainId: 1,
|
685
|
+
tokenAddress: '0x198e4a77b72cbcac7465e774e99d2ba552053ca57b0759ea3c008433742b4e4f::PEPE::Pepe',
|
686
|
+
name: 'Pepe',
|
687
|
+
symbol: 'PEPE',
|
688
|
+
decimals: 6,
|
689
|
+
bridge: null,
|
690
|
+
panoraSymbol: 'PEPE',
|
691
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PEPE.png',
|
692
|
+
websiteUrl: 'https://pepe.as',
|
693
|
+
category: 'Meme',
|
694
|
+
isInPanoraTokenList: true,
|
695
|
+
isBanned: false,
|
696
|
+
panoraOrderIndex: 114,
|
697
|
+
coingeckoId: null,
|
698
|
+
coinMarketCapId: null
|
699
|
+
},
|
700
|
+
{
|
701
|
+
chainId: 1,
|
702
|
+
tokenAddress: '0xc26a8eda1c3ab69a157815183ddda88c89d6758ee491dd1647a70af2907ce074::coin::Chewy',
|
703
|
+
name: 'Chewy',
|
704
|
+
symbol: 'CHEWY',
|
705
|
+
decimals: 0,
|
706
|
+
bridge: null,
|
707
|
+
panoraSymbol: 'CHEWY',
|
708
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CHEWY.png',
|
709
|
+
websiteUrl: 'https://chewytoken.com',
|
710
|
+
category: 'Meme',
|
711
|
+
isInPanoraTokenList: true,
|
712
|
+
isBanned: false,
|
713
|
+
panoraOrderIndex: 115,
|
714
|
+
coingeckoId: null,
|
715
|
+
coinMarketCapId: 30840
|
716
|
+
},
|
717
|
+
{
|
718
|
+
chainId: 1,
|
719
|
+
tokenAddress:
|
720
|
+
'0x4c71c33b9ec2f263a7f25779bd9a2531165d4da9a963e042a20f288688094a66::APTO_THE_MASCOT::APTO_THE_MASCOT',
|
721
|
+
name: 'Apto The Mascot',
|
722
|
+
symbol: 'APTO',
|
723
|
+
decimals: 8,
|
724
|
+
bridge: null,
|
725
|
+
panoraSymbol: 'APTO',
|
726
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTO.png',
|
727
|
+
websiteUrl: 'https://aptothemascot.com/',
|
728
|
+
category: 'Meme',
|
729
|
+
isInPanoraTokenList: true,
|
730
|
+
isBanned: false,
|
731
|
+
panoraOrderIndex: 120,
|
732
|
+
coingeckoId: null,
|
733
|
+
coinMarketCapId: null
|
734
|
+
},
|
735
|
+
{
|
736
|
+
chainId: 1,
|
737
|
+
tokenAddress: '0xf891d2e004973430cc2bbbee69f3d0f4adb9c7ae03137b4579f7bb9979283ee6::APTOS_FOMO::APTOS_FOMO',
|
738
|
+
name: 'APTOS FOMO',
|
739
|
+
symbol: 'FOMO',
|
740
|
+
decimals: 6,
|
741
|
+
bridge: null,
|
742
|
+
panoraSymbol: 'FOMO',
|
743
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/FOMO.png',
|
744
|
+
websiteUrl: null,
|
745
|
+
category: 'Meme',
|
746
|
+
isInPanoraTokenList: true,
|
747
|
+
isBanned: false,
|
748
|
+
panoraOrderIndex: 125,
|
749
|
+
coingeckoId: null,
|
750
|
+
coinMarketCapId: null
|
751
|
+
},
|
752
|
+
{
|
753
|
+
chainId: 1,
|
754
|
+
tokenAddress: '0x55987edfab9a57f69bac759674f139ae473b5e09a9283848c1f87faf6fc1e789::shrimp::ShrimpCoin',
|
755
|
+
name: 'SHRIMP',
|
756
|
+
symbol: 'SHRIMP',
|
757
|
+
decimals: 2,
|
758
|
+
bridge: null,
|
759
|
+
panoraSymbol: 'SHRIMP',
|
760
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SHRIMP.png',
|
761
|
+
websiteUrl: 'https://shrimp.app',
|
762
|
+
category: 'Meme',
|
763
|
+
isInPanoraTokenList: true,
|
764
|
+
isBanned: false,
|
765
|
+
panoraOrderIndex: 126,
|
766
|
+
coingeckoId: null,
|
767
|
+
coinMarketCapId: 29921
|
768
|
+
},
|
769
|
+
{
|
770
|
+
chainId: 1,
|
771
|
+
tokenAddress: '0x7b7bab2131de3e4f318b4abaa952f7c817b2c3df16c951caca809ac9ca9b650e::APARTMENT::APARTMENT',
|
772
|
+
name: 'APARTMENT',
|
773
|
+
symbol: 'APARTMENT',
|
774
|
+
decimals: 8,
|
775
|
+
bridge: null,
|
776
|
+
panoraSymbol: 'APARTMENT',
|
777
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APARTMENT.png',
|
778
|
+
websiteUrl: 'https://aptosapartments.rent',
|
779
|
+
category: 'Meme',
|
780
|
+
isInPanoraTokenList: true,
|
781
|
+
isBanned: false,
|
782
|
+
panoraOrderIndex: 130,
|
783
|
+
coingeckoId: null,
|
784
|
+
coinMarketCapId: null
|
785
|
+
},
|
786
|
+
{
|
787
|
+
chainId: 1,
|
788
|
+
tokenAddress: '0xdf3d5eb83df80dfde8ceb1edaa24d8dbc46da6a89ae134a858338e1b86a29e38::coin::Returd',
|
789
|
+
name: 'Returd',
|
790
|
+
symbol: 'RETuRD',
|
791
|
+
decimals: 8,
|
792
|
+
bridge: null,
|
793
|
+
panoraSymbol: 'RETuRD',
|
794
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RETURD.png',
|
795
|
+
websiteUrl: null,
|
796
|
+
category: 'Meme',
|
797
|
+
isInPanoraTokenList: false,
|
798
|
+
isBanned: false,
|
799
|
+
panoraOrderIndex: 135,
|
800
|
+
coingeckoId: null,
|
801
|
+
coinMarketCapId: null
|
802
|
+
},
|
803
|
+
{
|
804
|
+
chainId: 1,
|
805
|
+
tokenAddress: '0x13341e81b2c5960623f31cfee0b1ef674cbf23ca302852159b542adc6afe0f37::TEH_DORK_KNITE::TEH_DORK_KNITE',
|
806
|
+
name: 'Teh Dork Knite',
|
807
|
+
symbol: 'BAPTMAN',
|
808
|
+
decimals: 8,
|
809
|
+
bridge: null,
|
810
|
+
panoraSymbol: 'BAPTMAN',
|
811
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BAPTMAN.jpg',
|
812
|
+
websiteUrl: 'https://baptmantoken.com',
|
813
|
+
category: 'Meme',
|
814
|
+
isInPanoraTokenList: true,
|
815
|
+
isBanned: false,
|
816
|
+
panoraOrderIndex: 140,
|
817
|
+
coingeckoId: null,
|
818
|
+
coinMarketCapId: null
|
819
|
+
},
|
820
|
+
{
|
821
|
+
chainId: 1,
|
822
|
+
tokenAddress: '0xd2c9cfe8dd64ebdf9b39e1525997cef33bd178161c59410097d3f3e0704a5df3::ROO::ROO',
|
823
|
+
name: 'ROO',
|
824
|
+
symbol: 'ROO',
|
825
|
+
decimals: 8,
|
826
|
+
bridge: null,
|
827
|
+
panoraSymbol: 'ROO',
|
828
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ROO.jpg',
|
829
|
+
websiteUrl: 'https://aptosroo.io',
|
830
|
+
category: 'Meme',
|
831
|
+
isInPanoraTokenList: true,
|
832
|
+
isBanned: false,
|
833
|
+
panoraOrderIndex: 145,
|
834
|
+
coingeckoId: null,
|
835
|
+
coinMarketCapId: null
|
836
|
+
},
|
837
|
+
{
|
838
|
+
chainId: 1,
|
839
|
+
tokenAddress: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef::chad_coin::ChadCoin',
|
840
|
+
name: 'CHAD',
|
841
|
+
symbol: 'CHAD',
|
842
|
+
decimals: 6,
|
843
|
+
bridge: null,
|
844
|
+
panoraSymbol: 'CHAD',
|
845
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CHAD.png',
|
846
|
+
websiteUrl: null,
|
847
|
+
category: 'Meme',
|
848
|
+
isInPanoraTokenList: true,
|
849
|
+
isBanned: false,
|
850
|
+
panoraOrderIndex: 150,
|
851
|
+
coingeckoId: null,
|
852
|
+
coinMarketCapId: null
|
853
|
+
},
|
854
|
+
{
|
855
|
+
chainId: 1,
|
856
|
+
tokenAddress: '0x1fc2f33ab6b624e3e632ba861b755fd8e61d2c2e6cf8292e415880b4c198224d::apt20::APTS',
|
857
|
+
name: 'APTS',
|
858
|
+
symbol: 'APTS',
|
859
|
+
decimals: 8,
|
860
|
+
bridge: null,
|
861
|
+
panoraSymbol: 'APTS',
|
862
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTS.png',
|
863
|
+
websiteUrl: null,
|
864
|
+
category: 'Meme',
|
865
|
+
isInPanoraTokenList: false,
|
866
|
+
isBanned: false,
|
867
|
+
panoraOrderIndex: 155,
|
868
|
+
coingeckoId: null,
|
869
|
+
coinMarketCapId: null
|
870
|
+
},
|
871
|
+
{
|
872
|
+
chainId: 1,
|
873
|
+
tokenAddress: '0x4ed27736e724e403f9b4645ffef0ae86fd149503f45b37c428ffabd7e46e5b05::core::RenegadeCoin',
|
874
|
+
name: 'RENA',
|
875
|
+
symbol: 'RENA',
|
876
|
+
decimals: 8,
|
877
|
+
bridge: null,
|
878
|
+
panoraSymbol: 'RENA',
|
879
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/RENA.png',
|
880
|
+
websiteUrl: 'https://www.renegades.build',
|
881
|
+
category: 'Native',
|
882
|
+
isInPanoraTokenList: true,
|
883
|
+
isBanned: false,
|
884
|
+
panoraOrderIndex: 160,
|
885
|
+
coingeckoId: null,
|
886
|
+
coinMarketCapId: null
|
887
|
+
},
|
888
|
+
{
|
889
|
+
chainId: 1,
|
890
|
+
tokenAddress: '0x7de3fea83cd5ca0e1def27c3f3803af619882db51f34abf30dd04ad12ee6af31::tapos::Heart',
|
891
|
+
name: 'Heart',
|
892
|
+
symbol: 'HEART',
|
893
|
+
decimals: 8,
|
894
|
+
bridge: null,
|
895
|
+
panoraSymbol: 'HEART',
|
896
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/HEART.png',
|
897
|
+
websiteUrl: 'https://tapos.xyz',
|
898
|
+
category: 'Native',
|
899
|
+
isInPanoraTokenList: true,
|
900
|
+
isBanned: false,
|
901
|
+
panoraOrderIndex: 161,
|
902
|
+
coingeckoId: null,
|
903
|
+
coinMarketCapId: null
|
904
|
+
},
|
905
|
+
{
|
906
|
+
chainId: 1,
|
907
|
+
tokenAddress: '0x84edd115c901709ef28f3cb66a82264ba91bfd24789500b6fd34ab9e8888e272::coin::DLC',
|
908
|
+
name: 'Doglaika Coin',
|
909
|
+
symbol: 'DLC',
|
910
|
+
decimals: 8,
|
911
|
+
bridge: null,
|
912
|
+
panoraSymbol: 'DLC',
|
913
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DLC.png',
|
914
|
+
websiteUrl: null,
|
915
|
+
category: 'Meme',
|
916
|
+
isInPanoraTokenList: false,
|
917
|
+
isBanned: false,
|
918
|
+
panoraOrderIndex: 165,
|
919
|
+
coingeckoId: 'doglaikacoin',
|
920
|
+
coinMarketCapId: 23200
|
921
|
+
},
|
922
|
+
{
|
923
|
+
chainId: 1,
|
924
|
+
tokenAddress: '0xc82974034820c34f065f948f1bee473d481bf99fde2d23e981043e5038cb36be::WOOF::Woof',
|
925
|
+
name: 'Woof',
|
926
|
+
symbol: 'Woof',
|
927
|
+
decimals: 6,
|
928
|
+
bridge: null,
|
929
|
+
panoraSymbol: 'Woof',
|
930
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WOOF.png',
|
931
|
+
websiteUrl: null,
|
932
|
+
category: 'Meme',
|
933
|
+
isInPanoraTokenList: true,
|
934
|
+
isBanned: false,
|
935
|
+
panoraOrderIndex: 170,
|
936
|
+
coingeckoId: null,
|
937
|
+
coinMarketCapId: null
|
938
|
+
},
|
939
|
+
{
|
940
|
+
chainId: 1,
|
941
|
+
tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::WBTC',
|
942
|
+
name: 'Wrapped BTC',
|
943
|
+
symbol: 'WBTC',
|
944
|
+
decimals: 6,
|
945
|
+
bridge: 'LayerZero',
|
946
|
+
panoraSymbol: 'lzWBTC',
|
947
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
|
948
|
+
websiteUrl: null,
|
949
|
+
category: 'Bridged',
|
950
|
+
isInPanoraTokenList: true,
|
951
|
+
isBanned: false,
|
952
|
+
panoraOrderIndex: 175,
|
953
|
+
coingeckoId: 'bitcoin',
|
954
|
+
coinMarketCapId: 1
|
955
|
+
},
|
956
|
+
{
|
957
|
+
chainId: 1,
|
958
|
+
tokenAddress: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge',
|
959
|
+
name: 'Aptoge',
|
960
|
+
symbol: 'APTOGE',
|
961
|
+
decimals: 6,
|
962
|
+
bridge: null,
|
963
|
+
panoraSymbol: 'APTOGE',
|
964
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTOGE.png',
|
965
|
+
websiteUrl: 'https://aptoge.com',
|
966
|
+
category: 'Meme',
|
967
|
+
isInPanoraTokenList: false,
|
968
|
+
isBanned: false,
|
969
|
+
panoraOrderIndex: 180,
|
970
|
+
coingeckoId: null,
|
971
|
+
coinMarketCapId: 22383
|
972
|
+
},
|
973
|
+
{
|
974
|
+
chainId: 1,
|
975
|
+
tokenAddress: '0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::AptSwap::AptSwapGovernance',
|
976
|
+
name: 'AptSwap Governance Token',
|
977
|
+
symbol: 'APTSWAP',
|
978
|
+
decimals: 8,
|
979
|
+
bridge: null,
|
980
|
+
panoraSymbol: 'APTSWAP',
|
981
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/AptSwap.png',
|
982
|
+
websiteUrl: 'http://aptswap.io',
|
983
|
+
category: 'Native',
|
984
|
+
isInPanoraTokenList: false,
|
985
|
+
isBanned: false,
|
986
|
+
panoraOrderIndex: 185,
|
987
|
+
coingeckoId: null,
|
988
|
+
coinMarketCapId: null
|
989
|
+
},
|
990
|
+
{
|
991
|
+
chainId: 1,
|
992
|
+
tokenAddress: '0x27fafcc4e39daac97556af8a803dbb52bcb03f0821898dc845ac54225b9793eb::move_coin::MoveCoin',
|
993
|
+
name: 'BlueMove',
|
994
|
+
symbol: 'MOVE',
|
995
|
+
decimals: 8,
|
996
|
+
bridge: null,
|
997
|
+
panoraSymbol: 'MOVE',
|
998
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOVE.svg',
|
999
|
+
websiteUrl: 'https://bluemove.net',
|
1000
|
+
category: 'Native',
|
1001
|
+
isInPanoraTokenList: true,
|
1002
|
+
isBanned: false,
|
1003
|
+
panoraOrderIndex: 190,
|
1004
|
+
coingeckoId: 'bluemove',
|
1005
|
+
coinMarketCapId: 23359
|
1006
|
+
},
|
1007
|
+
{
|
1008
|
+
chainId: 1,
|
1009
|
+
tokenAddress: '0x881ac202b1f1e6ad4efcff7a1d0579411533f2502417a19211cfc49751ddb5f4::coin::MOJO',
|
1010
|
+
name: 'Mojito',
|
1011
|
+
symbol: 'MOJO',
|
1012
|
+
decimals: 8,
|
1013
|
+
bridge: null,
|
1014
|
+
panoraSymbol: 'MOJO',
|
1015
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOJO.svg',
|
1016
|
+
websiteUrl: 'https://dex.mojito.markets',
|
1017
|
+
category: 'Native',
|
1018
|
+
isInPanoraTokenList: true,
|
1019
|
+
isBanned: false,
|
1020
|
+
panoraOrderIndex: 195,
|
1021
|
+
coingeckoId: 'mojito',
|
1022
|
+
coinMarketCapId: 22399
|
1023
|
+
},
|
1024
|
+
{
|
1025
|
+
chainId: 1,
|
1026
|
+
tokenAddress:
|
1027
|
+
'0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::aptos_launch_token::AptosLaunchToken',
|
1028
|
+
name: 'AptosLaunch Token',
|
1029
|
+
symbol: 'ALT',
|
1030
|
+
decimals: 8,
|
1031
|
+
bridge: null,
|
1032
|
+
panoraSymbol: 'ALT',
|
1033
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ALT.png',
|
1034
|
+
websiteUrl: 'https://aptoslaunch.io',
|
1035
|
+
category: 'Native',
|
1036
|
+
isInPanoraTokenList: true,
|
1037
|
+
isBanned: false,
|
1038
|
+
panoraOrderIndex: 200,
|
1039
|
+
coingeckoId: 'aptos-launch-token',
|
1040
|
+
coinMarketCapId: 22065
|
1041
|
+
},
|
1042
|
+
{
|
1043
|
+
chainId: 1,
|
1044
|
+
tokenAddress: '0x7c0322595a73b3fc53bb166f5783470afeb1ed9f46d1176db62139991505dc61::abel_coin::AbelCoin',
|
1045
|
+
name: 'Abel Coin',
|
1046
|
+
symbol: 'ABEL',
|
1047
|
+
decimals: 8,
|
1048
|
+
bridge: null,
|
1049
|
+
panoraSymbol: 'ABEL',
|
1050
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ABEL.svg',
|
1051
|
+
websiteUrl: 'https://abelfinance.xyz',
|
1052
|
+
category: 'Native',
|
1053
|
+
isInPanoraTokenList: true,
|
1054
|
+
isBanned: false,
|
1055
|
+
panoraOrderIndex: 205,
|
1056
|
+
coingeckoId: 'abel-finance',
|
1057
|
+
coinMarketCapId: 22959
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
chainId: 1,
|
1061
|
+
tokenAddress: '0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos',
|
1062
|
+
name: 'Ditto Staked Aptos',
|
1063
|
+
symbol: 'stAPT',
|
1064
|
+
decimals: 8,
|
1065
|
+
bridge: null,
|
1066
|
+
panoraSymbol: 'stAPT',
|
1067
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/stAptDitto.png',
|
1068
|
+
websiteUrl: 'https://www.dittofinance.io',
|
1069
|
+
category: 'Native',
|
1070
|
+
isInPanoraTokenList: true,
|
1071
|
+
isBanned: false,
|
1072
|
+
panoraOrderIndex: 210,
|
1073
|
+
coingeckoId: 'ditto-staked-aptos',
|
1074
|
+
coinMarketCapId: 22290
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
chainId: 1,
|
1078
|
+
tokenAddress: '0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T',
|
1079
|
+
name: 'Tether USD',
|
1080
|
+
symbol: 'USDT',
|
1081
|
+
decimals: 6,
|
1082
|
+
bridge: 'Wormhole',
|
1083
|
+
panoraSymbol: 'whUSDT',
|
1084
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT.svg',
|
1085
|
+
websiteUrl: null,
|
1086
|
+
category: 'Bridged',
|
1087
|
+
isInPanoraTokenList: true,
|
1088
|
+
isBanned: false,
|
1089
|
+
panoraOrderIndex: 215,
|
1090
|
+
coingeckoId: 'tether',
|
1091
|
+
coinMarketCapId: 825
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
chainId: 1,
|
1095
|
+
tokenAddress:
|
1096
|
+
'0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin',
|
1097
|
+
name: 'Tortuga Staked Aptos',
|
1098
|
+
symbol: 'tAPT',
|
1099
|
+
decimals: 8,
|
1100
|
+
bridge: null,
|
1101
|
+
panoraSymbol: 'tAPT',
|
1102
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/tAptTortuga.png',
|
1103
|
+
websiteUrl: 'https://tortuga.finance',
|
1104
|
+
category: 'Native',
|
1105
|
+
isInPanoraTokenList: true,
|
1106
|
+
isBanned: false,
|
1107
|
+
panoraOrderIndex: 220,
|
1108
|
+
coingeckoId: 'tortuga-staked-aptos',
|
1109
|
+
coinMarketCapId: 22412
|
1110
|
+
},
|
1111
|
+
{
|
1112
|
+
chainId: 1,
|
1113
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin',
|
1114
|
+
name: 'Tether USD',
|
1115
|
+
symbol: 'USDT',
|
1116
|
+
decimals: 6,
|
1117
|
+
bridge: 'Celer',
|
1118
|
+
panoraSymbol: 'ceUSDT',
|
1119
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT.svg',
|
1120
|
+
websiteUrl: null,
|
1121
|
+
category: 'Bridged',
|
1122
|
+
isInPanoraTokenList: true,
|
1123
|
+
isBanned: false,
|
1124
|
+
panoraOrderIndex: 225,
|
1125
|
+
coingeckoId: 'tether',
|
1126
|
+
coinMarketCapId: 825
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
chainId: 1,
|
1130
|
+
tokenAddress: '0xfbab9fb68bd2103925317b6a540baa20087b1e7a7a4eb90badee04abb6b5a16f::blt::Blt',
|
1131
|
+
name: 'Blocto Token',
|
1132
|
+
symbol: 'BLT',
|
1133
|
+
decimals: 8,
|
1134
|
+
bridge: null,
|
1135
|
+
panoraSymbol: 'BLT',
|
1136
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BLT.png',
|
1137
|
+
websiteUrl: null,
|
1138
|
+
category: 'Native',
|
1139
|
+
isInPanoraTokenList: true,
|
1140
|
+
isBanned: false,
|
1141
|
+
panoraOrderIndex: 230,
|
1142
|
+
coingeckoId: 'blocto-token',
|
1143
|
+
coinMarketCapId: null
|
1144
|
+
},
|
1145
|
+
{
|
1146
|
+
chainId: 1,
|
1147
|
+
tokenAddress: '0xe9c192ff55cffab3963c695cff6dbf9dad6aff2bb5ac19a6415cad26a81860d9::mee_coin::MeeCoin',
|
1148
|
+
name: 'Meeiro',
|
1149
|
+
symbol: 'MEE',
|
1150
|
+
decimals: 6,
|
1151
|
+
bridge: null,
|
1152
|
+
panoraSymbol: 'MEE',
|
1153
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MEE.svg',
|
1154
|
+
websiteUrl: 'https://meeiro.xyz',
|
1155
|
+
category: 'Native',
|
1156
|
+
isInPanoraTokenList: true,
|
1157
|
+
isBanned: false,
|
1158
|
+
panoraOrderIndex: 235,
|
1159
|
+
coingeckoId: null,
|
1160
|
+
coinMarketCapId: 22705
|
1161
|
+
},
|
1162
|
+
{
|
1163
|
+
chainId: 1,
|
1164
|
+
tokenAddress: '0x52ab49a4039c3d2b0aa6e0a00aaed75dcff72a3120ba3610f62d1d0b6032345a::war_coin::WarCoin',
|
1165
|
+
name: 'War Coin',
|
1166
|
+
symbol: 'WAR',
|
1167
|
+
decimals: 8,
|
1168
|
+
bridge: null,
|
1169
|
+
panoraSymbol: 'WAR',
|
1170
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WAR.png',
|
1171
|
+
websiteUrl: 'https://werewolfandwitch.xyz',
|
1172
|
+
category: 'Native',
|
1173
|
+
isInPanoraTokenList: true,
|
1174
|
+
isBanned: false,
|
1175
|
+
panoraOrderIndex: 240,
|
1176
|
+
coingeckoId: 'war-coin',
|
1177
|
+
coinMarketCapId: null
|
1178
|
+
},
|
1179
|
+
{
|
1180
|
+
chainId: 1,
|
1181
|
+
tokenAddress: '0x16fe2df00ea7dde4a63409201f7f4e536bde7bb7335526a35d05111e68aa322c::AnimeCoin::ANI',
|
1182
|
+
name: 'AnimeSwap Coin',
|
1183
|
+
symbol: 'ANI',
|
1184
|
+
decimals: 8,
|
1185
|
+
bridge: null,
|
1186
|
+
panoraSymbol: 'ANI',
|
1187
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ANI.png',
|
1188
|
+
websiteUrl: 'https://animeswap.org',
|
1189
|
+
category: 'Native',
|
1190
|
+
isInPanoraTokenList: true,
|
1191
|
+
isBanned: false,
|
1192
|
+
panoraOrderIndex: 245,
|
1193
|
+
coingeckoId: 'animeswap',
|
1194
|
+
coinMarketCapId: 22650
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
chainId: 1,
|
1198
|
+
tokenAddress: '0xc71d94c49826b7d81d740d5bfb80b001a356198ed7b8005ae24ccedff82b299c::bridge::APTS',
|
1199
|
+
name: 'APTS Token',
|
1200
|
+
symbol: 'APTS',
|
1201
|
+
decimals: 8,
|
1202
|
+
bridge: null,
|
1203
|
+
panoraSymbol: 'APTS',
|
1204
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APTS.png',
|
1205
|
+
websiteUrl: 'https://bluemove.net/collection/apts',
|
1206
|
+
category: 'Native',
|
1207
|
+
isInPanoraTokenList: true,
|
1208
|
+
isBanned: false,
|
1209
|
+
panoraOrderIndex: 250,
|
1210
|
+
coingeckoId: null,
|
1211
|
+
coinMarketCapId: null
|
1212
|
+
},
|
1213
|
+
{
|
1214
|
+
chainId: 1,
|
1215
|
+
tokenAddress: '0x14b0ef0ec69f346bea3dfa0c5a8c3942fb05c08760059948f9f24c02cd0d4fd8::mover_token::Mover',
|
1216
|
+
name: 'Mover',
|
1217
|
+
symbol: 'MOVER',
|
1218
|
+
decimals: 8,
|
1219
|
+
bridge: null,
|
1220
|
+
panoraSymbol: 'MOVER',
|
1221
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MOVER.svg',
|
1222
|
+
websiteUrl: 'https://mov3r.xyz',
|
1223
|
+
category: 'Native',
|
1224
|
+
isInPanoraTokenList: true,
|
1225
|
+
isBanned: false,
|
1226
|
+
panoraOrderIndex: 255,
|
1227
|
+
coingeckoId: 'mover-xyz',
|
1228
|
+
coinMarketCapId: 23767
|
1229
|
+
},
|
1230
|
+
{
|
1231
|
+
chainId: 1,
|
1232
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin',
|
1233
|
+
name: 'USD Coin',
|
1234
|
+
symbol: 'USDC',
|
1235
|
+
decimals: 6,
|
1236
|
+
bridge: 'Celer',
|
1237
|
+
panoraSymbol: 'ceUSDC',
|
1238
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
1239
|
+
websiteUrl: null,
|
1240
|
+
category: 'Bridged',
|
1241
|
+
isInPanoraTokenList: true,
|
1242
|
+
isBanned: false,
|
1243
|
+
panoraOrderIndex: 260,
|
1244
|
+
coingeckoId: 'usd-coin',
|
1245
|
+
coinMarketCapId: 3408
|
1246
|
+
},
|
1247
|
+
{
|
1248
|
+
chainId: 1,
|
1249
|
+
tokenAddress: '0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA',
|
1250
|
+
name: 'Argo USD',
|
1251
|
+
symbol: 'USDA',
|
1252
|
+
decimals: 6,
|
1253
|
+
bridge: null,
|
1254
|
+
panoraSymbol: 'USDA',
|
1255
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDA.png',
|
1256
|
+
websiteUrl: 'https://argo.fi',
|
1257
|
+
category: 'Native',
|
1258
|
+
isInPanoraTokenList: true,
|
1259
|
+
isBanned: false,
|
1260
|
+
panoraOrderIndex: 265,
|
1261
|
+
coingeckoId: null,
|
1262
|
+
coinMarketCapId: null
|
1263
|
+
},
|
1264
|
+
{
|
1265
|
+
chainId: 1,
|
1266
|
+
tokenAddress: '0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDD',
|
1267
|
+
name: 'Decentralized USD',
|
1268
|
+
symbol: 'USDD',
|
1269
|
+
decimals: 6,
|
1270
|
+
bridge: null,
|
1271
|
+
panoraSymbol: 'USDD',
|
1272
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDD.png',
|
1273
|
+
websiteUrl: null,
|
1274
|
+
category: 'Native',
|
1275
|
+
isInPanoraTokenList: false,
|
1276
|
+
isBanned: false,
|
1277
|
+
panoraOrderIndex: 270,
|
1278
|
+
coingeckoId: 'usdd',
|
1279
|
+
coinMarketCapId: null
|
1280
|
+
},
|
1281
|
+
{
|
1282
|
+
chainId: 1,
|
1283
|
+
tokenAddress: '0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T',
|
1284
|
+
name: 'Wrapped BTC',
|
1285
|
+
symbol: 'WBTC',
|
1286
|
+
decimals: 8,
|
1287
|
+
bridge: 'Wormhole',
|
1288
|
+
panoraSymbol: 'whWBTC',
|
1289
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
|
1290
|
+
websiteUrl: null,
|
1291
|
+
category: 'Bridged',
|
1292
|
+
isInPanoraTokenList: true,
|
1293
|
+
isBanned: false,
|
1294
|
+
panoraOrderIndex: 275,
|
1295
|
+
coingeckoId: 'bitcoin',
|
1296
|
+
coinMarketCapId: 1
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
chainId: 1,
|
1300
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin',
|
1301
|
+
name: 'Wrapped BTC',
|
1302
|
+
symbol: 'WBTC',
|
1303
|
+
decimals: 8,
|
1304
|
+
bridge: 'Celer',
|
1305
|
+
panoraSymbol: 'ceWBTC',
|
1306
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BTC.webp',
|
1307
|
+
websiteUrl: null,
|
1308
|
+
category: 'Bridged',
|
1309
|
+
isInPanoraTokenList: false,
|
1310
|
+
isBanned: false,
|
1311
|
+
panoraOrderIndex: 280,
|
1312
|
+
coingeckoId: 'bitcoin',
|
1313
|
+
coinMarketCapId: 1
|
1314
|
+
},
|
1315
|
+
{
|
1316
|
+
chainId: 1,
|
1317
|
+
tokenAddress: '0xcc8a89c8dce9693d354449f1f73e60e14e347417854f029db5bc8e7454008abb::coin::T',
|
1318
|
+
name: 'Wrapped Ether',
|
1319
|
+
symbol: 'WETH',
|
1320
|
+
decimals: 8,
|
1321
|
+
bridge: 'Wormhole',
|
1322
|
+
panoraSymbol: 'whWETH',
|
1323
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
|
1324
|
+
websiteUrl: null,
|
1325
|
+
category: 'Bridged',
|
1326
|
+
isInPanoraTokenList: true,
|
1327
|
+
isBanned: false,
|
1328
|
+
panoraOrderIndex: 285,
|
1329
|
+
coingeckoId: 'ethereum',
|
1330
|
+
coinMarketCapId: 1027
|
1331
|
+
},
|
1332
|
+
{
|
1333
|
+
chainId: 1,
|
1334
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin',
|
1335
|
+
name: 'Wrapper Ether',
|
1336
|
+
symbol: 'WETH',
|
1337
|
+
decimals: 8,
|
1338
|
+
bridge: 'Celer',
|
1339
|
+
panoraSymbol: 'ceWETH',
|
1340
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WETH.svg',
|
1341
|
+
websiteUrl: null,
|
1342
|
+
category: 'Bridged',
|
1343
|
+
isInPanoraTokenList: true,
|
1344
|
+
isBanned: false,
|
1345
|
+
panoraOrderIndex: 290,
|
1346
|
+
coingeckoId: 'ethereum',
|
1347
|
+
coinMarketCapId: 1027
|
1348
|
+
},
|
1349
|
+
{
|
1350
|
+
chainId: 1,
|
1351
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin',
|
1352
|
+
name: 'Dai Stablecoin',
|
1353
|
+
symbol: 'DAI',
|
1354
|
+
decimals: 8,
|
1355
|
+
bridge: 'Celer',
|
1356
|
+
panoraSymbol: 'ceDAI',
|
1357
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DAI.svg',
|
1358
|
+
websiteUrl: null,
|
1359
|
+
category: 'Bridged',
|
1360
|
+
isInPanoraTokenList: false,
|
1361
|
+
isBanned: false,
|
1362
|
+
panoraOrderIndex: 295,
|
1363
|
+
coingeckoId: 'dai',
|
1364
|
+
coinMarketCapId: 4943
|
1365
|
+
},
|
1366
|
+
{
|
1367
|
+
chainId: 1,
|
1368
|
+
tokenAddress: '0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T',
|
1369
|
+
name: 'Wrapped BNB',
|
1370
|
+
symbol: 'WBNB',
|
1371
|
+
decimals: 8,
|
1372
|
+
bridge: 'Wormhole',
|
1373
|
+
panoraSymbol: 'whWBNB',
|
1374
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BNB.svg',
|
1375
|
+
websiteUrl: null,
|
1376
|
+
category: 'Bridged',
|
1377
|
+
isInPanoraTokenList: false,
|
1378
|
+
isBanned: false,
|
1379
|
+
panoraOrderIndex: 300,
|
1380
|
+
coingeckoId: 'binancecoin',
|
1381
|
+
coinMarketCapId: 1839
|
1382
|
+
},
|
1383
|
+
{
|
1384
|
+
chainId: 1,
|
1385
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin',
|
1386
|
+
name: 'Wrapped BNB',
|
1387
|
+
symbol: 'WBNB',
|
1388
|
+
decimals: 8,
|
1389
|
+
bridge: 'Celer',
|
1390
|
+
panoraSymbol: 'ceWBNB',
|
1391
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BNB.svg',
|
1392
|
+
websiteUrl: null,
|
1393
|
+
category: 'Bridged',
|
1394
|
+
isInPanoraTokenList: true,
|
1395
|
+
isBanned: false,
|
1396
|
+
panoraOrderIndex: 305,
|
1397
|
+
coingeckoId: 'binancecoin',
|
1398
|
+
coinMarketCapId: 1839
|
1399
|
+
},
|
1400
|
+
{
|
1401
|
+
chainId: 1,
|
1402
|
+
tokenAddress: '0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T',
|
1403
|
+
name: 'Solana',
|
1404
|
+
symbol: 'SOL',
|
1405
|
+
decimals: 8,
|
1406
|
+
bridge: 'Wormhole',
|
1407
|
+
panoraSymbol: 'whSOL',
|
1408
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SOL.svg',
|
1409
|
+
websiteUrl: null,
|
1410
|
+
category: 'Bridged',
|
1411
|
+
isInPanoraTokenList: true,
|
1412
|
+
isBanned: false,
|
1413
|
+
panoraOrderIndex: 310,
|
1414
|
+
coingeckoId: 'solana',
|
1415
|
+
coinMarketCapId: 5426
|
1416
|
+
},
|
1417
|
+
{
|
1418
|
+
chainId: 1,
|
1419
|
+
tokenAddress: '0x4def3d3dee27308886f0a3611dd161ce34f977a9a5de4e80b237225923492a2a::coin::T',
|
1420
|
+
name: 'Gari',
|
1421
|
+
symbol: 'GARI',
|
1422
|
+
decimals: 8,
|
1423
|
+
bridge: 'Wormhole',
|
1424
|
+
panoraSymbol: 'whGARI',
|
1425
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/GARI.svg',
|
1426
|
+
websiteUrl: 'https://gari.network',
|
1427
|
+
category: 'Bridged',
|
1428
|
+
isInPanoraTokenList: true,
|
1429
|
+
isBanned: false,
|
1430
|
+
panoraOrderIndex: 315,
|
1431
|
+
coingeckoId: 'gari-network',
|
1432
|
+
coinMarketCapId: 12969
|
1433
|
+
},
|
1434
|
+
{
|
1435
|
+
chainId: 1,
|
1436
|
+
tokenAddress: '0x5a1e84cdd217034d764abb91bf20aa0536c5a8c900831a37b393fe3af98c3f55::thepeoplecoin::The_People',
|
1437
|
+
name: 'The People',
|
1438
|
+
symbol: 'People',
|
1439
|
+
decimals: 6,
|
1440
|
+
bridge: null,
|
1441
|
+
panoraSymbol: 'People',
|
1442
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/PEOPLE.png',
|
1443
|
+
websiteUrl: 'https://thepeopleapt.xyz',
|
1444
|
+
category: 'Native',
|
1445
|
+
isInPanoraTokenList: false,
|
1446
|
+
isBanned: false,
|
1447
|
+
panoraOrderIndex: 100000,
|
1448
|
+
coingeckoId: null,
|
1449
|
+
coinMarketCapId: null
|
1450
|
+
},
|
1451
|
+
{
|
1452
|
+
chainId: 1,
|
1453
|
+
tokenAddress:
|
1454
|
+
'0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::move_ecosystem_fund::MoveEcosystemFund',
|
1455
|
+
name: 'Move Ecosystem Fund',
|
1456
|
+
symbol: 'MOVE',
|
1457
|
+
decimals: 8,
|
1458
|
+
bridge: null,
|
1459
|
+
panoraSymbol: 'MOVE',
|
1460
|
+
logoUrl: null,
|
1461
|
+
websiteUrl: null,
|
1462
|
+
category: 'Native',
|
1463
|
+
isInPanoraTokenList: false,
|
1464
|
+
isBanned: false,
|
1465
|
+
panoraOrderIndex: 100000,
|
1466
|
+
coingeckoId: null,
|
1467
|
+
coinMarketCapId: null
|
1468
|
+
},
|
1469
|
+
{
|
1470
|
+
chainId: 1,
|
1471
|
+
tokenAddress: '0xc91d826e29a3183eb3b6f6aa3a722089fdffb8e9642b94c5fcd4c48d035c0080::coin::T',
|
1472
|
+
name: 'USD Coin (Wormhole Solana)',
|
1473
|
+
symbol: 'USDCso',
|
1474
|
+
decimals: 6,
|
1475
|
+
bridge: 'Wormhole',
|
1476
|
+
panoraSymbol: 'whUSDCso',
|
1477
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
1478
|
+
websiteUrl: null,
|
1479
|
+
category: 'Bridged',
|
1480
|
+
isInPanoraTokenList: false,
|
1481
|
+
isBanned: false,
|
1482
|
+
panoraOrderIndex: 100000,
|
1483
|
+
coingeckoId: 'usd-coin',
|
1484
|
+
coinMarketCapId: 3408
|
1485
|
+
},
|
1486
|
+
{
|
1487
|
+
chainId: 1,
|
1488
|
+
tokenAddress: '0x389dbbc6884a1d5b1ab4e1df2913a8c1b01251e50aed377554372b2842c5e3ef::EONcoin::EONCoin',
|
1489
|
+
name: 'EON',
|
1490
|
+
symbol: 'EON',
|
1491
|
+
decimals: 8,
|
1492
|
+
bridge: null,
|
1493
|
+
panoraSymbol: 'EON',
|
1494
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/EON.svg',
|
1495
|
+
websiteUrl: 'https://eonlabz.com',
|
1496
|
+
category: 'Native',
|
1497
|
+
isInPanoraTokenList: false,
|
1498
|
+
isBanned: false,
|
1499
|
+
panoraOrderIndex: 100000,
|
1500
|
+
coingeckoId: null,
|
1501
|
+
coinMarketCapId: null
|
1502
|
+
},
|
1503
|
+
{
|
1504
|
+
chainId: 1,
|
1505
|
+
tokenAddress: '0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin',
|
1506
|
+
name: 'Binance USD',
|
1507
|
+
symbol: 'BUSD',
|
1508
|
+
decimals: 8,
|
1509
|
+
bridge: 'Celer',
|
1510
|
+
panoraSymbol: 'ceBUSD',
|
1511
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUSD.png',
|
1512
|
+
websiteUrl: null,
|
1513
|
+
category: 'Bridged',
|
1514
|
+
isInPanoraTokenList: false,
|
1515
|
+
isBanned: false,
|
1516
|
+
panoraOrderIndex: 100000,
|
1517
|
+
coingeckoId: 'binance-usd',
|
1518
|
+
coinMarketCapId: null
|
1519
|
+
},
|
1520
|
+
{
|
1521
|
+
chainId: 1,
|
1522
|
+
tokenAddress: '0x25a64579760a4c64be0d692327786a6375ec80740152851490cfd0b53604cf95::coin::ETERN',
|
1523
|
+
name: 'Eternal Token',
|
1524
|
+
symbol: 'ETERN',
|
1525
|
+
decimals: 8,
|
1526
|
+
bridge: null,
|
1527
|
+
panoraSymbol: 'ETERN',
|
1528
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ETERN.svg',
|
1529
|
+
websiteUrl: 'https://eternalfinance.io',
|
1530
|
+
category: 'Native',
|
1531
|
+
isInPanoraTokenList: false,
|
1532
|
+
isBanned: false,
|
1533
|
+
panoraOrderIndex: 100000,
|
1534
|
+
coingeckoId: null,
|
1535
|
+
coinMarketCapId: null
|
1536
|
+
},
|
1537
|
+
{
|
1538
|
+
chainId: 1,
|
1539
|
+
tokenAddress: '0xd916a950d4c1279df4aa0d6f32011842dc5c633a45c11ac5019232c159d115bb::coin::T',
|
1540
|
+
name: 'wTBT Pool',
|
1541
|
+
symbol: 'wTBT',
|
1542
|
+
decimals: 8,
|
1543
|
+
bridge: null,
|
1544
|
+
panoraSymbol: 'wTBT',
|
1545
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/WTBT.svg',
|
1546
|
+
websiteUrl: 'https://www.tprotocol.io',
|
1547
|
+
category: 'Native',
|
1548
|
+
isInPanoraTokenList: false,
|
1549
|
+
isBanned: false,
|
1550
|
+
panoraOrderIndex: 100000,
|
1551
|
+
coingeckoId: 'wtbt',
|
1552
|
+
coinMarketCapId: null
|
1553
|
+
},
|
1554
|
+
{
|
1555
|
+
chainId: 1,
|
1556
|
+
tokenAddress: '0xccc9620d38c4f3991fa68a03ad98ef3735f18d04717cb75d7a1300dd8a7eed75::coin::T',
|
1557
|
+
name: 'Binance USD',
|
1558
|
+
symbol: 'BUSD',
|
1559
|
+
decimals: 8,
|
1560
|
+
bridge: 'Wormhole',
|
1561
|
+
panoraSymbol: 'whBUSD',
|
1562
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BUSD.png',
|
1563
|
+
websiteUrl: null,
|
1564
|
+
category: 'Bridged',
|
1565
|
+
isInPanoraTokenList: false,
|
1566
|
+
isBanned: false,
|
1567
|
+
panoraOrderIndex: 100000,
|
1568
|
+
coingeckoId: 'binance-usd',
|
1569
|
+
coinMarketCapId: null
|
1570
|
+
},
|
1571
|
+
{
|
1572
|
+
chainId: 1,
|
1573
|
+
tokenAddress: '0x777821c78442e17d82c3d7a371f42de7189e4248e529fe6eee6bca40ddbb::apcoin::ApCoin',
|
1574
|
+
name: 'APass Coin',
|
1575
|
+
symbol: 'APC',
|
1576
|
+
decimals: 8,
|
1577
|
+
bridge: null,
|
1578
|
+
panoraSymbol: 'APC',
|
1579
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APC.svg',
|
1580
|
+
websiteUrl: 'https://aptpp.com',
|
1581
|
+
category: 'Native',
|
1582
|
+
isInPanoraTokenList: false,
|
1583
|
+
isBanned: false,
|
1584
|
+
panoraOrderIndex: 100000,
|
1585
|
+
coingeckoId: null,
|
1586
|
+
coinMarketCapId: 23226
|
1587
|
+
},
|
1588
|
+
{
|
1589
|
+
chainId: 1,
|
1590
|
+
tokenAddress: '0x9a19f4c81f7dc7b8ae6f568d562e6fb056c3894303229c91f73f34c24b0403b0::luffycoin::Luffy',
|
1591
|
+
name: 'LUFFY',
|
1592
|
+
symbol: 'LUFFY',
|
1593
|
+
decimals: 6,
|
1594
|
+
bridge: null,
|
1595
|
+
panoraSymbol: 'LUFFY',
|
1596
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LUFFY.webp',
|
1597
|
+
websiteUrl: null,
|
1598
|
+
category: 'Native',
|
1599
|
+
isInPanoraTokenList: false,
|
1600
|
+
isBanned: false,
|
1601
|
+
panoraOrderIndex: 100000,
|
1602
|
+
coingeckoId: null,
|
1603
|
+
coinMarketCapId: null
|
1604
|
+
},
|
1605
|
+
{
|
1606
|
+
chainId: 1,
|
1607
|
+
tokenAddress: '0xcc78307c77f1c2c0fdfee17269bfca7876a0b35438c3442417480c0d5c370fbc::AptopadCoin::APD',
|
1608
|
+
name: 'Aptopad Coin',
|
1609
|
+
symbol: 'APD',
|
1610
|
+
decimals: 8,
|
1611
|
+
bridge: null,
|
1612
|
+
panoraSymbol: 'APD',
|
1613
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APD.png',
|
1614
|
+
websiteUrl: 'https://aptopad.io',
|
1615
|
+
category: 'Native',
|
1616
|
+
isInPanoraTokenList: false,
|
1617
|
+
isBanned: false,
|
1618
|
+
panoraOrderIndex: 100000,
|
1619
|
+
coingeckoId: 'aptopad',
|
1620
|
+
coinMarketCapId: 24733
|
1621
|
+
},
|
1622
|
+
{
|
1623
|
+
chainId: 1,
|
1624
|
+
tokenAddress: '0xced3e98a47279b4d39a75fa8da867e2e8383d5d8ce7e59b2964a9469616a761b::coin::T',
|
1625
|
+
name: 'Wrapped SUI',
|
1626
|
+
symbol: 'WSUI',
|
1627
|
+
decimals: 8,
|
1628
|
+
bridge: null,
|
1629
|
+
panoraSymbol: 'WSUI',
|
1630
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SUI.svg',
|
1631
|
+
websiteUrl: null,
|
1632
|
+
category: 'Native',
|
1633
|
+
isInPanoraTokenList: false,
|
1634
|
+
isBanned: false,
|
1635
|
+
panoraOrderIndex: 100000,
|
1636
|
+
coingeckoId: null,
|
1637
|
+
coinMarketCapId: null
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
chainId: 1,
|
1641
|
+
tokenAddress: '0xe1d39a72bd69bc2ebfe008bb925badb23a32883b077218b9e167f74cf703db1a::uptos::UptosCoin',
|
1642
|
+
name: 'Uptos',
|
1643
|
+
symbol: 'UPT',
|
1644
|
+
decimals: 8,
|
1645
|
+
bridge: null,
|
1646
|
+
panoraSymbol: 'UPT',
|
1647
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/UPT.svg',
|
1648
|
+
websiteUrl: null,
|
1649
|
+
category: 'Native',
|
1650
|
+
isInPanoraTokenList: false,
|
1651
|
+
isBanned: false,
|
1652
|
+
panoraOrderIndex: 100000,
|
1653
|
+
coingeckoId: null,
|
1654
|
+
coinMarketCapId: null
|
1655
|
+
},
|
1656
|
+
{
|
1657
|
+
chainId: 1,
|
1658
|
+
tokenAddress: '0x33afc05395020c12a31ada7d7d833f31ae1dd892124edec50297c7d608a6e7bd::NEBULA::NEBULA',
|
1659
|
+
name: 'Nebula',
|
1660
|
+
symbol: 'NBUL',
|
1661
|
+
decimals: 8,
|
1662
|
+
bridge: null,
|
1663
|
+
panoraSymbol: 'NBUL',
|
1664
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/NBUL.svg',
|
1665
|
+
websiteUrl: 'https://nebuladao.space',
|
1666
|
+
category: 'Native',
|
1667
|
+
isInPanoraTokenList: false,
|
1668
|
+
isBanned: false,
|
1669
|
+
panoraOrderIndex: 100000,
|
1670
|
+
coingeckoId: null,
|
1671
|
+
coinMarketCapId: null
|
1672
|
+
},
|
1673
|
+
{
|
1674
|
+
chainId: 1,
|
1675
|
+
tokenAddress: '0x9906c12b3b7a12721b9dddf23e6dd5ff5dfc93c5241dada855780758b01fedd3::DOOT_SKELETON::DOOT_SKELETON',
|
1676
|
+
name: 'DOOT Skeleton',
|
1677
|
+
symbol: 'DOOT',
|
1678
|
+
decimals: 8,
|
1679
|
+
bridge: null,
|
1680
|
+
panoraSymbol: 'DOOT',
|
1681
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DOOT.svg',
|
1682
|
+
websiteUrl: 'https://skeltal.io',
|
1683
|
+
category: 'Native',
|
1684
|
+
isInPanoraTokenList: false,
|
1685
|
+
isBanned: false,
|
1686
|
+
panoraOrderIndex: 100000,
|
1687
|
+
coingeckoId: null,
|
1688
|
+
coinMarketCapId: null
|
1689
|
+
},
|
1690
|
+
{
|
1691
|
+
chainId: 1,
|
1692
|
+
tokenAddress: '0x8235f05ea1901e682bc09b3be93eba0727e94c020ccb0e57074843315c675521::BLADEEWIFHAT::BLADEEWIFHAT',
|
1693
|
+
name: 'bladeewifhat',
|
1694
|
+
symbol: 'BLADEE',
|
1695
|
+
decimals: 8,
|
1696
|
+
bridge: null,
|
1697
|
+
panoraSymbol: 'BLADEE',
|
1698
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/BLADEE.jpg',
|
1699
|
+
websiteUrl: null,
|
1700
|
+
category: 'Native',
|
1701
|
+
isInPanoraTokenList: false,
|
1702
|
+
isBanned: false,
|
1703
|
+
panoraOrderIndex: 100000,
|
1704
|
+
coingeckoId: null,
|
1705
|
+
coinMarketCapId: null
|
1706
|
+
},
|
1707
|
+
{
|
1708
|
+
chainId: 1,
|
1709
|
+
tokenAddress: '0x3be1b0966a7f400c1ea57e6ddfe5f060282592a1f4df4d45872a7c8bc46b5ba5::zapdos::Zapdos',
|
1710
|
+
name: 'Zapdos',
|
1711
|
+
symbol: 'ZAP',
|
1712
|
+
decimals: 1,
|
1713
|
+
bridge: null,
|
1714
|
+
panoraSymbol: 'ZAP',
|
1715
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ZAP.png',
|
1716
|
+
websiteUrl: 'https://zapdos.dev',
|
1717
|
+
category: 'Native',
|
1718
|
+
isInPanoraTokenList: false,
|
1719
|
+
isBanned: false,
|
1720
|
+
panoraOrderIndex: 100000,
|
1721
|
+
coingeckoId: null,
|
1722
|
+
coinMarketCapId: null
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
chainId: 1,
|
1726
|
+
tokenAddress: '0x7bdeaba6f037caf06bb5b2d57df9ee03a07e2a9df45b338ef3deb44d16c01d10::spring_coin::Spring_Coin',
|
1727
|
+
name: 'SPRING',
|
1728
|
+
symbol: 'SPRING',
|
1729
|
+
decimals: 9,
|
1730
|
+
bridge: null,
|
1731
|
+
panoraSymbol: 'SPRING',
|
1732
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/SPRING.webp',
|
1733
|
+
websiteUrl: 'https://springers.co.in',
|
1734
|
+
category: 'Native',
|
1735
|
+
isInPanoraTokenList: false,
|
1736
|
+
isBanned: false,
|
1737
|
+
panoraOrderIndex: 100000,
|
1738
|
+
coingeckoId: 'spring',
|
1739
|
+
coinMarketCapId: null
|
1740
|
+
},
|
1741
|
+
{
|
1742
|
+
chainId: 1,
|
1743
|
+
tokenAddress: '0x27975005fd8b836a905dc7f81c51f89e76091a4d0c4d694265f6eae0c05cb400::proton_a5d::PROTON_E54',
|
1744
|
+
name: 'AlpacaINU Coin',
|
1745
|
+
symbol: 'ALI',
|
1746
|
+
decimals: 6,
|
1747
|
+
bridge: null,
|
1748
|
+
panoraSymbol: 'ALI',
|
1749
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/ALI.svg',
|
1750
|
+
websiteUrl: 'https://twitter.com/AlpacaINU',
|
1751
|
+
category: 'Native',
|
1752
|
+
isInPanoraTokenList: false,
|
1753
|
+
isBanned: false,
|
1754
|
+
panoraOrderIndex: 100000,
|
1755
|
+
coingeckoId: null,
|
1756
|
+
coinMarketCapId: null
|
1757
|
+
},
|
1758
|
+
{
|
1759
|
+
chainId: 1,
|
1760
|
+
tokenAddress:
|
1761
|
+
'0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::ditto_discount_coin::DittoDiscountCoin',
|
1762
|
+
name: 'Ditto Discount Token',
|
1763
|
+
symbol: 'DTO',
|
1764
|
+
decimals: 8,
|
1765
|
+
bridge: null,
|
1766
|
+
panoraSymbol: 'DTO',
|
1767
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DTO.svg',
|
1768
|
+
websiteUrl: 'https://www.dittofinance.io',
|
1769
|
+
category: 'Native',
|
1770
|
+
isInPanoraTokenList: false,
|
1771
|
+
isBanned: false,
|
1772
|
+
panoraOrderIndex: 100000,
|
1773
|
+
coingeckoId: 'ditto-discount-token',
|
1774
|
+
coinMarketCapId: null
|
1775
|
+
},
|
1776
|
+
{
|
1777
|
+
chainId: 1,
|
1778
|
+
tokenAddress: '0xd0b4efb4be7c3508d9a26a9b5405cf9f860d0b9e5fe2f498b90e68b8d2cedd3e::legendary_meme::LegendaryMEME',
|
1779
|
+
name: 'Legendary Meme',
|
1780
|
+
symbol: 'LME',
|
1781
|
+
decimals: 8,
|
1782
|
+
bridge: null,
|
1783
|
+
panoraSymbol: 'LME',
|
1784
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LME.svg',
|
1785
|
+
websiteUrl: 'https://legendaryme.me',
|
1786
|
+
category: 'Meme',
|
1787
|
+
isInPanoraTokenList: false,
|
1788
|
+
isBanned: false,
|
1789
|
+
panoraOrderIndex: 100000,
|
1790
|
+
coingeckoId: 'legendary-meme',
|
1791
|
+
coinMarketCapId: null
|
1792
|
+
},
|
1793
|
+
{
|
1794
|
+
chainId: 1,
|
1795
|
+
tokenAddress: '0x66398cf97d29fd3825f65b37cb2773268e5438d37e20777e6a98261da0cf1f1e::ddos_coin::DDOS_COIN',
|
1796
|
+
name: 'DDOS Token',
|
1797
|
+
symbol: 'DDOS',
|
1798
|
+
decimals: 8,
|
1799
|
+
bridge: null,
|
1800
|
+
panoraSymbol: 'DDOS',
|
1801
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DDOS.svg',
|
1802
|
+
websiteUrl: 'https://ddosapt.com',
|
1803
|
+
category: 'Meme',
|
1804
|
+
isInPanoraTokenList: false,
|
1805
|
+
isBanned: false,
|
1806
|
+
panoraOrderIndex: 100000,
|
1807
|
+
coingeckoId: null,
|
1808
|
+
coinMarketCapId: null
|
1809
|
+
},
|
1810
|
+
{
|
1811
|
+
chainId: 1,
|
1812
|
+
tokenAddress: '0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T',
|
1813
|
+
name: 'Dai Stablecoin (Wormhole)',
|
1814
|
+
symbol: 'DAI',
|
1815
|
+
decimals: 8,
|
1816
|
+
bridge: 'Wormhole',
|
1817
|
+
panoraSymbol: 'whDAI',
|
1818
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/DAI.svg',
|
1819
|
+
websiteUrl: null,
|
1820
|
+
category: 'Native',
|
1821
|
+
isInPanoraTokenList: false,
|
1822
|
+
isBanned: false,
|
1823
|
+
panoraOrderIndex: 100000,
|
1824
|
+
coingeckoId: 'dai',
|
1825
|
+
coinMarketCapId: null
|
1826
|
+
},
|
1827
|
+
{
|
1828
|
+
chainId: 1,
|
1829
|
+
tokenAddress: '0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T',
|
1830
|
+
name: 'Tether USD',
|
1831
|
+
symbol: 'USDTbs',
|
1832
|
+
decimals: 8,
|
1833
|
+
bridge: 'Wormhole',
|
1834
|
+
panoraSymbol: 'USDTbs',
|
1835
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDT.svg',
|
1836
|
+
websiteUrl: null,
|
1837
|
+
category: 'Bridged',
|
1838
|
+
isInPanoraTokenList: false,
|
1839
|
+
isBanned: false,
|
1840
|
+
panoraOrderIndex: 100000,
|
1841
|
+
coingeckoId: 'tether',
|
1842
|
+
coinMarketCapId: 825
|
1843
|
+
},
|
1844
|
+
{
|
1845
|
+
chainId: 1,
|
1846
|
+
tokenAddress: '0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T',
|
1847
|
+
name: 'USD Coin (Wormhole, BSC)',
|
1848
|
+
symbol: 'USDCbs',
|
1849
|
+
decimals: 8,
|
1850
|
+
bridge: 'Wormhole',
|
1851
|
+
panoraSymbol: 'whUSDCbs',
|
1852
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
1853
|
+
websiteUrl: null,
|
1854
|
+
category: 'Bridged',
|
1855
|
+
isInPanoraTokenList: false,
|
1856
|
+
isBanned: false,
|
1857
|
+
panoraOrderIndex: 100000,
|
1858
|
+
coingeckoId: 'usd-coin',
|
1859
|
+
coinMarketCapId: 3408
|
1860
|
+
},
|
1861
|
+
{
|
1862
|
+
chainId: 1,
|
1863
|
+
tokenAddress: '0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T',
|
1864
|
+
name: 'USD Coin (Wormhole Avalanche)',
|
1865
|
+
symbol: 'USDCav',
|
1866
|
+
decimals: 6,
|
1867
|
+
bridge: 'Wormhole',
|
1868
|
+
panoraSymbol: 'whUSDCav',
|
1869
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/USDC.svg',
|
1870
|
+
websiteUrl: null,
|
1871
|
+
category: 'Bridged',
|
1872
|
+
isInPanoraTokenList: false,
|
1873
|
+
isBanned: false,
|
1874
|
+
panoraOrderIndex: 100000,
|
1875
|
+
coingeckoId: 'usd-coin',
|
1876
|
+
coinMarketCapId: 3408
|
1877
|
+
},
|
1878
|
+
{
|
1879
|
+
chainId: 1,
|
1880
|
+
tokenAddress: '0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T',
|
1881
|
+
name: 'Wrapped AVAX (Wormhole)',
|
1882
|
+
symbol: 'WAVAX',
|
1883
|
+
decimals: 8,
|
1884
|
+
bridge: 'Wormhole',
|
1885
|
+
panoraSymbol: 'whWAVAX',
|
1886
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/AVAX.webp',
|
1887
|
+
websiteUrl: null,
|
1888
|
+
category: 'Native',
|
1889
|
+
isInPanoraTokenList: false,
|
1890
|
+
isBanned: false,
|
1891
|
+
panoraOrderIndex: 100000,
|
1892
|
+
coingeckoId: 'avalanche-2',
|
1893
|
+
coinMarketCapId: 5805
|
1894
|
+
},
|
1895
|
+
{
|
1896
|
+
chainId: 1,
|
1897
|
+
tokenAddress: '0x397071c01929cc6672a17f130bd62b1bce224309029837ce4f18214cc83ce2a7::USDC::USDC',
|
1898
|
+
name: '💸 USDC-APTOS.ORG',
|
1899
|
+
symbol: 'USDC-APTOS',
|
1900
|
+
decimals: 6,
|
1901
|
+
bridge: null,
|
1902
|
+
panoraSymbol: 'USDC-APTOS',
|
1903
|
+
logoUrl: null,
|
1904
|
+
websiteUrl: null,
|
1905
|
+
category: 'Native',
|
1906
|
+
isInPanoraTokenList: false,
|
1907
|
+
isBanned: true,
|
1908
|
+
panoraOrderIndex: 100000,
|
1909
|
+
coingeckoId: 'usd-coin',
|
1910
|
+
coinMarketCapId: 3408
|
1911
|
+
},
|
1912
|
+
{
|
1913
|
+
chainId: 1,
|
1914
|
+
tokenAddress: '0x48327a479bf5c5d2e36d5e9846362cff2d99e0e27ff92859fc247893fded3fbd::APTOS::APTOS',
|
1915
|
+
name: '💸 aptclaim.net',
|
1916
|
+
symbol: '$APT',
|
1917
|
+
decimals: 6,
|
1918
|
+
bridge: null,
|
1919
|
+
panoraSymbol: '$APT',
|
1920
|
+
logoUrl: null,
|
1921
|
+
websiteUrl: null,
|
1922
|
+
category: 'Native',
|
1923
|
+
isInPanoraTokenList: false,
|
1924
|
+
isBanned: true,
|
1925
|
+
panoraOrderIndex: 100000,
|
1926
|
+
coingeckoId: null,
|
1927
|
+
coinMarketCapId: null
|
1928
|
+
},
|
1929
|
+
{
|
1930
|
+
chainId: 1,
|
1931
|
+
tokenAddress: '0xbbc4a9af0e7fa8885bda5db08028e7b882f2c2bba1e0fedbad1d8316f73f8b2f::memes::Memecoins',
|
1932
|
+
name: '⭐ aptosmeme.com',
|
1933
|
+
symbol: 'Meme',
|
1934
|
+
decimals: 8,
|
1935
|
+
bridge: null,
|
1936
|
+
panoraSymbol: 'Meme',
|
1937
|
+
logoUrl: null,
|
1938
|
+
websiteUrl: null,
|
1939
|
+
category: 'Native',
|
1940
|
+
isInPanoraTokenList: false,
|
1941
|
+
isBanned: true,
|
1942
|
+
panoraOrderIndex: 100000,
|
1943
|
+
coingeckoId: null,
|
1944
|
+
coinMarketCapId: null
|
1945
|
+
},
|
1946
|
+
{
|
1947
|
+
chainId: 1,
|
1948
|
+
tokenAddress: '0xf658475dc67a4d48295dbcea6de1dc3c9af64c1c80d4161284df369be941dafb::moon_coin::MoonCoin',
|
1949
|
+
name: 'ClaimAPTGift.com',
|
1950
|
+
symbol: 'aGift.site',
|
1951
|
+
decimals: 6,
|
1952
|
+
bridge: null,
|
1953
|
+
panoraSymbol: 'aGift.site',
|
1954
|
+
logoUrl: null,
|
1955
|
+
websiteUrl: null,
|
1956
|
+
category: 'Native',
|
1957
|
+
isInPanoraTokenList: false,
|
1958
|
+
isBanned: true,
|
1959
|
+
panoraOrderIndex: 100000,
|
1960
|
+
coingeckoId: null,
|
1961
|
+
coinMarketCapId: null
|
1962
|
+
},
|
1963
|
+
{
|
1964
|
+
chainId: 1,
|
1965
|
+
tokenAddress: '0x83b619e2d9e6e10d15ed4b714111a4cd9526c1c2ae0eec4b252a619d3e8bdda3::MAU::MAU',
|
1966
|
+
name: 'MAU',
|
1967
|
+
symbol: 'MAU',
|
1968
|
+
decimals: 8,
|
1969
|
+
bridge: null,
|
1970
|
+
panoraSymbol: 'MAU',
|
1971
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/MAU.png',
|
1972
|
+
websiteUrl: 'https://mauprotocol.com',
|
1973
|
+
category: 'Native',
|
1974
|
+
isInPanoraTokenList: false,
|
1975
|
+
isBanned: true,
|
1976
|
+
panoraOrderIndex: 100000,
|
1977
|
+
coingeckoId: null,
|
1978
|
+
coinMarketCapId: null
|
1979
|
+
},
|
1980
|
+
{
|
1981
|
+
chainId: 1,
|
1982
|
+
tokenAddress: '0xbc106d0fef7e5ce159423a1a9312e011bca7fb57f961146a2f88003a779b25c2::QUEST::QUEST',
|
1983
|
+
name: '▪ AptosQuest.io 🔸 NEW',
|
1984
|
+
symbol: 'COINS',
|
1985
|
+
decimals: 6,
|
1986
|
+
bridge: null,
|
1987
|
+
panoraSymbol: 'COINS',
|
1988
|
+
logoUrl: null,
|
1989
|
+
websiteUrl: null,
|
1990
|
+
category: 'Native',
|
1991
|
+
isInPanoraTokenList: false,
|
1992
|
+
isBanned: true,
|
1993
|
+
panoraOrderIndex: 100000,
|
1994
|
+
coingeckoId: null,
|
1995
|
+
coinMarketCapId: null
|
1996
|
+
},
|
1997
|
+
{
|
1998
|
+
chainId: 1,
|
1999
|
+
tokenAddress: '0x53a30a6e5936c0a4c5140daed34de39d17ca7fcae08f947c02e979cef98a3719::coin::LSD',
|
2000
|
+
name: 'Liquidswap',
|
2001
|
+
symbol: 'LSD',
|
2002
|
+
decimals: 8,
|
2003
|
+
bridge: null,
|
2004
|
+
panoraSymbol: 'LSD',
|
2005
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/LSD.png',
|
2006
|
+
websiteUrl: null,
|
2007
|
+
category: 'Native',
|
2008
|
+
isInPanoraTokenList: true,
|
2009
|
+
isBanned: false,
|
2010
|
+
panoraOrderIndex: 13,
|
2011
|
+
coingeckoId: 'pontem-liquidswap',
|
2012
|
+
coinMarketCapId: 22262
|
2013
|
+
},
|
2014
|
+
{
|
2015
|
+
chainId: 1,
|
2016
|
+
tokenAddress: '0x4d981c48d254c4cea6110090ad1c2890d5ea35d49cbed28e76c0d3bb90ddf873::crab_coin::CrabCoin',
|
2017
|
+
name: 'Crab Coin',
|
2018
|
+
symbol: 'CRAB',
|
2019
|
+
decimals: 8,
|
2020
|
+
bridge: null,
|
2021
|
+
panoraSymbol: 'CRAB',
|
2022
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/CRAB.svg',
|
2023
|
+
websiteUrl: 'https://www.aptosshaker.xyz',
|
2024
|
+
category: 'Native',
|
2025
|
+
isInPanoraTokenList: false,
|
2026
|
+
isBanned: false,
|
2027
|
+
panoraOrderIndex: 168,
|
2028
|
+
coingeckoId: null,
|
2029
|
+
coinMarketCapId: null
|
2030
|
+
},
|
2031
|
+
{
|
2032
|
+
chainId: 1,
|
2033
|
+
tokenAddress: '0x65957cb717d1ec5e13c003cbad0d20d8f7f95236ea0f8bb8c419e533eda73890::TOAST::TOAST',
|
2034
|
+
name: 'Aptoast',
|
2035
|
+
symbol: 'TOAST',
|
2036
|
+
decimals: 8,
|
2037
|
+
bridge: null,
|
2038
|
+
panoraSymbol: 'TOAST',
|
2039
|
+
logoUrl: 'https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/TOAST.jpg',
|
2040
|
+
websiteUrl: 'https://aptoast.com',
|
2041
|
+
category: 'Meme',
|
2042
|
+
isInPanoraTokenList: true,
|
2043
|
+
isBanned: false,
|
2044
|
+
panoraOrderIndex: 272,
|
2045
|
+
coingeckoId: null,
|
2046
|
+
coinMarketCapId: null
|
2047
|
+
}
|
2048
|
+
]
|
2049
|
+
|
2050
|
+
setTokenList(DEFAULT_TOKEN_LIST)
|