-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathdapps.ts
More file actions
496 lines (490 loc) · 16.8 KB
/
Copy pathdapps.ts
File metadata and controls
496 lines (490 loc) · 16.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
import { Dapp } from '@/interfaces/dapp'
export const dappIdsToBeRemoved = new Set([
'legends.ambire.com', // Remove legends from the list as it was replaced with rewards.ambire.com
'yearn.finance', // Remove the legacy Yarn Finance URL from the list
'getpass.civic.com', // Civic Pass got shut down
'mean.finance', // Mean Finance became Balmy, but Balmy got shut down
'polygon.lido.fi', // Lido Polygon staking was sunset on June 16th 2025
'kwenta.io', // Synthetix acquired Kwenta
'pro.opensea.io', // Open Sea Pro is no longer on e separate domain
'app.paraswap.io', // ParaSwap rebranded to Velora
'snapshot.org', // snapshot.org became snapshot.box
'play.decentraland.org', // play.decentraland.org redirects to decentraland.org
'bridge.arbitrum.io', // bridge.arbitrum.io was moved to portal.arbitrum.io
'curve.fi', // curve.fi was moved to curve.finance
'app.ether.fi', // app.ether.fi was moved to ether.fi
'core.app', // not supported,
'new.bungee.exchange', // got left hanging since Bungee moved to bungee.exchange
'multitx.bungee.exchange', // got left hanging since Bungee moved to bungee.exchange
'jumper.exchange', // jumper.exchange was moved to jumper.xyz
'app.frax.finance', // Frax moved from app.frax.finance to frax.com
'dtrinity.org', // dTrinity's dLend moved to app.dtrinity.org
// unsupported or outdated protocols returned by DefiLlama
'bridge.base.org',
'binance.com',
'securitize.io',
'gold.tether.to',
'usdtb.money',
'steakhouse.financial',
'mevcapital.com',
'paxos.com',
'circle.com',
'm0.org',
'k3.capital',
'axelar.network',
'wisdomtreeconnect.com',
'world.org',
're7labs.xyz',
'superstate.co',
'spiko.xyz',
'gmxsol.io',
'telosc.com',
'anemoy.io',
'blockanalitica.substack.com',
'agglayer.dev',
'nexusmutual.io',
'avantisfi.com',
'clearstar.xyz',
'railgun.org',
'xstocks.com',
'alphaping.ch',
'makerdao.com',
'kaio.xyz',
'digift.sg',
'dashboard.internetcomputer.org',
'kpk.io',
'dinari.com',
'opentrade.io',
'hakutora.xyz',
'brickken.com',
'gravity.xyz',
'gizatech.xyz',
't-rize.io',
'invariant.group',
'republic.com',
'tulipa.capital',
'internationalmeme.fund',
'aktionariat.com',
'aztec.network',
'vnx.li',
'varlamore.capital',
'binaryx.com',
'rari.capital',
'decentraland.org',
'internal',
'x.com',
'twitter.com'
])
export const featuredDapps = new Set([
'rewards.ambire.com',
'snapshot.box/#/s:ambire.eth',
'lido.fi',
'bitrefill.com',
'drops.bot',
'app.barterswap.xyz'
])
// NOTE: The final dApp list sorting preserves the order of this list
export const predefinedDapps: Dapp[] = [
{
id: 'rewards.ambire.com',
url: 'https://rewards.ambire.com',
name: 'Ambire Rewards',
icon: 'https://rewards.ambire.com/ambire-connect-icon.png',
description:
'Stake your $WALLET tokens, participate in the WalletDAO, and earn staking rewards.',
chainIds: [1, 8453, 10, 42161, 534352, 56],
twitter: 'ambire'
},
{
id: 'snapshot.box/#/s:ambire.eth',
url: 'https://snapshot.box/#/s:ambire.eth',
name: 'Ambire Governance',
icon: 'https://cdn.stamp.fyi/space/s:ambire.eth?s=72&cb=4b611281a79dbb15',
description: 'Vote on Ambire Wallet DAO proposals.',
chainIds: [1],
category: 'Services',
twitter: 'ambire'
},
{
id: 'drops.bot',
url: 'https://www.drops.bot/?r=ambire',
name: 'Drops',
icon: 'https://avatars.githubusercontent.com/u/175563563?v=4',
description: 'Check any crypto wallet address for unclaimed airdrops with Drops.',
twitter: 'DropsBotHQ',
category: 'Analytics'
},
{
id: 'bitrefill.com',
url: 'https://www.bitrefill.com',
name: 'Bitrefill',
icon: 'https://www.bitrefill.com/android-chrome-192x192.png',
description: 'The crypto store for digital gift cards, eSIMs, and phone refills.',
chainIds: [1, 137],
category: 'Payments',
twitter: 'bitrefill'
},
{
id: 'snapshot.box',
url: 'https://snapshot.box',
name: 'Snapshot',
icon: 'https://icons.llama.fi/snapshot.png',
description:
'Snapshot is an off-chain voting platform that allows DAOs, DeFi protocols, or NFT communities to participate in the decentralized governance easily and without gas fees.',
category: 'Services',
twitter: 'SnapshotLabs'
},
{
id: 'guild.xyz',
url: 'https://guild.xyz',
name: 'Guild',
icon: 'https://static.debank.com/image/project/logo_url/guild/1553e3322e5d5a04a91ce424f63c02b3.png',
description: 'Automated membership management for the platforms your community already uses.',
category: 'Social',
twitter: 'guildxyz'
},
{
id: 'opensea.io',
url: 'https://opensea.io',
name: 'OpenSea',
icon: 'https://static.debank.com/image/project/logo_url/opensea/4b23246fac2d4ce53bd8e8079844821c.png',
description:
"OpenSea is the world's first and largest web3 marketplace for NFTs and crypto collectibles. Browse, create, buy, sell, and auction NFTs using OpenSea today.",
category: 'NFT Marketplace',
twitter: 'opensea'
},
{
id: 'decentraland.org',
url: 'https://decentraland.org',
name: 'Decentraland',
icon: 'https://static.debank.com/image/project/logo_url/decentraland/449a5d002f7099af8320c9ea0e3d34c1.png',
description: 'Create, explore and trade in the first-ever virtual world owned by its users.',
category: 'Metaverse',
twitter: 'decentraland'
},
{
id: 'spooky.fi',
url: 'https://spooky.fi',
name: 'SpookySwap',
icon: 'https://static.debank.com/image/project/logo_url/ftm_spookyswap/d14381e7154b7cfecaa8ba7887e73b95.png',
description: 'Farm BOO with Spooky LP Tokens',
category: 'Dexs',
chainIds: [250, 199, 146, 7332],
twitter: 'SpookySwap'
},
{
id: 'looksrare.org',
url: 'https://looksrare.org',
name: 'LooksRare',
icon: 'https://static.debank.com/image/project/logo_url/looksrare/45d6664429880a23ba34359c45bab95e.png',
description: 'Buy & Sell NFTs, Get Rewards',
category: 'NFT Marketplace',
chainIds: [1],
twitter: 'LooksRareNFT'
},
{
id: 'kyberswap.com',
url: 'https://kyberswap.com',
name: 'KyberSwap',
icon: 'https://static.debank.com/image/project/logo_url/dmm_exchange/62bd3271bf61c97fbb342203f47b2de1.png',
description:
'KyberSwap is a multi-chain aggregator and DeFi hub that empowers users with the insights and tools to achieve financial autonomy. All the above while being fast, secure, and easy-to-use.',
twitter: 'KyberNetwork',
category: 'Dexes'
},
{
id: 'app.debridge.finance',
url: 'https://app.debridge.finance',
name: 'deBridge',
icon: 'https://static.debank.com/image/project/logo_url/arb_debridge/6cfd59d36a4a6c077623960a384ca889.png',
description: 'Interoperability for High Performance dApps',
twitter: 'deBridgeFinance',
category: 'Cross-Chain'
},
{
id: 'socialscan.io',
url: 'https://socialscan.io',
name: 'SocialScan',
icon: 'https://static.debank.com/image/project/logo_url/socialscan/b0001be374c286ff297a8a4614f73e8d.png',
description:
'SocialScan transforms web3 discovery with its AI-powered, community-native platform, providing a comprehensive, real-time view of assets, communities, and members across the web3 ecosystem.',
twitter: 'SocialScan_io',
category: 'Analytics'
},
{
id: 'matcha.xyz',
url: 'https://matcha.xyz',
name: 'Matcha',
icon: 'https://static.debank.com/image/project/logo_url/matcha/35fce9290caf372e1975cdf5edbafa17.png',
description:
'Matcha DEX aggregator | Search and trade over +5 million tokens across +100 exchanges on 9 chains. Trade now.',
twitter: 'matchaxyz',
category: 'Dexes'
},
{
id: 'rarible.com',
url: 'https://rarible.com',
name: 'Rarible',
icon: 'https://static.debank.com/image/project/logo_url/rarible/9dccccce16996e5dfaa40ba6a18e2542.png',
description:
'Discover, sell and buy NFTs on Rarible! Our aggregated NFT marketplace for Ethereum NFTs and Polygon NFTs powers brands, collections and creator marketplaces.',
twitter: 'rarible',
category: 'NFT Marketplace'
},
{
id: 'mirror.xyz',
url: 'https://mirror.xyz',
name: 'Mirror',
icon: 'https://static.debank.com/image/project/logo_url/mirrorxyz/728ae5326b3306d3688b218c36a1db2a.png',
description:
'Built on web3 for web3, Mirror’s robust publishing platform pushes the boundaries of writing online—whether it’s the next big white paper or a weekly community update.',
twitter: 'mirror_xyz',
category: 'Social'
},
{
id: 'app.ens.domains',
url: 'https://app.ens.domains',
name: 'ENS',
icon: 'https://static.debank.com/image/project/logo_url/ens/bdf7931c546313b4e1e6c20f82b4f183.png',
description: 'Decentralized naming for wallets, websites, & more.',
twitter: 'ensdomains',
category: 'Domain Services'
},
{
id: 'galxe.com',
url: 'https://galxe.com',
name: 'Galxe',
icon: 'https://static.debank.com/image/project/logo_url/galxe/90baa6ae2cb97b4791f02fe66abec4b2.png',
description:
'Galxe is the leading platform for building Web3 community. With over 14 million active users, Galxe has propelled the growth of Optimism, Polygon, Arbitrum, and more than 4000 partners with reward-based loyalty programs.',
twitter: 'Galxe',
category: 'Social'
},
{
id: 'layer3.xyz',
url: 'https://layer3.xyz',
name: 'Layer3',
icon: 'https://static.debank.com/image/project/logo_url/layer3/6b1383b9d78b7f75e2deefeec407e916.png',
description:
'The best way to learn, explore, and succeed in web3. Get started with Quests on Layer3 ⚡',
twitter: 'Layer3xyz',
category: 'Social'
},
{
id: 'puffer.fi',
url: 'https://quest.puffer.fi',
name: 'Puffer',
icon: 'https://static.debank.com/image/project/logo_url/puffer/4b532754bce22c0ba7fcaa3c1ac37d31.png',
description: 'Native liquid Ethereum restaking supercharged by EigenLayer.',
twitter: 'Puffer_finance',
category: 'Liquid Restaking'
},
{
id: 'whales.market',
url: 'https://app.whales.market',
name: 'Whales',
icon: 'https://static.debank.com/image/project/logo_url/whales/5224c544e051afefc9b9a2ceaec2472d.png',
description: 'Listing P2P offers for both pre-TGE token allocations and tokens/NFTs.',
twitter: 'WhalesMarket',
category: 'OTC / P2P Trading'
},
{
id: 'safe.global',
url: 'https://app.safe.global',
name: 'Safe',
icon: 'https://static.debank.com/image/project/logo_url/gnosis_safe/cd360a74475ba95d5c76c189eee7f199.png',
description: 'The most trusted platform to manage digital assets on Ethereum and EVMs.',
twitter: 'safe',
category: 'Wallet / Multisig'
},
{
id: 'mav.xyz',
url: 'https://app.mav.xyz',
name: 'Mav',
icon: 'https://static.debank.com/image/project/logo_url/maverick/a7a186ccd39807ad670d5ead78effb4e.png',
description: 'Maverick App',
twitter: 'mavprotocol',
category: 'Dexes'
},
{
id: 'dymension.xyz',
url: 'https://portal.dymension.xyz',
name: 'Dymension',
icon: 'https://static.debank.com/image/project/logo_url/dymension/1d344988cd679ad25a5a5e089d95af27.png',
description: 'Interact with the Dymension Hub, RollApps and IBC.',
twitter: 'dymensionXYZ',
category: 'Modular / Rollups'
},
{
id: 'magiceden.io',
url: 'https://magiceden.io',
name: 'Magic Eden',
icon: 'https://static.debank.com/image/project/logo_url/magiceden/aa41eeb91a72efaae247a8ac70db26d7.png',
description: 'Leading community-centric NFT marketplace.',
twitter: 'MagicEden',
category: 'NFT Marketplace'
},
{
id: 'revoke.cash',
url: 'https://revoke.cash',
name: 'Revoke',
icon: 'https://static.debank.com/image/dapp/logo_url/cdd1046d899f48bdc1793e9a3eb446d5/cdd1046d899f48bdc1793e9a3eb446d5.png',
description: 'Take back control of your wallet by revoking approvals.',
twitter: 'RevokeCash',
category: 'Security Tools'
},
{
id: 'merkly.com',
url: 'https://minter.merkly.com',
name: 'Merkly',
icon: 'https://static.debank.com/image/project/logo_url/era_merkly/58bcc73db154cf48b5fd8f86bc319323.png',
description: 'Omnichain Bridging Made Easy.',
twitter: 'MerklyOfficial',
category: 'Bridge'
},
{
id: 'tally.xyz',
url: 'https://www.tally.xyz',
name: 'Tally',
icon: 'https://static.debank.com/image/project/logo_url/tally/06a3db08a2d9039c50b1d12d25d15570.png',
description: 'DAO operations and governance management platform.',
twitter: 'tallyxyz',
category: 'DAO Tooling'
},
{
id: 'questn.com',
url: 'https://app.questn.com',
name: 'QuestN',
icon: 'https://static.debank.com/image/project/logo_url/questn/0be6e43e24ec5a9b54a0793738b15ebd.png',
description: 'Marketing, Growth and Analysis For Web3.',
twitter: 'QuestN_com',
category: 'Growth / Social'
},
{
id: 'thirdweb.com',
url: 'https://thirdweb.com',
name: 'thirdweb',
icon: 'https://static.debank.com/image/project/logo_url/thirdweb/a7eabaa7738c3916609c8fbf8f4ca54c.png',
description: 'SDKs, smart contracts, and tools for building web3 apps.',
twitter: 'thirdweb',
category: 'Developer Tools'
},
{
id: 'memecoin.org',
url: 'https://www.memecoin.org',
name: 'Memecoin',
icon: 'https://static.debank.com/image/project/logo_url/memecoin/53a4ca1a7de88327abe5706a826b2c53.png',
description: 'One MEME to rule them all.',
twitter: 'memecoin',
category: 'Meme Token'
},
{
id: 'clusters.xyz',
url: 'https://clusters.xyz',
name: 'Clusters',
icon: 'https://static.debank.com/image/project/logo_url/clusters/61f9554fb1ccd757cce6191784b8a24f.png',
description: 'A single username for all your crypto wallets across chains.',
twitter: 'clusters_xyz',
category: 'Identity'
},
{
id: 'angle.money',
url: 'https://app.angle.money',
name: 'Angle Protocol',
icon: 'https://static.debank.com/image/project/logo_url/angle/306ffce483295499c5b62e264148d468.png',
description: 'Borrow, earn, and spend Euros onchain powered by Angle.',
twitter: 'AngleProtocol',
category: 'Stablecoin / DeFi'
},
{
id: 'hey.xyz',
url: 'https://hey.xyz',
name: 'Hey',
icon: 'https://static.debank.com/image/project/logo_url/hey/0c5c0829f806c5551e16ff16cd2ccbb6.png',
description: 'Decentralized social app built on Lens Protocol.',
twitter: 'heyxyz',
category: 'Social'
},
{
id: 'baseswap.fi',
url: 'https://baseswap.fi',
name: 'BaseSwap',
icon: 'https://static.debank.com/image/dapp/logo_url/ac6367301d0f398ffb3cdbdf38c1cb15/ac6367301d0f398ffb3cdbdf38c1cb15.png',
description: 'Leading DEX on Base Chain with staking and farming.',
twitter: 'BaseSwapDEX',
category: 'Dexes'
}
]
export const defiLlamaProtocolIdsToExclude: string[] = [
'1624' // https://www.ambire.com
]
export const categoriesNotToFilterOut = ['DEX Aggregator']
export const categoriesToExclude = ['CEX', 'Developer Tools']
export const dappsNotToFilterOutByDomain = [
'snapshot.box',
'bungee.exchange',
'altitude.fi',
'zora.co',
'swap.defillama.com',
'jumper.xyz'
]
export const CATEGORY_MAP: Record<string, string> = {
'AI Agents': 'AI Agents',
'Algo-Stables': 'Stablecoins',
Analytics: 'Analytics',
'Anchor BTC': 'BTC Derivatives',
'Basis Trading': 'Derivatives',
Bridge: 'Bridges',
CDP: 'CDP',
'CDP Manager': 'CDP',
'Canonical Bridge': 'Bridges',
CeDeFi: 'CeDeFi',
Chain: 'Chains',
'Collateral Management': 'CDP',
'Cross Chain Bridge': 'Bridges',
'Cross-Chain': 'Bridges',
'DAO Tooling': 'DAO Tooling',
'DEX Aggregator': 'DEXs',
DOR: 'DOR',
'Decentralized BTC': 'BTC Derivatives',
Derivatives: 'Derivatives',
Dexes: 'DEXs',
'Domain Services': 'Domains',
Domains: 'Domains',
'Dual-Token Stablecoin': 'Stablecoins',
Farm: 'Yield',
'Growth / Social Indexes': 'Growth & Social',
Insurance: 'Insurance',
Launchpad: 'Launchpads',
Lending: 'Lending',
'Leveraged Farming': 'Yield',
'Liquid Restaking': 'Staking',
'Liquid Staking': 'Staking',
'Liquidity manager': 'Liquidity Manager',
'Modular / Rollups': 'Chains',
'NFT Marketplace': 'NFT Marketplace',
'OTC Marketplace': 'OTC Marketplace',
'Onchain Capital Allocator': 'Onchain Capital Allocator',
Options: 'Options',
'Options Vault': 'Options',
'Partially Algorithmic Stablecoin': 'Stablecoins',
Payments: 'Payments',
'Prediction Market': 'Prediction Markets',
RWA: 'RWA',
'RWA Lending': 'RWA',
'Reserve Currency': 'Reserve Currency',
'Restaked BTC': 'BTC Derivatives',
Restaking: 'Staking',
'Risk Curators': 'Risk Curators',
'Security Tools': 'Security Tools',
Services: 'Services',
SoFi: 'Hybrid Finance',
Social: 'Growth & Social',
'Staking Pool': 'Staking Pool',
Synthetics: 'Synthetics',
'Token Locker': 'Token Locker',
'Uncollateralized Lending': 'Lending',
Yield: 'Yield',
'Yield Aggregator': 'Yield',
'Yield Lottery': 'Yield'
}