This repository was archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathindex.html
More file actions
1908 lines (1893 loc) · 111 KB
/
index.html
File metadata and controls
1908 lines (1893 loc) · 111 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
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
<!DOCTYPE html>
<html>
<head>
<title>Neo DApps</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="format-detection" content="telephone=no" />
<link rel="stylesheet" href="css/styles.css">
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery_lazyload/jquery.lazyload.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="jumbotron jumbotron-fluid py-5">
<div class="container text-center">
<h1 class="display-4">Neo DApp List</h1>
<hr class="my-4">
<p>
These DApps come from the community. The information on this page is provided by the project owner. Neo
Foundation and ndapp.org
does not endorse these projects.
</p>
<p class="lead mt-4">
<a class="btn btn-success btn-lg" href="https://github.com/ndapp/WebSite" role="button">Add a Neo
DApp</a>
</p>
</div>
</div>
<div class="container">
<nav class="nav nav-pills flex-column flex-sm-row">
<a class="flex-sm-fill text-sm-center nav-link active" id="home-tab" data-toggle="tab" href="#dapps" role="tab"
aria-controls="dapps" aria-selected="true">DApps</a>
<a class="flex-sm-fill text-sm-center nav-link" id="profile-tab" data-toggle="tab" href="#explorer" role="tab"
aria-controls="explorer" aria-selected="false">Explorer</a>
<a class="flex-sm-fill text-sm-center nav-link" id="contact-tab" data-toggle="tab" href="#link" role="tab"
aria-controls="link" aria-selected="false">Link</a>
<a class="flex-sm-fill text-sm-center nav-link" id="contact-tab" data-toggle="tab" href="#exchange" role="tab"
aria-controls="exchange" aria-selected="false">Exchange</a>
</nav>
</div>
<hr />
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="dapps" role="tabpanel" aria-labelledby="home-tab">
<div class="container-fluid text-center mb-5">
<div class="dapp">
<img data-original="images/nex.png">
<div>
<h3 class="mt-2 mb-1">NEX</h3>
<small class="d-block mb-2">
by
<a href="https://neonexchange.org/" target="_blank">The NEX Team</a>
</small>
<p class="description">
NEX combines the Neo blockchain with an off-chain matching engine to enable much faster and
more complex trades than existing
decentralized exchanges
</p>
<div class="link">
<a href="https://neonexchange.org/" target="_blank">Website</a>
<a href="https://github.com/neonexchange" target="_blank">GitHub</a>
<a href="https://neonexchange.org/pdfs/whitepaper_v1.1.pdf" target="_blank">Whitepaper</a>
<a href="https://www.twitter.com/neonexchange" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/company/27124160" target="_blank">LinkedIn</a>
<a href="https://www.medium.com/neon-exchange" target="_blank">Medium</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/moonlight.png">
<div>
<h3 class="mt-2 mb-1">Moonlight</h3>
<small class="d-block mb-2">
by
<a href="https://moonlight.io/" target="_blank">The Moonlight Team</a>
</small>
<p class="description">
Moonlight is a distributed workforce and analytical project management platform featuring a
global public ledger of contributor
work experience and a new match-making algorithm to effectively fulfill project needs.
</p>
<div class="link">
<a href="https://moonlight.io/" target="_blank">Website</a>
<a href="https://github.com/Moonlight-io" target="_blank">Github</a>
<a href="https://assets.moonlight.io/docs/wp/moonlight_en-us.pdf"
target="_blank">Whitepaper</a>
<a href="https://twitter.com/Moonlightdotio" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/company/18385930/" target="_blank">LinkedIn</a>
<a href="https://medium.com/moonlight-io" target="_blank">Medium</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/redpulse.png">
<div>
<h3 class="mt-2 mb-1">Red Pulse</h3>
<small class="d-block mb-2">
by
<a href="https://www.red-pulse.com/" target="_blank">Red Pulse</a>
</small>
<p class="description">
Red Pulse Tokens (RPX) are Neo tokens issued by Red Pulse, an event-driven research firm
covering market events impacting
Chinese companies, sectors and the overall economy.
</p>
<div class="link">
<a href="https://coin.red-pulse.com/" target="_blank">Website</a>
<a href="https://github.com/RedPulse" target="_blank">GitHub</a>
<a href="https://www.reddit.com/r/RedPulseToken/" target="_blank">Reddit</a>
<a href="https://neotracker.io/contract/ecc6b20d3ccac1ee9ef109af5a7cdb85706b1df9"
target="_blank">Contract</a>
</div>
</div>
</div>
<!-- X-Contract block -->
<div class="dapp">
<img data-original="images/Jarvis-plus.jpg">
<div>
<h3 class="mt-2 mb-1">Jarvis+</h3>
<small class="d-block mb-2">
by
<a href="http://www.jarvisplus.com/" target="_blank">X-Contract Foundation</a>
</small>
<p class="description">
Jarvis+ is A decentralized service of conversation in any IM, webpage, or App. A personal
token assistant. And A powerful
AI conversation infrastructure that could be embeded into any use scenario of Blockchain.
</p>
<div class="link">
<a href="http://www.jarvisplus.com/" target="_blank">Website</a>
<a href="https://github.com/x-contract" target="_blank">GitHub</a>
<a href="http://www.jarvisplus.com/pc/index.html#paper" target="_blank">White Paper</a>
<a href="https://telegram.im/jarvisplus" target="_blank">Telegram</a>
<a href="https://discord.gg/u8z9uyD" target="_blank">Discord</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/AdExBlockchain.png">
<div>
<h3 class="mt-2 mb-1">AdEx</h3>
<small class="d-block mb-2">
by
<a href="http://adex.network/" target="_blank">adex.network</a>
</small>
<p class="description">
AdEx is a decentralized ad exchange built on the blockchain and smart contracts. The core
feature of AdEx will be the so-called
AdEx User Profile - a personalized page that allows every end user to understand and control
the ads delivered to them.
</p>
<div class="link">
<a href="http://adex.network/" target="_blank">Website</a>
<a href="https://github.com/AdExBlockchain" target="_blank">GitHub</a>
<a href="https://medium.com/the-adex-blog" target="_blank">Medium</a>
<a href="https://www.facebook.com/AdEx-by-Stremio-756186427900381/"
target="_blank">Facebook</a>
<a href="https://t.me/AdExNetwork" target="_blank">Telegram</a>
<a href="https://twitter.com/AdEx_Network" target="_blank">Twitter</a>
<a href="https://www.reddit.com/r/AdEx/" target="_blank">Reddit</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/NeoAuth.jpg">
<div>
<h3 class="mt-2 mb-1">NeoAuth</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/orgs/neoauth/people" target="_blank">@NeoAuth</a>
</small>
<p class="description">
NeoAuth enables authentication over the Neo blockchain, allowing you to log in with a Neo
address instead of an email and
password.
</p>
<div class="link">
<a href="https://neoauth.org/" target="_blank">Website</a>
<a href="http://demo.neoauth.org/" target="_blank">Demo</a>
<a href="https://github.com/neoauth" target="_blank">GitHub</a>
<a href="https://github.com/neoauth/whitepaper" target="_blank">Whitepaper</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/qlink.png">
<div>
<h3 class="mt-2 mb-1">Qlink</h3>
<small class="d-block mb-2">
by
<a href="https://medium.com/@@Qlink" target="_blank">Allen Li</a>
</small>
<p class="description">
Qlink, developed by Qlink Foundation in Singapore, adopts the blockchain technology and
creates a decentralized mobile network
for P2Peer WiFi sharing, mobile data converted content distribution, enterprise telecom
services
and crowd-sourcing base stations (including WiFi hotspots ) set-up, generally in much lower
cost
and ultimate secured format.
</p>
</div>
<div class="link">
<a href="https://github.com/qlinkDev/Contracts" target="_blank">GitHub</a>
<a href="https://medium.com/@Qlink" target="_blank">Medium Page</a>
<a href="https://medium.com/@Qlink/qlink-noticed-you-have-questions-as-such-94aa5095d10a"
target="_blank">AMA summary</a>
<a href="https://neotracker.io/contract/0d821bd7b6d53f5c2b40e217c6defc8bbe896cf5"
target="_blank">Contract</a>
</div>
</div>
<div class="dapp">
<img data-original="images/NeoSmartIoT.png">
<div>
<h3 class="mt-2 mb-1">Neo Smart IoT</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/hal0x2328" target="_blank">hal0x2328</a>,
<a href="https://github.com/phetter" target="_blank">phetter</a>
</small>
<p class="description">Control IoT (Internet of Things) devices via Neo smart contracts (first
device is an ESP8266).</p>
<div class="link">
<a href="https://iot.splyse.tech/" target="_blank">Website</a>
<a href="https://github.com/Splyse/neo-smart-iot" target="_blank">GitHub</a>
<a href="https://neotracker.io/contract/2328008e6f6c7bd157a342e789389eb034d9cbc4"
target="_blank">Contract</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Imusify.png">
<div>
<h3 class="mt-2 mb-1">Imusify</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/DavidWalters123" target="_blank">DavidWalters123</a>,
<a href="https://github.com/geek96" target="_blank">geek96</a>,
<a href="https://github.com/Nikolaj-K" target="_blank">Nikolaj-K</a>,
<a href="https://github.com/metachris" target="_blank">metachris</a>
</small>
<p class="description">
imusify is a free, blockchain based, incentified and decentralized platform for music
related digital content such as audio,
video, apps, images, and blogging where anyone can join, contribute and get paid $IMU.
</p>
<div class="link">
<a href="http://www.imusify.com/" target="_blank">Website</a>
<a href="https://github.com/imusify" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/ChainLine.png">
<div>
<h3 class="mt-2 mb-1">Chain Line</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/notatestuser" target="_blank">notatestuser</a>
</small>
<p class="description">Peer-to-peer courier platform. Couriers transport items to fulfill
demands and earn courier fees.</p>
<div class="link">
<a href="https://chainline.co/" target="_blank">Website</a>
<a href="https://github.com/notatestuser/chainline-contracts-kt" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Phantasma.png">
<div>
<h3 class="mt-2 mb-1">Phantasma</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/Relfos" target="_blank">Relfos</a>
</small>
<p class="description">
Phantasma is a platform where the users control their own content, instead of relying in
third parties servers. The platform
support any kind of transactions between users, eg: email, chat, files, money transfers. Neo
was used for this project due to its fast transactions and C# support, combined with IPFS (a
distributed file system) to store the actual messages, encrypted with the keys from the Neo
wallets.
</p>
<div class="link">
<a href="https://phantasma.io/demo" target="_blank">Demo</a>
<a href="https://phantasma.io/" target="_blank">Website</a>
<a href="https://github.com/PhantasmaProtocol" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Turing.png">
<div>
<h3 class="mt-2 mb-1">Turing Complete Smart Contract</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/Nikolaj-K" target="_blank">Nikolaj-K</a>
</small>
<p class="description">A smart contract which interprets encoded classical Turing machines.</p>
<div class="link">
<a href="https://www.youtube.com/watch?v=CAUo5aNmvz8" target="_blank">Youtube</a>
<a href="https://github.com/Nikolaj-K/turing-complete-smart-contract"
target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Switcheo.png">
<div>
<h3 class="mt-2 mb-1">Switcheo</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/RavenXce" target="_blank">RavenXce</a>,
<a href="https://github.com/henrytimelessness" target="_blank">henrychua</a>,
<a href="https://github.com/jackyeu" target="_blank">jackyeu</a>
</small>
<p class="description">
Switcheo is a decentralised exchange built on Neo’s blockchain. It supports trading of NEP-5
tokens and Neo system assets
like GAS & NEO. It aims to be a truly decentralised exchange while still providing for a
superb
user experience.
</p>
<div class="link">
<a href="https://www.youtube.com/watch?v=sVu5fGBeUt8" target="_blank">Youtube</a>
<a href="http://switcheo.network/" target="_blank">Website</a>
<a href="https://github.com/ConjurTech/switcheo" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/TripShares.png">
<div>
<h3 class="mt-2 mb-1">TripShares</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/xtolya" target="_blank">xtolya</a>
</small>
<p class="description">
Trip sharing with deposits. Travellers commit to a shared seat by depositing $TRS NEP-5
tokens, which are used as insurance
when the passenger cancels the trip after a set date.
</p>
<div class="link">
<a href="http://tripshares.azurewebsites.net/" target="_blank">Website</a>
<a href="https://github.com/xtolya/TripShares" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/BlockSaver.png">
<div>
<h3 class="mt-2 mb-1">BlockSaver</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/mpetrunic" target="_blank">mpetrunic</a>,
<a href="https://github.com/BlockSaver/backend/commits?author=morrigan"
target="_blank">morrigan</a>
</small>
<p class="description">
Saving smart contract, with interests and fines. You can define how long to lock NEO and GAS
assets, the smart contract defines
an interest rate, and the system has a penalty for early withdrawal.
</p>
<div class="link">
<a href="https://github.com/BlockSaver/smart-saving-contract/" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/LuckyNEO.png">
<div>
<h3 class="mt-2 mb-1">Lucky NEO</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/mmoravec" target="_blank">mmoravec</a>,
<a href="https://github.com/leorong" target="_blank">leorong</a>,
<a href="https://github.com/Stefandasbach" target="_blank">Stefandasbach</a>,
<a href="https://github.com/Wesleyleung" target="_blank">Wesleyleung</a>,
<a href="https://github.com/IDlOT" target="_blank">tammerabi</a>
</small>
<p class="description">
Lucky Neo allows anyone to send their extra gas to a raffle contest. One winner will be
chosen every two weeks and automatically
paid out. Lucky Neo uses an admin account to automatically pay out the winner to the address
that sent the funds; so you don’t have to follow the contest and claim the gas yourself.
</p>
<div class="link">
<a href="https://hackernoon.com/introducing-lucky-neo-an-open-source-cryptocurrency-raffle-project-6f241f3501c2"
target="_blank">Post</a>
<a href="https://github.com/mmoravec/luckyneo" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/NeoFund.png">
<div>
<h3 class="mt-2 mb-1">Neo Fund</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/nickazg" target="_blank">nickazg</a>
</small>
<p class="description">
Neo Fund is a decentralised crowdfunding platform, similar to Kickstarter. The basic
function is to set a goal amount, and
date limit. If the goal is reached the creator of the fund will be awarded the funds, and if
not the contributors can redeem their funds again.
</p>
<div class="link">
<a href="https://github.com/nickazg/neo-fund" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/NepSwap.png">
<div>
<h3 class="mt-2 mb-1">NepSwap</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/block-shaman" target="_blank">block-shaman</a>
</small>
<p class="description">
Protocol and smart contract for trading NEP-5 based assets.NepSwap is a protocol and smart
contract for trading NEP-5 assets.
This prototype idea is based on Etherdelta and Bancor. It doesn’t have a personal token or
ICO,
this project is intended for community, and non-profit. NepSwap is generic, so any asset at
any
time can be traded or kept as balance on the account.
</p>
<div class="link">
<a href="https://github.com/block-shaman/NepSwap" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/SmartPromise.png">
<div>
<h3 class="mt-2 mb-1">Smart Promise</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/SergeyAnkarenko" target="_blank">SergeyAnkarenko</a>,
<a href="https://github.com/marlyonya" target="_blank">marlyonya</a>
</small>
<p class="description">
Smart Promise is an electronic journal of smart promises developed through Blockchain. User
of such an environment receives
a reward for each of his fulfilled promises. The concept of the idea contains the
possibility
to get a strong motivation to action that user pointed in promise.
</p>
<div class="link">
<a href="https://www.youtube.com/watch?v=eCpQqc3TAmQ" target="_blank">Youtube</a>
<a href="http://smartpromise.azurewebsites.net/" target="_blank">Website</a>
<a href="https://github.com/SmartPromise" target="_blank">GitHub</a>
<a href="https://vk.com/doc197649082_454653914?hash=90cc7eb16cf556831b&dl=f4df5db422f65d0a8d"
target="_blank">Whitepaper</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/SunnydApp.png">
<div>
<h3 class="mt-2 mb-1">Sunny DApp</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/JorritvandenBerg" target="_blank">JorritvandenBerg</a>
</small>
<p class="description">
This dapp allows you to insure against bad weather conditions on a given day. If the
relative sunshine duration on that day
is lower than 50 percent, you get paid.
</p>
<div class="link">
<a href="https://sunnydapp.searz.io/" target="_blank">Website</a>
<a href="https://github.com/JorritvandenBerg/sunny-dapp" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/NeoNS.png">
<div>
<h3 class="mt-2 mb-1">Neo Name Service</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/NewEconoLab" target="_blank">NewEconoLab(NEL)</a>
</small>
<p class="description">Distributed domain name service ending with .neo based on Neo blockchain
</p>
<div class="link">
<a href="http://neons.name/" target="_blank">Website</a>
<a href="https://github.com/NewEconoLab/neo-ns" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/THEKEY.png">
<div>
<h3 class="mt-2 mb-1">THEKEY</h3>
<small class="d-block mb-2">
by
<a href="https://thekey.vip" target="_blank">THEKEY team</a>
</small>
<p class="description">
THEKEY is a Decentralized Ecosystem of Identity Verification Tool Using National Big-data
and Blockchain.
<br /> THEKEY Project Team is now developing an identification verification (IDV) tool with
blockchain
based dynamic multi-dimension identification (BDMI) by using Personally Identifiable
Information
(PII) which is exclusively authorized by government authorities.
</p>
</div>
<div class="link">
<a href="https://thekey.vip" target="_blank">website</a>
<a href="https://github.com/thekeygithub/THEKEY" target="_blank">GitHub</a>
<a href="https://t.me/THEKEYOFFICIAL" target="_blank">telegram</a>
<a href="https://www.facebook.com/TheKey-1439094662870680/" target="_blank">facebook</a>
<a href="https://twitter.com/thekeyvip" target="_blank">twitter</a>
<a href="https://neotracker.io/contract/132947096727c84c7f9e076c90f08fec3bc17f18"
target="_blank">Contract</a>
</div>
</div>
<div class="dapp">
<img data-original="images/Trinity.png">
<div>
<h3 class="mt-2 mb-1">TRINITY</h3>
<small class="d-block mb-2">
by
<a href="https://trinity.tech" target="_blank">Trinity team</a>
</small>
<p class="description">
Trinity is applicable to blockchain transfer of NEP-5 standard tokens.
<br /> As a Neo-version lightening network, Trinity achieves real-time payment, low
transaction fees,
scalability, and privacy protection of Neo mainnet assets through state channels technology.
</p>
</div>
<div class="link">
<a href="https://trinity.tech" target="_blank">website</a>
<a href="https://github.com/trinity-project" target="_blank">GitHub</a>
<a href="https://t.me/TrinityStateChannels" target="_blank">telegram</a>
<a href="https://twitter.com/TrinityProtocol" target="_blank">twitter</a>
<a href="https://neotracker.io/contract/08e8c4400f1af2c20c28e0018f29535eb85d15b6"
target="_blank">Contract</a>
</div>
</div>
<div class="dapp">
<img data-original="images/Travala.png">
<div>
<h3 class="mt-2 mb-1">TRAVALA</h3>
<small class="d-block mb-2">
by
<a href="https://www.travala.com/" target="_blank">Travala.com</a>
</small>
<p class="description">
Travala is creating smart travel for the smart economy. A travel booking marketplace with 0%
commission fees. The platform
is powered by the NEP-5 token AVA which provides utility to the multilayer aspects of the
platform.
</p>
</div>
<div class="link">
<a href="https://project.travala.com/" target="_blank">Project</a>
<a href="https://t.me/travala" target="_blank">Telegram</a>
<a href="https://twitter.com/travalacom" target="_blank">Twitter</a>
<a href="https://github.com/travala" target="_blank">GitHub</a>
<a href="https://www.linkedin.com/company/11366536">LinkedIn</a>
<a href="https://www.reddit.com/r/Travala/">Reddit</a>
<a href="https://medium.com/@travala">Medium</a>
<a href="https://neotracker.io/contract/de2ed49b691e76754c20fe619d891b78ef58e537"
target="_blank">Contract</a>
</div>
</div>
<div class="dapp">
<img data-original="images/Narrative.png">
<div>
<h3 class="mt-2 mb-1">Narrative</h3>
<small class="d-block mb-2">
by
<a href="https://www.narrative.network" target="_blank">Narrative Team</a>
</small>
<p class="description">
Narrative is a self-sustaining content network where members are in charge, users get paid,
and the world’s best content,
on every subject imaginable, is easy to find.
</p>
<div class="link">
<a href="https://www.narrative.network" target="_blank">Website</a>
<a href="https://community.narrative.network" target="_blank">Community</a>
<a href="https://twitter.com/narrative_hq" target="_blank">Twitter</a>
<a href="https://t.me/narrativenetwork" target="_blank">Telegram</a>
<a href="https://github.com/NarrativeNetwork" target="_blank">GitHub</a>
<a href="https://neotracker.io/contract/a721d5893480260bd28ca1f395f2c465d0b5b1c2"
target="_blank">Contract</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Aphelion.jpg">
<div>
<h3 class="mt-2 mb-1">Aphelion</h3>
<small class="d-block mb-2">
by
<a href="https://aphelion.org" target="_blank">The Aphelion Team</a>
</small>
<p class="description">
Aphelion (APH) is revolutionary peer-to-peer decentralized trading platform. The core
feature is a Distributed Exchange Asset
Ledger (DEAL) that fuels the smart contract Aphelion DApp built on the Neo blockchain.
</p>
<div class="link">
<a href="https://www.aphelion.org" target="_blank">Website</a>
<a href="https://aphelion.org/wp.html" target="_blank">Whitepaper</a>
<a href="https://t.me/AphelionToken" target="_blank">Telegram</a>
<a href="https://github.com/aphtoken/" target="_blank">GitHub</a>
<a href="https://neotracker.io/contract/a0777c3ce2b169d4a23bcba4565e3225a0122d95"
target="_blank">Contract</a>
</div>
</div>
</div>
<div class="dapp">
<div style="background-color:#000">
<img data-original="images/Bridge_Ndapps_loop.gif">
</div>
<img class="d-none" />
<div>
<h3 class="mt-2 mb-1">Bridge Protocol</h3>
<small class="d-block mb-2">
by
<a href="https://www.bridgeprotocol.io/about/" target="_blank">Team</a>
</small>
<p class="description">Bridge Protocol is building new tools and standards for businesses, KYC
and ICOs.</p>
<div class="link">
<a href="https://www.bridgeprotocol.io/" target="_blank">Website</a>
<a href="https://storage.googleapis.com/bridge-assets/bridge-protocol-whitepaper-1_0.pdf"
target="_blank">Whitepaper</a>
<a href="https://t.me/BRIDGEprotocol" target="_blank">Telegram</a>
<a href="https://twitter.com/BridgeProtocol" target="_blank">Twitter</a>
<a href="https://www.facebook.com/BRIDGEprotocol/" target="_blank">Facebook</a>
<a href="https://www.reddit.com/r/iambridgeprotocol/" target="_blank">Reddit</a>
<a href="https://neotracker.io/contract/891daf0e1750a1031ebe23030828ad7781d874d6"
target="_blank">Contract</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/EffectAI.png">
<div>
<h3 class="mt-2 mb-1">Effect.AI</h3>
<small class="d-block mb-2">
by
<a href="https://effect.ai/" target="_blank">Effect.AI</a>
</small>
<p class="description">
To solve many of the problems with the current AI market, Effect.AI proposes a private,
decentralized ecosystem for AI development
and AI related services called The Effect Network.
</p>
<div class="link">
<a href="https://effect.ai/" target="_blank">Website</a>
<a href="https://effect.ai/download/effect_whitepaper.pdf" target="_blank">Whitepaper</a>
<a href="https://effect.ai/download/effect_lightpaper.pdf" target="_blank">Lightpaper</a>
<a href="https://t.me/effectai" target="_blank">Telegram</a>
<a href="https://twitter.com/effectaix" target="_blank">Twitter</a>
<a href="https://github.com/effectai" target="_blank">GitHub</a>
<a href="https://www.reddit.com/r/effectai" target="_blank">Reddit</a>
<a href="https://medium.com/@effectai" target="_blank">Medium</a>
<a href="https://www.facebook.com/effectai/" target="_blank">Facebook</a>
<a href="https://www.linkedin.com/company/27091205/" target="_blank">LinkedIn</a>
<a href="https://steemit.com/@effectai" target="_blank">Steemit</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/thor.png">
<div>
<h3 class="mt-2 mb-1">Thor Token</h3>
<small class="d-block mb-2">
by
<a href="https://www.thortoken.com" target="_blank">Thor Token</a>
</small>
<p class="description">
Blockchain-Powered Gig Economy Solutions. Helping contractors earn more, faster, and more
securely.
</p>
<div class="link">
<a href="https://www.thortoken.com" target="_blank">Website</a>
<a href="https://t.me/joinchat/F-UKj1Md5AilZgV9zU0Dwg" target="_blank">Telegram</a>
<a href="https://github.com/thortoken/thor-mobile-wallet" target="_blank">GitHub</a>
<a href="https://medium.com/thorco" target="_blank">Medium</a>
<a href="https://twitter.com/Thortoken" target="_blank">Twitter</a>
<a href="https://www.facebook.com/ThorToken/" target="_blank">Facebook</a>
<a href="https://www.linkedin.com/company/new-meta-inc-/" target="_blank">LinkedIn</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Senno.png">
<div>
<h3 class="mt-2 mb-1">Senno</h3>
<small class="d-block mb-2">
by
<a href="https://senno.io/" target="_blank">Senno Group</a>
</small>
<p class="description">
Senno is the Blockchain’s first sentiment analysis platform with an open API for 3rd party
apps. It utilizes distributed
sentiment analysis and AI algorithms to create a Real-Time crowd wisdom ecosystem and
sophisticated
business intelligence analytics.
</p>
<div class="link">
<a href="https://senno.io/" target="_blank">Website</a>
<a href="http://senno.io/SennoWhitepaper.pdf" target="_blank">Whitepaper</a>
<a href="https://t.me/SennoGroup" target="_blank">Telegram</a>
<a href="https://twitter.com/SennoGroup" target="_blank">Twitter</a>
<a href="https://www.linkedin.com/company/sennogroup/" target="_blank">LinkedIn</a>
<a href="https://www.facebook.com/senno.io/" target="_blank">Facebook</a>
<a href="https://medium.com/@Senno/" target="_blank">Medium</a>
<a href="https://sennogroup.slack.com/" target="_blank">Slack</a>
<a href="https://github.com/SennoGroup" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/alphacat.jpg">
<div>
<h3 class="mt-2 mb-1">Alphacat</h3>
<small class="d-block mb-2">
by
<a href="https://www.alphacat.io/" target="_blank">AlphaCat</a>
</small>
<p class="description">
Alphacat is the most advanced AI robot advisor & marketplace for simple-to-use yet powerful
trading tools focused on cryptocurrencies.
</p>
<div class="link">
<a href="https://www.alphacat.io/" target="_blank">Website</a>
<a href="https://t.me/Alphacatglobal" target="_blank">Telegram(English)</a>
<a href="https://t.me/Alphacatchinesegroup" target="_blank">Telegram(Chinese)</a>
<a href="https://twitter.com/Alphacat_io" target="_blank">Twitter</a>
<a href="https://www.facebook.com/Alphacat.io" target="_blank">Facebook</a>
<a href="https://medium.com/@Alphacatglobal" target="_blank">Medium</a>
<a href="https://github.com/ACATadmin" target="_blank">GitHub</a>
<a href="https://neotracker.io/contract/7f86d61ff377f1b12e589a5907152b57e2ad9a7a"
target="_blank">Contract</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/FTW.png">
<div>
<h3 class="mt-2 mb-1">FTW</h3>
<small class="d-block mb-2">
by
<a href="https://www.ftwcoin.io" target="_blank">ForTheWin</a>
</small>
<p class="description">The first purely decentralized blockchain lottery</p>
<div class="link">
<a href="https://www.ftwcoin.io" target="_blank">Website</a>
<a href="https://wallet.ftwcoin.io" target="_blank">FTW Wallet</a>
<a href="https://github.com/ForTheWinn/smart-contract" target="_blank">Smart Contract</a>
<a href="https://t.me/ftwcoin" target="_blank">Telegram</a>
<a href="https://medium.com/ftw-blog" target="_blank">Medium</a>
<a href="https://twitter.com/ForthewinCoin" target="_blank">Twitter</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/GagapayNetwork.jpg">
<div>
<h3 class="mt-2 mb-1">Gagapay.network</h3>
<small class="d-block mb-2">
by
<a href="https://www.gagapay.com/" target="_blank">Gagapay Limited</a>
</small>
<p class="description">
Gagapay Network is smart marketing platform for creating affiliate, referral, network
marketing, loyalty reward and bounty
programs powered by smart contracts
</p>
<div class="link">
<a href="https://www.gagapay.network/" target="_blank">Website</a>
<a href="https://drive.google.com/file/d/1db_Wvj7Hh2wh8vRiI2n6JTCzMIsOvCLS/view"
target="_blank">Whitepaper</a>
<a href="https://t.me/gagapay_network" target="_blank">Telegram</a>
<a href="https://twitter.com/GagapayOfficial" target="_blank">Twitter</a>
<a href="https://www.facebook.com/GagaPaybtc" target="_blank">Facebook</a>
<a href="https://medium.com/@GagapayOfficial" target="_blank">Medium</a>
<a href="https://github.com/gagapay" target="_blank">GitHub</a>
<a href="https://neoscan-testnet.io/transaction/aeef0241f82959fa3d055fd5b64b270cdc9f9f95d7e6e70d9960eabf5d66d3fa"
alt="463b304597fe135c9fe5d3f9ba169246783ac30e" target="_blank">Contract (testnet)</a>
<a href="https://github.com/gagapay/gagapay.network.nep5" target="_blank">Contract
Source</a>
</div>
</div>
</div>
<div class="dapp d-none">
<img data-original="images/EPIPHANY.png">
<div>
<h3 class="mt-2 mb-1">EPIPHANY.IO</h3>
<small class="d-block mb-2">
by
<a href="http://www.epnex.io/" target="_blank">EPIPHANY Limited</a>
</small>
<p class="description">
Epiphany (epnex.io) is a UNIQUE exchange platform for digital assets. With innovative high
security, user friendly features
and brokerage service, EPIPHANY aims to revolutionize the current blockchain trading system.
</p>
<div class="link">
<a href="http://www.epnex.io/" target="_blank">Website</a>
<a href="https://www.reddit.com/r/EPNex/" target="_blank">reddit</a>
<a href="https://www.youtube.com/channel/UCmyi3GvcNJwr_sSvCTg3eBA?view_as=subscriber"
target="_blank">youtube</a>
<a href="https://twitter.com/@EPNex" target="_blank">twitter</a>
<a href="https://www.facebook.com/EPNex.io/" target="_blank">facebook</a>
<a href="https://www.linkedin.com/company/epnex/" target="_blank">linkedin</a>
<a href="https://github.com/nerodeveloper/EPN" target="_blank">Github</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Spotcoin.png">
<div>
<h3 class="mt-2 mb-1">Spotcoin</h3>
<small class="d-block mb-2">
by
<a href="https://spotcoin.com/" target="_blank">Spotcoin</a>
</small>
<p class="description">
At Spotcoin, we bridge the gap between the traditional banking sector and the emerging
digital currency marketplace. We are
focused on making the financial institution of the future accessible for everyone.
</p>
<div class="link">
<a href="https://spotcoin.com/" target="_blank">Website</a>
<a href="https://t.me/spotcointeam" target="_blank">Telegram</a>
<a href="https://www.reddit.com/r/Spotcoin/" target="_blank">Reddit</a>
<a href="https://steemit.com/@spotcoin" target="_blank">Steemit</a>
<a href="https://www.linkedin.com/company/18247336/" target="_blank">LinkedIn</a>
<a href="https://twitter.com/therealspotcoin" target="_blank">Twitter</a>
<a href="https://github.com/realspotcoin" target="_blank">GitHub</a>
<a href="https://www.facebook.com/spotcoin/" target="_blank">Facebook</a>
<a href="https://www.instagram.com/spotcoin/" target="_blank">Instagram</a>
<a href="https://www.youtube.com/channel/UCpNwYXK1JMJpaRBKyYqqDIQ"
target="_blank">YouTube</a>
<a href="https://www.g0blin.com/spotcoin" target="_blank">Bounty</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/nachomen.png">
<div>
<h3 class="mt-2 mb-1">Nachomen</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/Relfos" target="_blank">Relfos</a>
</small>
<p class="description">
Nachomen is a turn based multiplayer game using a Neo smart contract as backend. In Nachomen
players can collect different
"luchadores", which can then be pit against other players luchadores. The game frontend is
implemented
as a C# game client running on Unity engine.
</p>
<div class="link">
<a href="https://www.youtube.com/watch?v=EejWpEwmJl4" target="_blank">Youtube</a>
<a href="http://45.76.88.140:5656/index.html" target="_blank">Demo</a>
<a href="https://github.com/Relfos/nacho-game" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/elight.png">
<div>
<h3 class="mt-2 mb-1">Elight</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/elightWorkspace" target="_blank">elightWorkspace</a>
</small>
<p class="description">
Elight is the project designed to automate thermo logistics processes. It includes the
possibility of interaction between
temperature data logger device, mobile app and blockchain, where Smart Contracts
implementation
is the key feature.
</p>
<div class="link">
<a href="https://youtu.be/92E9kRa9msM" target="_blank">Youtube</a>
<a href="https://expo.io/@sergeyankarenko/elightmobile" target="_blank">WebSite</a>
<a href="https://github.com/elightWorkspace" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/treatail.jpg">
<div>
<h3 class="mt-2 mb-1">Treatail.NEO</h3>
<small class="d-block mb-2">
by
<a href="https://github.com/gubanotorious" target="_blank">gubanotorious</a>
</small>
<p class="description">
This repository contains the source code for the Treatail Smart Contract for the NEP5 Token
(TTL) and Treatail Asset management,
core middleware (leveraging neo-lux), REST API middleware, test libraries, and test harness.
It also contains a preliminary proof of concept Smart Contract that will be used by the
product
in the future to facilitate deal escrow payment distribution and supply chain workflows for
deal
fulfillment.
</p>
<div class="link">
<a href="https://youtu.be/1Ua_NGQfP9A" target="_blank">Youtube</a>
<a href="http://www.treatail.com/" target="_blank">WebSite</a>
<a href="https://github.com/gubanotorious/Treatail.NEO/tree/NEO-MS-Competi"
target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/mywish.png">
<div>
<h3 class="mt-2 mb-1">MyWish</h3>
<small class="d-block mb-2">
by
<a href="https://mywish.io/" target="_blank">MyWish Team</a>
</small>
<p class="description">
Create your Neo smart contract without coding: Token, Crowdsale, Will, Deffered payment etc.
There are more than 2000 active
users discovered MyWish Smart Contracts. Join them and create your own one!
</p>
<div class="link">
<a href="https://mywish.io/" target="_blank">Website</a>
<a href="https://contracts.mywish.io/dashboard/create" target="_blank">Platform</a>
<a href="https://twitter.com/mywishplatform" target="_blank">Twitter</a>
<a href="https://www.facebook.com/MyWish.io/" target="_blank">Facebook</a>
<a href="https://t.me/MyWish_platform" target="_blank">Telegram</a>
<a href="https://medium.com/@VladimirTikhomirov" target="_blank">Medium</a>
<a href="https://www.reddit.com/r/mywish/" target="_blank">Reddit</a>
<a href="https://bitcointalk.org/index.php?topic=2059189.msg20545654#msg20545654"
target="_blank">BitcoinTalk</a>
<a href="https://github.com/mywishplatform" target="_blank">GitHub</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/EPIPHANY.png">
<div>
<h3 class="mt-2 mb-1">EPIPHANY.IO</h3>
<small class="d-block mb-2">
by
<a href="http://www.epnex.io/" target="_blank">EPIPHANY Limited</a>
</small>
<p class="description">
Epiphany (epnex.io) is a UNIQUE exchange platform for digital assets. With innovative high
security, user friendly features
and brokerage service, EPIPHANY aims to revolutionize the current blockchain trading system.
</p>
<div class="link">
<a href="http://www.epnex.io/" target="_blank">Website</a>
<a href="https://www.reddit.com/r/EPNex/" target="_blank">Reddit</a>
<a href="https://www.youtube.com/channel/UCmyi3GvcNJwr_sSvCTg3eBA?view_as=subscriber"
target="_blank">Youtube</a>
<a href="https://twitter.com/@EPNex" target="_blank">Twitter</a>
<a href="https://www.facebook.com/EPNex.io/" target="_blank">Facebook</a>
<a href="https://www.linkedin.com/company/epnex/" target="_blank">Linkedin</a>
<a href="https://github.com/EPNex" target="_blank">Github</a>
</div>
</div>
</div>
<div class="dapp">
<img data-original="images/Asura.jpg">
<div>
<h3 class="mt-2 mb-1">Asura Coin</h3>
<small class="d-block mb-2">
by
<a href="https://asuracoin.io/" target="_blank">Asura Coin</a>
</small>
<p class="description">
Asura Coin is an eSports platform built on the Neo blockchain that allows gamers the
opportunity to “bet, compete, learn,
discuss, and earn.” The platform will allow for live streaming, community betting, and
commissions
to further fund future events.
</p>
<div class="link">
<a href="https://asuracoin.io/" target="_blank">Website</a>
<a href="https://t.me/asuracoin" target="_blank">Telegram</a>
<a href="https://steemit.com/@asuracoin" target="_blank">Steemit</a>
<a href="https://www.facebook.com/asuracoin" target="_blank">Facebook</a>
<a href="https://twitter.com/asuracoin" target="_blank">Twitter</a>
<a href="https://www.reddit.com/r/AsuraCoin/" target="_blank">Reddit</a>