forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.json
3594 lines (3594 loc) · 140 KB
/
showcase.json
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "dscvr",
"name": "DSCVR",
"oneLiner": "Social portals, community airdrops, crypto tipping on-chain",
"website": "https://dscvr.one/",
"tags": [
"SocialFi",
"Ethereum"
],
"twitter": "https://twitter.com/DSCVR1?s=20&t=qrUKGHeyFLGiBQjpj3iI9A",
"description": "DSCVR is an end-to-end decentralized Web3 social media platform that allows communities to form into groups called Portals. These Portals can be NFT gated, airdrop fungible and non-fungible tokens to their members and much more. DSCVR also allows for tipping posts in a growing number of cryptos, supporting ckBTC, a Bitcoin twin living on the Internet Computer.",
"usesInternetIdentity": true,
"stats": "200,000+ users",
"display": "Large",
"logo": "/img/showcase/dscvr_logo.webp",
"screenshots": [
"/img/showcase/dscvr_screenshot.webp"
]
},
{
"id": "bioniq",
"name": "Bioniq",
"oneLiner": "The fastest Ordinals marketplace",
"website": "https://bioniq.io/",
"tags": [
"Bitcoin",
"Enterprise",
"NFT"
],
"description": "Bioniq is the fastest Ordinals marketplace. Buy, sell, and trade with no gas fees, near-instant finality, and decentralized secure token bridging..",
"display": "Large",
"logo": "/img/showcase/bioniq-logo.jpeg",
"screenshots": [
"/img/showcase/bioniq-screenshot-min.png"
]
},
{
"id": "openchat",
"name": "OpenChat",
"oneLiner": "Decentralized alternative to WhatsApp",
"website": "https://oc.app/",
"tags": [
"SocialFi",
"Bitcoin",
"DAO"
],
"description": "OpenChat is a fully decentralized real-time messaging service that is indistinguishable from Web2 chat apps while living 100% on the blockchain. This allows users to send crypto to each other - including Bitcoin - and own a part of OpenChat through CHAT tokens.",
"usesInternetIdentity": true,
"display": "Large",
"stats": "80,000+ users",
"logo": "/img/showcase/openchat_logo.webp",
"screenshots": [
"/img/showcase/openchat-screenshot.webp"
]
},
{
"id": "icpswap",
"name": "ICPSwap",
"website": "https://icpswap.com",
"tags": [
"DeFi",
"Wallet",
"Bitcoin",
"Ethereum"
],
"description": "ICPSwap is DEX built completely end-to-end on-chain. By building the ability for anyone to swap tokens through ICPSwap leveraging the Internet Computer blockchain as the high-speed, scalable, low-cost infrastructure makes ICPSwap a first-to-market in the growing Internet Computer DeFi ecosystem.",
"usesInternetIdentity": true,
"logo": "/img/showcase/icpswap_logo.webp",
"screenshots": [
"/img/showcase/icpswap_screenshot_0.webp"
]
},
{
"id": "funded",
"name": "Funded",
"oneLiner": "Fund your favorite projects and get NFT rewards",
"website": "https://funded.app/",
"tags": [
"SocialFi",
"DeFi",
"Bitcoin",
"Ethereum"
],
"twitter": "https://twitter.com/funded_app",
"description": "Web3 crowdfunding! Thanks to ICP's low transaction fees and advanced smart contract technology, you can participate in crowdfunding with ICP, BTC and ETH without worrying about losing money on gas fees.",
"usesInternetIdentity": true,
"stats": "83,000+ ICP funded",
"display": "Normal",
"logo": "/img/showcase/funded_logo.webp",
"screenshots": []
},
{
"id": "nfid",
"name": "NFID",
"oneLiner": "Your digital identity for the modern world.",
"website": "https://nfid.one/",
"tags": [
"Wallet",
"Ethereum"
],
"twitter": "https://twitter.com/IdentityMaxis",
"description": "Embrace the new era of personal empowerment with NFID, the most advanced digital identity to keep your personal information private and digital assets secure.",
"usesInternetIdentity": true,
"logo": "/img/showcase/nfid_logo.webp"
},
{
"id": "trax",
"name": "Trax",
"oneLiner": "Trax is the world's first artist and fan-owned music platform.",
"website": "https://trax.so/",
"tags": [
"SocialFi",
"DAO"
],
"twitter": "https://twitter.com/onlyontrax",
"description": "Trax is the world's first artist and fan-owned music platform.",
"usesInternetIdentity": true,
"logo": "/img/showcase/trax_logo.jpeg"
},
{
"id": "golddao",
"name": "Gold DAO",
"oneLiner": "Gold DAO governs Gold Token (GLDT), a fungible token allowing fractional gold ownership; and a USD-pegged stablecoin (USDG), backed by gold (GLDT).",
"website": "https://www.gold-dao.org/",
"tags": [
"DeFi",
"DAO"
],
"twitter": "https://twitter.com/gldrwa",
"description": "Gold DAO governs Gold Token (GLDT), a fungible token allowing fractional gold ownership; and a USD-pegged stablecoin (USDG), backed by gold (GLDT).",
"logo": "/img/showcase/golddao_logo.png"
},
{
"id": "dragginz",
"name": "dragginz",
"oneLiner": "Dragginz is a virtual pets game from the creators of Neopets. Hatch and raise Dragginz to accompany you on your adventures.",
"website": "https://dragginz.io/",
"tags": [
"SocialFi",
"Games",
"DAO"
],
"twitter": "https://twitter.com/dragginzgame",
"description": "Dragginz is a virtual pets game from the creators of Neopets. Hatch and raise Dragginz to accompany you on your adventures..",
"logo": "/img/showcase/dragginz_logo.png"
},
{
"id": "dmail",
"name": "Dmail",
"oneLiner": "Web3 Decentralized Email Client",
"website": "https://dmail.ai/",
"tags": [
"NFT",
"SocialFi"
],
"description": "Dmail is the Web3 replacement for e-mail. Hosted completely on-chain and built on the Internet Computer, this dapp enables users to send and receive blockchain-backed, encrypted messages. In addition, Dmail addresses are owned by users as NFT assets - there is a natively built marketplace. Dmail was the winner of the 2021 Warpspeed ICP Hackathon in China and saw an immediate round of funding netting a $10M valuation. ",
"usesInternetIdentity": true,
"github": "https://github.com/dmailofficial",
"display": "Normal",
"logo": "/img/showcase/dmail_logo.webp",
"screenshots": [
"/img/showcase/dmail_screenshot_0.webp"
]
},
{
"id": "icdex",
"name": "ICDex",
"website": "https://avjzx-pyaaa-aaaaj-aadmq-cai.raw.ic0.app/ICDex",
"tags": [
"DeFi",
"Bitcoin"
],
"description": "ICDex is the flagship product by ICLighthouse, an orderbook-based DEX that runs 100% on-chain. The world's first order book DEX - made possible by advanced ICP smart contracts",
"usesInternetIdentity": true,
"twitter": "https://twitter.com/ICLighthouse",
"display": "Normal",
"logo": "/img/showcase/icdex_logo.webp",
"screenshots": []
},
{
"id": "helix",
"name": "Helix Markets",
"oneLiner": "Bringing true ownership and full transparency to crypto trading",
"website": "https://t.co/OcdISW1Xww",
"tags": [
"Ethereum",
"DeFi"
],
"twitter": "https://twitter.com/HelixMarkets",
"description": "Helix Markets is a decentralized exchange that aims to bring true ownership and full transparency to crypto trading.",
"usesInternetIdentity": true,
"logo": "/img/showcase/helix_logo.webp"
},
{
"id": "distrikt",
"name": "distrikt",
"oneLiner": "Censorship-resistant fully on-chain social media platform",
"website": "https://distrikt.app",
"tags": [
"SocialFi"
],
"twitter": "https://twitter.com/DistriktApp?s=20&t=FIuSJzaUxndtjKLTpwmCEw",
"description": "Distrikt is a completely decentralized, community-owned Web3 social media platform. Users of the platform will soon be able to vote on upgrades, and no user data will ever be mined or sold. Create your account, secured by Internet Identity today.",
"usesInternetIdentity": true,
"authOrigins": [
"https://distrikt.app",
"https://az5sd-cqaaa-aaaae-aaarq-cai.ic0.app/"
],
"display": "Large",
"stats": "110,000+ users",
"logo": "/img/showcase/distrikt_logo.webp",
"screenshots": [
"/img/showcase/distrikt_screenshot.webp"
]
},
{
"id": "hot-or-not",
"name": "Hot or Not",
"oneLiner": "Token rewards for both content creators and lurkers",
"website": "https://hotornot.wtf/",
"tags": [
"SocialFi",
"DAO"
],
"description": "Hot or Not is a decentralized short-form video-based social media platform, which integrates prediction markets for content. In addition to sharing their own videos, users can also speculate on videos of other users by staking tokens and voting whether a video will become 'Hot' or 'Not' to earn rewards.",
"usesInternetIdentity": true,
"stats": "55,000+ users",
"logo": "/img/showcase/hot_or_not_logo.png",
"screenshots": [
"/img/showcase/hot_or_not_screenshot_0.jpg"
],
"videoContentType": "video/mp4",
"video": "/img/showcase/hot_or_not_video.mp4"
},
{
"id": "bitfinity-evm",
"name": "Bitfinity EVM",
"website": "https://bitfinity.network/",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Ethereum"
],
"twitter": "https://twitter.com/bitfinitynet",
"description": "Bitfinity is the EVM compatibility layer for the IC. Using Bitfinity, you can deploy your Solidity smart contracts to the Internet Computer, taking advantage of its many advantageous DeFi capabilities: HTTP Outcalls, the BTC integration, and more.",
"usesInternetIdentity": true,
"stats": "1,000+ TPS",
"display": "Large",
"logo": "/img/showcase/bitfinity_evm.png",
"screenshots": [
"/img/showcase/bitfinity_showcase.webp"
]
},
{
"id": "iclighthouse",
"name": "ICLightHouse",
"description": "Incubating true web3 DeFi infrastructure on the Internet Computer. Defi development framework and Defi ecosystem on IC blockchain.",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum"
],
"website": "https://iclight.house/",
"twitter": "https://twitter.com/ICLighthouse?s=20&t=hL-7QAUfiWo75L8pZzJ7fw",
"discord": "https://discord.com/invite/FQZFGGq7zv",
"logo": "/img/showcase/iclighthouse_logo.webp"
},
{
"id": "astrox",
"name": "AstroX ME",
"oneLiner": "A powerful multichain wallet",
"website": "https://astrox.me/#/",
"tags": [
"Tools / Infrastructure",
"Wallet",
"Bitcoin",
"NFT",
"Ethereum"
],
"description": "ME wallet securing your assets without seed phrase across any devices.",
"github": "https://github.com/AstroxNetwork",
"twitter": "https://twitter.com/astrox_network",
"logo": "/img/showcase/astroxme_logo.webp",
"display": "Large",
"screenshots": [
"/img/showcase/astrox_me_screenshot.webp"
]
},
{
"id": "yumi",
"name": "Yumi",
"oneLiner": "NFT marketplace for digital and physical assets",
"website": "https://tppkg-ziaaa-aaaal-qatrq-cai.raw.ic0.app/",
"tags": [
"NFT"
],
"twitter": "https://twitter.com/YumiMarketplace",
"description": "Yumi is a high-speed, low-cost, and fully decentralized NFT marketplace built on the Internet Computer. All digital collectibles available on Yumi are hosted fully on-chain. The minting of NFTs is completely free for creators (no gas fees).",
"usesInternetIdentity": true,
"stats": "130,000+ ICP volume",
"display": "Large",
"logo": "/img/showcase/yumi_logo.webp",
"screenshots": [
"/img/showcase/yumi-screenshot.webp"
]
},
{
"id": "entrepot",
"name": "Entrepot",
"oneLiner": "ICP's most popular NFT marketplace",
"website": "https://entrepot.app/",
"tags": [
"NFT"
],
"twitter": "https://twitter.com/toniqlabs",
"description": "Entrepot is a decentralized NFT marketplace developed by ToniqLabs, the creators behind Rise of the Magni, Stoic Wallet, Cronic NFTs, and Exponent. Entrepot provides users with tools and on-chain services to design, deploy, and manage NFTs and traditional tokens.",
"usesInternetIdentity": false,
"stats": "1,000,000+ ICP volume",
"display": "Large",
"logo": "/img/showcase/entrepot_logo.webp",
"screenshots": [
"/img/showcase/entrepot_screenshot.webp"
]
},
{
"id": "sonic-dex",
"name": "Sonic DEX",
"oneLiner": "Sonic DEX is an AMM and Perpetual trading platform",
"website": "https://sonic.ooo/",
"tags": [
"Ethereum",
"DeFi",
"DAO"
],
"description": "Sonic DEX, a multichain decentralized exchange built on the Internet Computer Protocol (ICP), offers a wide range of DeFi services. Users can easily trade tokens and perpetuals, provide liquidity, and participate in the LBP token sale. Users can engage in DAO governance, stake for rewards, and vote on platform decisions.",
"usesInternetIdentity": true,
"github": "https://github.com/sonicdex/sonic-v1",
"twitter": "https://twitter.com/sonic_ooo",
"stats": "$10M+ Trade Volume",
"display": "Normal",
"logo": "/img/showcase/sonic-dex_logo.webp",
"screenshots": [
"/img/showcase/sonic-dex_screenshot.webp"
]
},
{
"id": "plug",
"name": "Plug",
"oneLiner": "Decentralized Wallet for the Internet Computer",
"website": "https://plugwallet.ooo/",
"tags": [
"Wallet",
"NFT",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum"
],
"description": "Plug Wallet, built and open-sourced by Fleek, is a browser extension that allows you to access your ICP, Cycles and other tokens - as well as log into Internet Computer dapps with one click.",
"github": "https://github.com/Psychedelic/plug",
"stats": "100,000+ users",
"display": "Normal",
"logo": "/img/showcase/plug_logo.webp",
"video": "/img/showcase/plug_video.mp4",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/plug_screenshot_0.webp"
]
},
{
"id": "infinityswap",
"name": "InfinitySwap",
"website": "https://infinityswap.one/",
"tags": [
"DeFi",
"Wallet",
"Ethereum"
],
"twitter": "https://twitter.com/infinity_swap",
"description": "InfinitySwap is a platform to create, stake, and swap tokens on the Internet Computer. Backed by Polychain Capital and 9YardsCapital (amongst others) - InfinitySwap offers users the ability to swap tokens cheaply with their novel technology, built on the ICP blockchain.",
"stats": "$1.5M Invested PolyChain Capital + a16z",
"logo": "/img/showcase/infinityswap_logo.webp",
"screenshots": [
"/img/showcase/infinityswap_screenshot_0.webp"
]
},
{
"id": "bitfinitywallet",
"name": "Bitfinity Wallet",
"oneLiner": "A wallet to store and manage NFTs, Tokens, and connect to dapps on the Internet Computer.",
"website": "https://wallet.infinityswap.one/",
"tags": [
"Wallet",
"Bitcoin",
"Ethereum"
],
"description": "The Bitfinity Wallet is a multi-chain wallet built and open-sourced by InfinitySwap. It is a browser extension that allows you to store and transfer your BTC, ICP, SNS-1, NFT, and other tokens - as well as log into Internet Computer dapps with a single click. The InfinitySwap Wallet also supports Internet Identity, the powerful authentication framework provided by the Internet Computer.",
"display": "Large",
"logo": "/img/showcase/bitfinitywallet_logo.webp",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/bitfinitywallet_screenshot.webp"
]
},
{
"id": "stoicwallet",
"name": "Stoic Wallet",
"website": "https://www.stoicwallet.com/",
"tags": [
"Wallet",
"Ethereum"
],
"description": "Stoic Wallet by Toniq Labs allows anyone to create a digital wallet, authenticating users through a variety of methods, one of those being Internet Identity. Create accounts, keep an address book, and more. ",
"usesInternetIdentity": true,
"logo": "/img/showcase/stoicwallet_logo.webp",
"screenshots": [
"/img/showcase/stoicwallet_screenshot_0.webp"
]
},
{
"id": "kleverio",
"name": "Klever.io",
"website": "https://klever.io/",
"tags": [
"Wallet",
"DeFi",
"Ethereum"
],
"description": "Klever.io is a non-custodial mobile wallet that supports dozens of protocols and is tying them all together with the Internet Computer blockchain. Manage, store, stake, transfer, and in the future, swap ICP right within Klever.io. Klever has integrated with the Internet Computer's Network Nervous System in order to support staking with voting rewards. ",
"logo": "/img/showcase/kleverio_logo.webp",
"screenshots": [
"/img/showcase/kleverio_screenshot_0.webp"
]
},
{
"id": "nnsfront-enddapp",
"name": "NNS Dapp",
"oneLiner": "Dapp for Staking Neurons + Voting On-Chain",
"website": "https://nns.ic0.app",
"github": "https://github.com/dfinity/nns-dapp",
"tags": [
"Wallet",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum"
],
"description": "The NNS front-end dapp allows anyone to interact with the Internet Computer's Network Nervous System with a user-friendly UI. Served completely end-to-end through blockchain, this dapp allows you to manage ICP, stake neurons, participate in voting, and earn governance rewards.",
"usesInternetIdentity": true,
"logo": "/img/showcase/nnsfront-enddapp_logo-dark.webp"
},
{
"id": "oisy",
"name": "Oisy Wallet",
"oneLiner": "A novel Ethereum wallet hosted on the Internet Computer",
"website": "https://oisy.com",
"github": "https://github.com/dfinity/oisy-wallet",
"tags": [
"Ethereum",
"DeFi",
"Wallet"
],
"description": "Crafted for the Internet Computer, Oisy is a unique Ethereum wallet that operates directly within your browser. It is entirely on-chain and secured by chain-key cryptography and Internet Identity.",
"usesInternetIdentity": true,
"logo": "/img/showcase/oisy_logo.svg"
},
{
"id": "liquityfrontend",
"name": "Liquity Frontend on ICP",
"description": "Liquity is a decentralized borrowing protocol that allows users to draw interest-free loans against Ether used as collateral. Liquity now has a fully decentralized, immutable frontend hosted on the Internet Computer.",
"website": "https://imtbl.top/#/",
"tags": [
"Ethereum",
"DeFi"
],
"twitter": "https://twitter.com/LiquityProtocol",
"usesInternetIdentity": false,
"display": "Normal",
"logo": "/img/showcase/liquity.webp",
"screenshots": []
},
{
"id": "w3ns",
"name": "W3NS - Multichain",
"oneLiner": "An omnichannel notification service on the Internet Computer for any IC, EVM or off-chain application",
"website": "https://www.argonstudios.xyz",
"tags": [
"Tools / Infrastructure",
"Ethereum"
],
"description": "A service to support sending of email, SMS and push notifications (both mobile and web) via Internet Computer for IC, EVM (currently supports Polygon, more to come) and off-chain applications wanting to use a distributed and open source sending mechanism. Simply integrate our Polygon contract, or our IC canister, to use it today...",
"stats": "3 early launch partners sending notifications from Polygon",
"logo": "/img/showcase/w3ns_logo.png",
"usesInternetIdentity": false,
"github": "https://github.com/miguelToscano/w3ns",
"youtube": "https://www.youtube.com/@argonstudios",
"twitter": "https://twitter.com/ArgonStudiosXYZ"
},
{
"id": "ethereum-canister",
"name": "Ethereum Canister",
"website": "https://www.eiger.co/",
"oneLiner": "A fully trustless access to the Ethereum blockchain data.",
"tags": [
"Ethereum",
"Tools / Infrastructure"
],
"description": "The Ethereum canister offers a secure and trustless way to access Ethereum blockchain data within the ICP ecosystem. Behind the scenes, it leverages the helios light Ethereum client which is equipped with the capability to validate the authenticity of fetched data.",
"stats": "17M+ blocks",
"usesInternetIdentity": false,
"github": "https://github.com/eigerco/ethereum-canister",
"logo": "/img/ethereum.svg",
"screenshots": [],
"video": "",
"videoContentType": "video/mp4",
"submittableId": "40732752"
},
{
"id": "origyn",
"name": "Origyn",
"oneLiner": "NFT-Based Authentication for Luxury Goods ",
"website": "https://www.origyn.com/",
"tags": [
"NFT",
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/ORIGYNTech",
"description": "The Origyn Foundation is blending luxury goods with NFTs by providing digital verifications for physical objects. Only possible on the Internet Computer. ",
"github": "https://github.com/origyn-sa",
"logo": "/img/showcase/origyn_logo.webp",
"screenshots": [
"/img/showcase/origyn_screenshot_0.webp"
]
},
{
"id": "finterest",
"name": "Finterest",
"website": "https://tyhcm-sqaaa-aaaah-abjya-cai.raw.ic0.app/#/",
"tags": [
"DeFi",
"Bitcoin"
],
"twitter": "https://twitter.com/finterestICP",
"description": "Lend and borrow against your crypto without bridging it across chains. Yes, even Bitcoin",
"stats": "$1.5M+ Raised",
"logo": "/img/showcase/finterest_logo.webp",
"screenshots": [
"/img/showcase/finterest_screenshot_0.webp"
]
},
{
"id": "boom-dao",
"name": "Boom DAO",
"oneLiner": "Powering the next generation of fully on-chain games, and providing a collaborative hub for all things web3 gaming.",
"website": "https://boomdao.xyz/",
"tags": [
"Games",
"DAO",
"Tools / Infrastructure",
"NFT",
"Metaverse"
],
"description": "BOOM DAO is an all-in-one web3 game platform and protocol running 100% on-chain on the Internet Computer. We are on a mission to build the gaming vertical of the Internet Computer blockchain, power the next generation of fully on-chain games on ICP, and provide a collaborative hub for all things web3 gaming.",
"stats": "23,000+ DAO Members",
"logo": "/img/showcase/boom-dao-logo.webp",
"display": "Large",
"usesInternetIdentity": true,
"github": "https://github.com/BoomDAO/",
"youtube": "https://www.youtube.com/watch?v=LHVVi4pN6CI",
"twitter": "https://twitter.com/boomdaosns",
"screenshots": [
"/img/showcase/boom-dao-screenshot0.webp"
],
"video": "/img/showcase/boom-dao-video.mp4",
"videoContentType": "video/mp4",
"submittableId": ""
},
{
"id": "plethora",
"name": "Plethora",
"website": "https://plethora.game/",
"tags": [
"Games",
"Metaverse",
"NFT"
],
"twitter": "https://twitter.com/PlethoraGame",
"description": "Plethora is a Web3 platformer with the goal of rewarding users both with fun gameplay and NFTs. Plethora empowers NFT projects to launch their collections with immersive experiences customized for you. Play now to compete, have fun, and earn rewards.",
"oneLiner": "3D platformer meets Web3 with NFT rewards",
"display": "Large",
"stats": "10,000+ users",
"logo": "/img/showcase/plethora_logo.webp",
"screenshots": [
"/img/showcase/plethora_screenshot.webp"
]
},
{
"id": "orally-network",
"name": "Orally",
"oneLiner": "The fully on-chain oracles for secure and reliable decentralized data feeding and automation across multiple chains.",
"tags": [
"Tools / Infrastructure",
"DeFi"
],
"description": "The fully on-chain oracles for secure and reliable decentralized data feeding and automation across multiple chains. Experience seamless real-world data integration across various blockchains, powering dynamic, secure, and efficient dapps. Elevate your blockchain journey with us!",
"usesInternetIdentity": false,
"website": "https://orally.network",
"github": "https://github.com/orally-network",
"youtube": "https://youtu.be/1ZDEyllqUcA",
"twitter": "https://twitter.com/orally_network",
"display": "Large",
"logo": "/img/showcase/orally-network_logo.png",
"screenshots": [
"/img/showcase/orally-network_screenshot_0.webp"
],
"submittableId": "35782696"
},
{
"id": "kinic",
"name": "Kinic",
"oneLiner": "The world's first Web3 search engine",
"website": "https://74iy7-xqaaa-aaaaf-qagra-cai.ic0.app/",
"tags": [
"Tools / Infrastructure",
"DAO"
],
"twitter": "https://twitter.com/kinic_app?s=20&t=PVKALcCRCdZIgr0U4sDWeg",
"description": "The world’s first Web3 search engine indexing all Internet Computer-based dapps.",
"stats": "3,000,000+ searches",
"display": "Large",
"usesInternetIdentity": true,
"logo": "/img/showcase/kinic_logo.webp",
"screenshots": [
"/img/showcase/kinic_screenshot.webp"
]
},
{
"id": "modclub",
"name": "Modclub",
"oneLiner": "The world's first AI-powered Web3 crowdwork platform",
"website": "https://modclub.ai",
"twitter": "https://twitter.com/ModclubApp",
"tags": [
"SocialFi",
"Tools / Infrastructure"
],
"stats": "20,000+ tasks completed",
"description": "Modclub is an AI-enhanced decentralized crowdwork platform that handles resource-intensive tasks such as moderation, user verification and data labeling.",
"usesInternetIdentity": true,
"logo": "/img/showcase/modclub_logo.webp",
"screenshots": [
"/img/showcase/modclub_screenshot_0.webp"
],
"github": "https://github.com/modclub-app"
},
{
"id": "querio",
"name": "Querio",
"website": "https://querio.io/",
"tags": [
"Tools / Infrastructure"
],
"description": "Querio is the most advanced web3.0 search engine of exceptional speed and accuracy, that empowers its users to search over the Internet Computer.",
"logo": "/img/showcase/Querio_Logo.webp",
"screenshots": []
},
{
"id": "cubetopia",
"name": "Cubetopia",
"oneLiner": "Build and own an NFT World on the blockchain",
"website": "https://kqwp7-2yaaa-aaaah-abyna-cai.raw.ic0.app/",
"tags": [
"Games",
"Metaverse"
],
"twitter": "https://twitter.com/TheCubetopia",
"description": "Cubetopia is a Web3 building game where players can create anything on unique blocky islands. Each island is a mutable NFT stored on the Internet Computer blockchain. Anyone can visit these islands on-chain, while the owner of the NFT ownership handles building permissions.",
"stats": "32,500+ ICP volume",
"display": "Large",
"logo": "/img/showcase/cubetopia_logo.webp",
"screenshots": [
"/img/showcase/cubetopia_screenshot.webp"
]
},
{
"id": "itoka",
"name": "ITOKA",
"oneLiner": "A Leading Infrastructure for Music3.0",
"website": "https://www.itoka.xyz/",
"tags": [
"NFT",
"SocialFi"
],
"description": "The ITOKA project seeks to disrupt the centralized music industry by offering a complete infrastructure solution for the web3 music industry. This includes creation tools, data storage, and music streaming services. The goal of ITOKA is to transform the music industry into a decentralized ecosystem, empowering creators with greater control over their content and a fairer share of revenue.",
"usesInternetIdentity": false,
"github": "https://github.com/Itoka-DAO",
"twitter": "https://twitter.com/itokamusic",
"stats": "3M+ minutes on-chain streaming",
"logo": "/img/showcase/itoka_logo.svg",
"video": "/img/showcase/itoka_video.mp4",
"videoContentType": "video/mp4",
"display": "Large",
"screenshots": [
"/img/showcase/itoka_screanshot.svg"
]
},
{
"id": "taggr",
"name": "TAGGR",
"website": "https://taggr.link",
"tags": [
"SocialFi",
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/TaggrNetwork",
"description": "Fully on-chain and fully autonomous SocialFi network. A simple way to publish content on a public compute infrastructure. No Ponzinomics - TAGGR has a sustainable tokenomics model that rewards quality posts and removes the incentive to spam.",
"usesInternetIdentity": true,
"authOrigins": [
"https://taggr.link",
"https://6qfxa-ryaaa-aaaai-qbhsq-cai.ic0.app"
],
"display": "Normal",
"stats": "24,000+ posts",
"logo": "/img/showcase/taggr_logo.webp",
"oneLiner": "Blending forums and blogs - controlled by a DAO",
"screenshots": [
"/img/showcase/taggr_screenshot_0.webp"
]
},
{
"id": "airgap",
"name": "AirGap",
"oneLiner": "Self custody made simple and secure. Turn a spare smartphone into a cold wallet.",
"description": "Self-custody made simple and secure. Turn a spare smartphone into a cold wallet that can store a plethora of tokens including ICP and ckBTC. Using AirGap, you can stake ICP directly on the NNS and participate in governance.",
"website": "https://airgap.it/",
"tags": [
"Wallet"
],
"usesInternetIdentity": false,
"logo": "/img/showcase/airgap_logo.webp"
},
{
"id": "evmonicp",
"name": "EVM on ICP",
"website": "https://fxa77-fiaaa-aaaae-aaana-cai.raw.ic0.app/evm/",
"tags": [
"Tools / Infrastructure",
"Ethereum"
],
"description": "An Ethereum Virtual Machine (EVM) demo built and hosted on the Internet Computer blockchain. P.S. There is a hidden game in the demo. ",
"display": "Normal",
"logo": "/img/showcase/evmonicp_logo.webp",
"screenshots": [
"/img/showcase/evmonicp_screenshot_0.webp"
]
},
{
"name": "Taurus",
"description": "A platform that offers banking-grade custody and everything needed for managing any digital asset.",
"website": "https://www.taurushq.com/",
"logo": "/img/showcase/taurus_logo.png",
"screenshots": [],
"video": "",
"display": "Normal",
"id": "taurus",
"oneLiner": "Banking-grade custody for digital asset management.",
"stats": "Powering 15+ banks",
"tags": [
"Wallet",
"Tools / Infrastructure",
"Enterprise"
],
"usesInternetIdentity": false,
"github": "",
"twitter": "",
"youtube": "",
"submittableId": ""
},
{
"id": "omnic",
"name": "Omnic",
"oneLiner": "Crosschain Messaging Protocol & Token Bridge Between the Internet Computer and EVM Chains",
"website": "https://omnic.network",
"tags": [
"Tools / Infrastructure",
"DeFi"
],
"description": "Omnic is a Crosschain messaging protocol built on the Internet Computer, Omnic Token Bridge helps bring liquidity on EVM networks to the Internet Computer",
"usesInternetIdentity": false,
"logo": "/img/showcase/omnic_logo.webp",
"screenshots": [
"/img/showcase/omnic_screenshot_0.webp"
],
"videoContentType": "video/mp4",
"video": "/img/showcase/omnic_video.mp4"
},
{
"id": "autoroyale",
"name": "AutoRoyale",
"website": "https://cm6iy-sqaaa-aaaam-abmxq-cai.icp0.io/",
"tags": [
"Games"
],
"twitter": "",
"description": "Jump into this proof of concept battle royale 2D shooter on ICP. Grab gear, outplay the competition, and stay alive as the battleground shrinks. It's all about thinking a few steps ahead. Upgrade weapons, toss grenades, and pull off sneaky ambushes. Invite your pals for a quick match and make sure you play the tutorial to get used to the mechanics.",
"usesInternetIdentity": true,
"display": "Large",
"stats": "",
"logo": "/img/showcase/autoroyale_logo.png",
"oneLiner": "A fast-paced 2D multiplayer shooter game",
"screenshots": [],
"video": "/img/showcase/autoroyale_video.mp4",
"videoContentType": "video/mp4"
},
{
"id": "azle",
"name": "Azle",
"oneLiner": "TypeScript CDK for the Internet Computer",
"website": "https://demergent-labs.github.io/azle/azle.html",
"tags": [
"Tools / Infrastructure"
],
"description": "Azle is a TypeScript Canister Development Kit (CDK) for the Internet Computer. In other words, it's a TypeScript/JavaScript runtime for building applications on the IC.",
"usesInternetIdentity": false,
"logo": "/img/showcase/azle_logo.svg",
"github": "https://github.com/demergent-labs/azle",
"screenshots": [
"/img/showcase/azle_screenshot_0.jpg"
]
},
{
"id": "catalyze",
"name": "Catalyze",
"website": "https://aqs24-xaaaa-aaaal-qbbea-cai.ic0.app/",
"tags": [
"SocialFi"
],
"description": "Catalyze is a decentralized social and community-building platform designed to host engaged and thriving Web3 communities. With a unique and customized engagement economy, Catalyze communities and their members will be rewarded for their participation and contribution. Main features include: direct communication, event & task management, integrated Web3 wallets, NFT Gating, NFT airdrop & sales management.",
"usesInternetIdentity": true,
"oneLiner": "Manage your Web3 communities and events",
"display": "Large",
"stats": "275+ groups",
"logo": "/img/showcase/catalyze_logo.webp",
"screenshots": [
"/img/showcase/catalyze_screenshot.webp"
]
},
{
"id": "juno",
"name": "Juno",
"oneLiner": "Build Web3 dApps like Web2",
"website": "https://juno.build",
"tags": [
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/junobuild",
"github": "https://github.com/junobuild/juno",
"description": "Juno is an open-source platform that combines the power of Web3 with the ease and simplicity of Web2 development, enabling programmers to build decentralized apps faster and easier than ever before.",
"display": "Large",
"usesInternetIdentity": true,
"authOrigins": [
"https://console.juno.build"
],
"logo": "/img/showcase/juno_logo.svg",
"screenshots": [
"/img/showcase/juno_social_image.png"
]
},
{
"id": "internetidentity",
"name": "Internet Identity",
"oneLiner": "Decentralized Anonymous Blockchain Authentication",
"website": "https://identity.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Internet Identity is a privacy-enhancing authentication framework for applications on the Internet Computer. It provides users with a easy-to-use and secure anonymizing login to Web3 services running on ICP without being tracked across dapps.",
"github": "https://github.com/dfinity/internet-identity",
"usesInternetIdentity": true,
"stats": "1,000,000+ users",
"logo": "/img/showcase/internetidentity_logo.webp",
"screenshots": [
"/img/showcase/internetidentity_screenshot_0.gif"
]
},
{
"id": "Arth",
"name": "Arth",
"oneLiner": "Arth ckBTC wallet and swap btc<>ckBtc",
"tags": [
"DeFi",
"Wallet",
"Bitcoin"
],
"description": "Introducing Arth - the mobile payments app that combines the power of Bitcoin with the convenience of mobile payments. With ckBTC, you can easily swap ckBTC from Bitcoin, view balances, and seamlessly make payments using QR codes. more features coming soon",
"usesInternetIdentity": true,
"website": "https://play.google.com/store/apps/details?id=com.foo.arth&pli=1",
"github": "https://github.com/s1dc0des/arth_app",
"display": "Normal",
"logo": "/img/showcase/arth_logo.png",
"screenshots": [
"/img/showcase/arth_ss.webp"
],
"submittableId": "36143434"
},
{
"name": "Signals",
"description": "Signals is a location based chat app for making connections, creating communities, and discovering events. ",
"website": "https://signalsicp.com/",
"logo": "/img/showcase/signals_logo.webp",
"screenshots": [
"/img/showcase/signals_screenshot.webp"
],
"display": "Normal",
"id": "signals",
"oneLiner": "A location based app for empowering local communities",
"stats": "5,000+ users",
"tags": [
"SocialFi"
],
"usesInternetIdentity": true,
"twitter": "https://twitter.com/signalsicp",
"submittableId": "35639473"
},
{
"id": "stakedicp",
"name": "StakedICP",
"oneLiner": "Non-custodial liquid staking for ICP",
"tags": [
"DeFi"
],
"description": "StakedICP is the liquid-staking protocol revolutionizing staking on the Internet Computer, putting control in investors' hands. ICP is staked in the NNS DAO, and stakers receive rewards just by holding the stICP token. The stICP token is DeFi-compatible, to support protocols building on the Internet Computer, and always fully-backed by ICP staked in the NNS.",
"usesInternetIdentity": false,
"website": "https://stakedicp.com",
"github": "https://github.com/AegirFinance/StakedICP",
"twitter": "https://twitter.com/StakedICP",
"display": "Normal",
"logo": "/img/showcase/stakedicp_logo.webp",
"screenshots": []
},
{
"id": "canscale",
"name": "CanScale",
"description": "Worried about data being persisted or how your data structure will scale across canisters? CanScale can help you focus more on building out your vision, and spend less time thinking about how to scale out your multi-canister architecture on the IC.",
"tags": [
"Tools / Infrastructure"
],
"website": "https://www.canscale.dev",
"twitter": "https://twitter.com/can_scale",
"logo": "/img/showcase/canscale_logo.webp",
"submittableId": "34140445"
},
{
"id": "cycleops",
"name": "CycleOps",
"description": "Proactive, automated, no-code canister management for the Internet Computer.",
"tags": [
"Tools / Infrastructure"
],
"website": "https://cycleops.dev",
"twitter": "https://twitter.com/CycleOps",
"logo": "/img/showcase/cycleops_logo.png",
"submittableId": "36320431"
},
{
"id": "canistergeek",
"name": "Canistergeek",
"oneLiner": "IC canister management tool",
"description": "Top up your canisters, monitor cycles, memory, logs, and get your monthly reports in one place.",
"tags": [
"Tools / Infrastructure"
],
"usesInternetIdentity": true,
"website": "https://canistergeek.app/",
"github": "https://github.com/usergeek/canistergeek_ic_rust",
"twitter": "https://twitter.com/theUSERGEEK",
"discord": "https://discord.gg/CvTpv2TeKs",
"logo": "/img/showcase/canistergeek_logo.webp",
"submittableId": "33310242"
},
{
"name": "Mops",
"description": "On-chain package manager for Motoko. Mops makes it easy to discover, install, and publish Motoko packages.",
"website": "https://mops.one",
"logo": "/img/showcase/mops_logo.webp",
"screenshots": [],
"video": "",
"display": "Normal",
"id": "mops",
"oneLiner": "On-chain package manager for Motoko",
"stats": "100,000+ downloads",
"tags": [
"Tools / Infrastructure"
],
"usesInternetIdentity": false,
"github": "https://github.com/ZenVoich/mops",
"twitter": "https://twitter.com/mops_one",
"youtube": "",
"submittableId": ""
},