forked from GetScatter/ScatterApps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
apps.json
1188 lines (1185 loc) · 37.6 KB
/
apps.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
{
"EOSIO": [
{
"applink": "sportbet.one",
"name": "SportBet",
"type": "Gambling",
"description": "First decentralized sportsbook on EOS blockchain",
"url": "https://sportbet.one",
"hasimage": "1"
},
{
"applink": "eosblue.one",
"name": "EOSBLUE",
"type": "Game",
"description": "Texas Poker ,Black Jack, Caribbean Poker,Baccarat etc. The Best Casino Experience On EOS.",
"url": "https://eosblue.one",
"hasimage": "1"
},{
"applink": "game.asteroidrush.io",
"name": "Asteroid Rush",
"type": "Game",
"description": "MMO-strategy where players can become prospectors in our solar system's main asteroid belt",
"url": "https://game.asteroidrush.io",
"hasimage": "1"
},
{
"applink": "eosnow.bet",
"name": "EOSNow",
"type": "Game",
"description": "Fair gaming platform on EOS blockchain. Play & get bonuses!",
"url": "https://eosnow.bet",
"hasimage": "1"
},
{
"applink": "eoslotto.in",
"name": "EOS Lotto",
"type": "Game",
"description": "100% decentralized EOS lottery returning 100% revenue to the buyer! Recommend to friends, buy, and be a lucky hero.",
"url": "http://eoslotto.in",
"hasimage": "1"
},
{
"applink": "app.boid.com",
"name": "Boid.com",
"type": "Social",
"description": "The Social Supercomputer",
"url": "https://app.boid.com",
"hasimage": "1"
},
{
"applink": "magnetic.avarkey.com",
"name": "Magnetic",
"type": "Game",
"description": "Magnetic is a predictive quiz social game, which is a service to receive rewards if predictions are made through O/X on questions.",
"url": "https://magnetic.avarkey.com",
"hasimage": "1"
},
{
"applink": "patreos.com",
"name": "Patreos",
"type": "Tool",
"description": "With Patreos, you support the creators you love, not the platform they use. Share, subscribe, and fund campaigns to promote community growth and creative freedom.",
"url": "https://www.patreos.com",
"hasimage": "1"
},
{
"applink": "ipse.io",
"name": "IPSE",
"type": "Tool",
"description": "IPSE, the web 3.0’s network traffic portal, decentralized search engine based on IPFS! ",
"url": "https://ipse.io",
"hasimage": "1"
},
{
"applink": "cadeos.io",
"name": "CADEOS.io",
"type": "Tool",
"description": "Decentralized CAD.files & Project Management Platform",
"url": "https://cadeos.io/scatter-kyc/",
"hasimage":"1"
},
{
"applink": "www.eosdividends.com",
"name": "EOS Dividends",
"type": "Gambling",
"description": "Tokens that pay you while you sleep",
"url": "https://www.eosdividends.com/",
"hasimage": "1"
},
{
"applink": "eosp.in",
"name": "EOSPIN",
"type": "Gambling",
"description": "EOS Online Roulette Casino",
"url": "https://eosp.in",
"hasimage": "1"
},
{
"applink": "gemcity.io",
"name": "GemCity",
"type": "Game",
"description": "After two centuries, space explorers finally discovered GEM. I heard that GEM can get a lot of wealth. Come to GEM CITY to start the EOS Eco Treasure New Era era!",
"url": "https://www.gemcity.io",
"hasimage": "1"
},
{
"applink": "eosgiftcard.com",
"name": "EOS Gift Card",
"type": "Wallet",
"description": "Easily create new EOS accounts for friends, family or co-workers in form of PDF files, e.g. as a birthday present. The accounts are fully pre-configured with CPU, NET and RAM!",
"url": "https://eosgiftcard.com",
"hasimage": "1"
},
{
"applink": "eoshash.win",
"name": "EOSHash",
"type": "Gambling",
"description": "The FAIREST Decentralized Crypto Casino Built on EOS, use hash to draw winning numbers to guarantee absolute Fairness, No Chance for Cheating at All! Generous rewards, high referral bonus!",
"url": "https://eoshash.win",
"hasimage": "1"
},
{
"applink": "bethash.io",
"name": "BetHash",
"type": "Gambling",
"description": "The FAIREST Decentralized Crypto Casino Built on EOS, use hash to draw winning numbers to guarantee absolute Fairness, No Chance for Cheating at All! Generous rewards, high referral bonus!",
"url": "https://bethash.io",
"hasimage": "1"
},
{
"applink": "eosluck.one",
"name": "EOSLUCK",
"type": "Gambling",
"description": "EOSLUCK is a betting platform based on EOS.",
"url": "https://eosluck.one/",
"hasimage": "1"
},
{
"applink": "dapps.luckycoin.live",
"name": "Lucky Coin",
"type": "Gambling",
"description": "Lucky Coin is a new generation PVP betting platform. Players determine the outcome!",
"url": "https://dapps.luckycoin.live",
"hasimage": "1"
},
{
"applink": "eosminerbot.io",
"name": "EOS Miner Bot",
"type": "Tool",
"description": "Mining utility bot for EOS based dice tokens.",
"url": "https://www.eosminerbot.io/",
"hasimage": "1"
},
{
"applink": "eostime.io",
"name": "EOS Time",
"type": "Game",
"description": "Play EOS Time to win EOS in real-time auctions - share the profits with TIME tokens",
"url": "https://eostime.io/",
"hasimage": "1"
},
{
"applink": "eoslots.com",
"name": "EOSlots",
"type": "Gambling",
"description": "EOSlots is the largest Slots platform on EOS blockchain.",
"url": "https://eoslots.com/",
"hasimage": "1"
},
{
"applink": "eosx.io",
"name": "EOSX",
"type": "Block Explorer",
"description": "Fastest Block Explorer and Toolkit for EOSIO Blockchains",
"url": "https://www.eosx.io/",
"hasimage": "1"
},
{
"applink": "honordapp.online",
"name": "Honor Dice",
"type": "Game",
"description": "Honor Dice is a dice game built using blockchain technology, based on Smart Contract and the game process is fully transparent. Register to get 1000 HON today!",
"url": "http://honordapp.online",
"hasimage": "1"
},
{
"applink": "luckynuts.one",
"name": "Lucky Nuts",
"type": "Gambling",
"description": "True decentralized eos gambling",
"url": "http://www.luckynuts.one/",
"hasimage": "1"
},
{
"applink": "trustdice.win",
"name": "Trust Dice",
"type": "Game",
"description": "Trust Dice is a dice game built using trustless blockchain technology, based on Smart Contract and the game process is fully transparent.",
"url": "https://trustdice.win/",
"hasimage": "1"
},
{
"applink": "fintecapp.com",
"name": "EOS Comic Fintec",
"type": "Game",
"description": "Comic DAPP , 第一個漫畫分享 DAPP.",
"url": "http://www.fintecapp.com/",
"hasimage": "1"
},
{
"applink": "infiniverse.net",
"name": "Infiniverse",
"type": "Game",
"description": "Infiniverse is an augmented reality platform and virtual world on top of the real world. It combines the entire world's digital space into a single, persistent, interactive, virtual layer.",
"url": "https://www.infiniverse.net/",
"hasimage": "1"
},
{
"applink": "sendeosdotio",
"name": "SendEOS",
"type": "Payment",
"description": "Send EOS to anyone with just an email address. We are a viral payment and referrel system for EOS.",
"url": "https://sendeos.io",
"hasimage": "1"
},
{
"applink": "play.lelego.io",
"name": "EOS LeLego",
"type": "Game",
"description": "Baccarat on EOS. EOS上最正宗、最公平的百家乐",
"url": "https://play.lelego.io",
"hasimage": "1"
},
{
"applink": "jacks.rovegas.com",
"name": "Royal Online Vegas",
"type": "Game",
"description": "Royal Online Vegas is an online casino run on the EOS blockchain network. We provide instant game plays backed by trustworthy smart contract, allowing users to place bets through a EOS transaction on our smart contract at zero cost and have absolute certainty all games are 100% fair. MEV is a smart contract backed eco-system where everyone can be the owner of this EOS online casino and share the profit of its operation.",
"url": "https://jacks.rovegas.com/",
"hasimage": "1"
},
{
"applink": "chestnutaccounts.com",
"name": "Chestnut",
"type": "Tool",
"description": "A chestnut account is hard to crack – improving security and automation of accounts on the EOS blockchain network",
"url": "https://www.chestnutaccounts.com/",
"hasimage": "1"
},
{
"applink": "members.eosdac.io",
"name": "EosDAC Member Client",
"type": "Tool",
"description": "Register and interact with eosDAC, the community-owned EOS blocker producer and Decentralized Autonomous Community enabler.",
"url": "https://members.eosdac.io/",
"hasimage": "1"
},
{
"applink": "catchthefrog.com",
"name": "CatchTheFrog",
"type": "Game",
"description": "CatchTheFrog, get FROG-Token and don't be a frog... catch'm!",
"url": "https://www.catchthefrog.com",
"hasimage": "1"
},
{
"applink": "enjoy.bet",
"name": "ENJOY",
"type": "Game",
"description": "ENJOY.BET is a platform for trusted, profit sharing and high performance gaming experiences based on the EOS.IO blockchain. It solves the problems of traditional online gaming platforms and other online cryptocurrency casinos, including high fees, slow recharge/cash out and lack of trust. Our goal is to create the largest cryptocurrency gaming platform with platform token holders and share the platform's profits. We welcome everyone to join our community and build and grow together. We believe that value is ultimately created by our users, not just our team.",
"url": "https://enjoy.bet/",
"hasimage": "1"
},
{
"applink": "3d-eos.qiulot.io",
"name": "球乐3D",
"type": "Gambling",
"description": "球乐3D是结合了传统资金盘以及赌球的创新型零和游戏,在这里,有人赢就会有人输,你是战到最后的那一个么?Bet for your favorite football team.",
"url": "https://3d-eos.qiulot.io",
"hasimage": "1"
},
{
"applink": "eostiger.io",
"name": "EOSTiger",
"type": "Game",
"description": "EOSTiger is a classic entertainment platform based on the EOS.IO blockchain, rules are written by Smart Contracts.It is a collection of classic games with different senses, such as slot machines, Texas hold 'em, roulette, and blackjack. ",
"url": "https://eostiger.io/",
"hasimage": "1"
},
{
"applink": "eosmax.io",
"name": "EOS Max",
"type": "Game",
"description": "SLOT and DICE on blockchain, all results can be verified. 100% of all game profit is distributed to holders of our MAX token.",
"url": "https://eosmax.io",
"hasimage": "1"
},
{
"applink": "fiat.carbon.money",
"name": "Carbon Wallet",
"type": "Wallet",
"description": "Multicurrency wallet with fiat on-ramp",
"url": "https://fiat.carbon.money/",
"hasimage": "1"
},
{
"applink": "horuspaymarket",
"name": "HorusPay Market",
"type": "Payment",
"description": "EOS-based decentralized Global Payroll Portal that allows companies to exchange private encrypted secured data with international payroll vendors using the Blockchain.",
"url": "https://horuspay.io/",
"hasimage": "1"
},
{
"applink": "eosfun.win",
"name": "EOSFun",
"type": "Game",
"description": "EOS crash game",
"url": "https://eosfun.win/",
"hasimage": "1"
},
{
"applink": "app.nebulaprotocol.com",
"name": "Nebula",
"type": "Social",
"description": "Building decentralized apps",
"url": "https://app.nebulaprotocol.com/",
"hasimage": "1"
},
{
"applink": "worbli",
"name": "WORBLI",
"type": "Chain",
"description": "Financial Services Network",
"url": "https://worbli.io/",
"hasimage": "1"
},
{
"applink": "cryptomeetup",
"name": "CryptoMeetUp",
"type": "Game",
"description": "Cryptomeetup is the world's first decentralized event platform powered by EOS.IO blockchain technology!",
"url": "https://cryptomeetup.io/",
"hasimage": "1"
},
{
"applink": "farmeos.io",
"name": "FarmEOS",
"type": "Game",
"description": "FarmEOS is the world's first DApp gaming eco-platform that combines game mining, Bancor and price dividend weight. PoB(Proof of Bancor) and DoP (Dividend of Price) are also the new mining modes pioneered by FarmEOS team. ",
"url": "https://www.farmeos.io/",
"hasimage": "1"
},
{
"applink": "se7en",
"name": "Se7ens",
"type": "Game",
"description": "Interactive Dice Game",
"url": "https://se7ens.io/",
"hasimage": "1"
},
{
"applink": "bloks.io",
"name": "Bloks",
"type": "Block Explorer",
"description": "Full featured Block Explorer and Toolkit for EOSIO Blockchains",
"url": "https://bloks.io/",
"hasimage": "1"
},
{
"applink": "btuga.io",
"name": "Btuga",
"type": "Block Explorer",
"description": "",
"url": "https://btuga.io/",
"hasimage": "1"
},
{
"applink": "chintai.io",
"name": "Chintai",
"type": "Tool",
"description": "Token Leasing Platform",
"url": "https://eos.chintai.io/",
"hasimage": "1"
},
{
"applink": "decentwitter.com",
"name": "DecenTwitter",
"type": "Social",
"description": "",
"url": "http://decentwitter.com/",
"hasimage": "1"
},
{
"applink": "deosgames.com",
"name": "Deos Games",
"type": "Game",
"description": "",
"url": "https://deosgames.com/",
"hasimage": "1"
},
{
"applink": "dexeos.io",
"name": "DEXEOS",
"type": "Exchange",
"description": "",
"url": "https://dexeos.io/",
"hasimage": "1"
},
{
"applink": "eosavatarimg.now.sh",
"name": "EOS Avatar Image",
"type": "Tool",
"description": "",
"url": "https://eosavatarimg.now.sh/"
},
{
"applink": "eos.bancor.network",
"name": "EOS Bancor",
"type": "Exchange",
"description": "",
"url": "https://eos.bancor.network/",
"hasimage": "1"
},
{
"applink": "eosbet.io",
"name": "EOSBet Dice",
"type": "Game",
"description": "",
"url": "https://eosbet.io/",
"hasimage": "1"
},
{
"applink": "endless.game",
"name": "Endless Game",
"type": "Game",
"description": "The highest-yeilding profit-sharing game (at least 40% of the daily profit) on EOS Provable Fairness.",
"url": "https://endless.game",
"hasimage": "1"
},
{
"applink": "eosbooks.io",
"name": "EOS Books",
"type": "Game",
"description": "The collaborative decentralized book writing game.",
"url": "https://eosbooks.io/",
"hasimage": "1"
},
{
"applink": "eosbingo.net",
"name": "EOS Bingo",
"type": "Game",
"description": "",
"url": "https://eosbingo.net/",
"hasimage": "1"
},
{
"applink": "eosfilestore.now.sh",
"name": "EOSFilestore",
"type": "Tool",
"description": "",
"url": "https://eosfilestore.now.sh/",
"hasimage": "1"
},
{
"applink": "eos.discussions.app",
"name": "EOS Discussions",
"type": "Forum",
"description": "A decentralized censorship resistant discussion platform",
"url": "https://eos.discussions.app/",
"hasimage": "1"
},
{
"applink": "eosknights.io",
"name": "EOS Knights",
"type": "Game",
"description": "",
"url": "http://eosknights.io/",
"hasimage": "1"
},
{
"applink": "eosnames.net",
"name": "EOS Names",
"type": "Exchange",
"description": "",
"url": "http://eosnames.net/",
"hasimage": "1"
},
{
"applink": "eosnameswaps.com",
"name": "EOS Name Swaps",
"type": "Exchange",
"description": "",
"url": "https://www.eosnameswaps.com/?ref=scatter",
"hasimage": "1"
},
{
"applink": "eosplay.co",
"name": "EOSPlay Lottery & Dice",
"type": "Game",
"description": "",
"url": "https://eosplay.co/",
"hasimage": "1"
},
{
"applink": "eostoolkit.io",
"name": "EOSToolkit",
"type": "Tool",
"description": "",
"url": "https://eostoolkit.io/",
"hasimage": "1"
},
{
"applink": "tools.franceos.fr",
"name": "EOSTools by Franceos",
"type": "Tool",
"description": "",
"url": "https://tools.franceos.fr/",
"hasimage": "1"
},
{
"applink": "everipedia.org",
"name": "Everipedia",
"type": "Educational",
"description": "The world's first encyclopedia on the blockchain",
"url": "https://everipedia.org/",
"hasimage": "1"
},
{
"applink": "eos.feexplorer.io",
"name": "FeeXplorer",
"type": "Exchange",
"description": "",
"url": "https://eos.feexplorer.io/",
"hasimage": "1"
},
{
"applink": "www.luckywith.me",
"name": "Lucky With Me",
"type": "Game",
"description": "",
"url": "https://www.luckywith.me/",
"hasimage": "1"
},
{
"applink": "monstereos.io",
"name": "MonsterEOS",
"type": "Game",
"description": "",
"url": "http://monstereos.io/",
"hasimage": "1"
},
{
"applink": "game.pandafun.io",
"name": "PandaFun",
"type": "Game",
"description": "",
"url": "http://game.pandafun.io/",
"hasimage": "1"
},
{
"applink": "portal.eoseoul.io",
"name": "EOSSeoul Voting Portal",
"type": "Tool",
"description": "",
"url": "https://portal.eoseoul.io/",
"hasimage": "1"
},
{
"applink": "www.eossportsbets.io",
"name": "EOS Sports Bets",
"type": "Game",
"description": "P2P Sports Betting",
"url": "https://www.eossportsbets.io/",
"hasimage": "1"
},
{
"applink": "walletforeos",
"name": "Wallet for EOS",
"type": "Wallet",
"description": "Wallet for EOS is a smart tool to check the EOS Token Balance and transferring of EOS tokens. Now you can check your EOS balance in a user-friendly platform.",
"url": "http://www.walletforeos.com/",
"hasimage": "1"
},
{
"applink": "game.wizards.one",
"name": "Wizards One",
"type": "Game",
"description": "",
"url": "https://game.wizards.one/",
"hasimage": "1"
},
{
"applink": "betdice.one",
"name": "BetDice",
"type": "Game",
"description": "BetDice is the largest gaming platform on EOS blockchain. Users can earn DICE tokens from playing, and then get hourly dividends from staking. Both the platform and the token are based on user-centered design, which gives our users the best gaming experience.",
"url": "https://betdice.one/",
"hasimage": "1"
},
{
"applink": "voteos.info",
"name": "Voteos.info",
"type": "Forum",
"description": "The purpose of this site is to help the EOS community develop a way to discover the wishes of the tokenholders; where there is agreement and where there is controversy, based on the amount of support a given proposal attains. Here, you can let your voice be heard and your tokens be counted on any issue. You can show support for any proposal or comment, or start your own initiative to see if it is widely supported! Join us in our effort to help the EOS better communicate, with on-chain discussions, which can lead to referenda, worker proposals, changes to the constitution, system contracts or simply gauging the support for your ideas. Use your stake to make your opinion count!",
"url": "https://voteos.info/",
"hasimage": "1"
},
{
"applink": "playeos.co",
"name": "EOS World",
"type": "Game",
"description": "Own the world on EOS blockchain",
"url": "https://playeos.co/",
"hasimage": "1"
},
{
"applink": "eoshub.io",
"name": "eoshub",
"type": "Tool",
"description": "UX-focused EOS toolkit service.",
"url": "https://eoshub.io",
"hasimage": "1"
},
{
"applink": "live.wallet.trybe.one",
"name": "Trybe",
"type": "Wallet",
"description": "Trybe Web Wallet",
"url": "https://live.wallet.trybe.one",
"hasimage": "1"
},
{
"applink": "bet24.one",
"name": "BET24",
"type": "Game",
"description": "Roll the dice on the EOS blockchain platform",
"url": "https://bet24.one/",
"hasimage": "1"
},
{
"applink": "btex.org",
"name": "BTEX",
"type": "Exchange",
"description": "BTEX是EOS上的通证交易所,将上币、撮合、结算全部放于链上,做到交易所功能全上链。BT是平台代币,通过持有BT享有相关权益,包括手续费100%分红、增值获利等。",
"url": "https://www.btex.org/",
"hasimage": "1"
},
{
"applink": "eosdaq.com",
"name": "EOSDAQ",
"type": "Exchange",
"description": "EOSDAQ is an EOS-based on-chain DEX, providing the safest and most user-friendly platform to trade EOS-based tokens.",
"url": "https://eosdaq.com/",
"hasimage": "1"
},
{
"applink": "play.0xwarriors.com",
"name": "0xWarriors",
"type": "Game",
"description": "Combining multiple blockchains in the perfect synergy between technology and games in one epic world where players will decide who’s tougher! 0xWarriors is a Multi Blockchain-based game releasing on EOS first and Ethereum in the coming months! More cryptocurrencies to be added in the near future!",
"url": "https://0xwarriors.com",
"hasimage": "1"
},
{
"applink": "eosgameboy.io",
"name": "EOSGameBoy",
"type": "Game",
"description": "EOSGameboy is retro-style dapp game that trustworthy and entertaining.",
"url": "https://eosgameboy.io",
"hasimage": "1"
},
{
"applink": "buyname.io",
"name": "Buyname",
"type": "Exchange",
"description": "Welcome to register short .e for EOS account",
"url": "http://buyname.io/English/Index",
"hasimage": "1"
},
{
"applink": "bingobet.one",
"name": "BingoBet",
"type": "Game",
"description": "BingoBet.one is the first American Roulette on EOS blockchain! Dice, Jackpot, Dividends and others! Contact us via t.me/bingobet_one",
"url": "https://bingobet.one/",
"hasimage": "1"
},
{
"applink": "tobet.one",
"name": "Tobet",
"type": "Game",
"description": "Tobet is a gaming platform on EOS blockchain. Users can earn TOB tokens from playing.Tobet gives users the best gaming experience.",
"url": "https://tobet.one/",
"hasimage": "1"
},
{
"applink": "big.game",
"name": "Big Game",
"type": "Game",
"description": "Fair & Exciting EOS Gaming Platform!",
"url": "https://big.game/",
"hasimage": "1"
},
{
"applink": "groweos.io",
"name": "Grow Eos",
"type": "Game",
"description": "Challenge your friends in blockchain!",
"url": "https://groweos.io/",
"hasimage": "1"
},
{
"applink": "eospark.com",
"name": "EOSPark",
"type": "Block Explorer",
"description": "Not Only EOS Explorer",
"url": "https://eospark.com/",
"hasimage": "1"
},
{
"applink": "blockchaincuties.com",
"name": "Blockchain Cuties",
"type": "Game",
"description": "Blockchain Cuties is the collectible crypto game with adventures where you get to play with puppies, lizards, bear cubs, cats and other real and fantasy creatures alike.",
"url": "https://blockchaincuties.com/",
"hasimage": "1"
},
{
"applink": "p2p.game",
"name": "Rock Paper Scissors",
"type": "Game",
"description": "Multiplayer game on EOS blockchain, earn crypto when you win in the game, and receive game reward tokens.",
"url": "https://rps.p2p.game/",
"hasimage": "1"
},
{
"applink": "dungeon-hunt.ga",
"name": "Dungeon Hunt",
"type": "Game",
"description": "Dungeon Hunt, an EOS & TRYBE game to go deep into the dungeons and hunt orcs!",
"url": "http://www.dungeon-hunt.ga",
"hasimage": "1"
},
{
"applink": "alerts.eosauthority.com",
"name": "EOS Alerts",
"type": "Tool",
"description": "Get immediate alerts on email & telegram for your EOS account activity",
"url": "https://eosauthority.com/alerts",
"hasimage": "1"
},
{
"applink": "eosauthority.com",
"name": "EOS Authority Wallet",
"type": "Tool",
"description": "EOS Authority wallet, block explorer & tools",
"url": "https://eosauthority.com/",
"hasimage": "1"
},
{
"applink": "eosjoy.io",
"name": "EOS Joy",
"type": "Gambling",
"description": "",
"url": "https://www.eosjoy.io",
"hasimage": "1"
},
{
"applink": "pokereos.io",
"name": "Poker EOS",
"type": "Gambling",
"description": "",
"url": "https://pokereos.io",
"hasimage": "1"
},
{
"applink": "luckbet.io",
"name": "Luckbet",
"type": "Gambling",
"description": "",
"url": "https://luckbet.io",
"hasimage": "1"
},
{
"applink": "playgames.life",
"name": "PlayGames",
"type": "Gambling",
"description": "",
"url": "http://playgames.life/",
"hasimage": "1"
},
{
"applink": "kuai3.io",
"name": "EOSgamez",
"type": "Gambling",
"description": "",
"url": "https://kuai3.io/eos/",
"hasimage": "1"
},
{
"applink": "fastwin.io",
"name": "FAST",
"type": "Gambling",
"description": "",
"url": "https://fastwin.io",
"hasimage": "1"
},
{
"applink": "betx.fun",
"name": "BetX",
"type": "Gambling",
"description": "",
"url": "https://betx.fun/",
"hasimage": "1"
},
{
"applink": "dice.gamesky.io",
"name": "GameSky",
"type": "Gambling",
"description": "",
"url": "https://dice.gamesky.io/dice",
"hasimage": "1"
},
{
"applink": "eosfish.io",
"name": "EOSfish",
"type": "Gambling",
"description": "",
"url": "https://eosfish.io",
"hasimage": "1"
},
{
"applink": "ffgame.io",
"name": "FFgame",
"type": "Gambling",
"description": "",
"url": "https://ffgame.io"
},
{
"applink": "gamblr.one",
"name": "Gamblr",
"type": "Gambling",
"description": "",
"url": "https://gamblr.one/",
"hasimage": "1"
},
{
"applink": "eosjacks.com",
"name": "Gamblr",
"type": "Gambling",
"description": "",
"url": "https://eosjacks.com/",
"hasimage": "1"
},
{
"applink": "eosbluff.io",
"name": "EOS Bluff",
"type": "Gambling",
"description": "",
"url": "https://eosbluff.io",
"hasimage": "1"
},
{
"applink": "eosgamez.io",
"name": "Eosgamez.io",
"type": "Gambling",
"description": "",
"url": "https://eosgamez.io",
"hasimage": "1"
},
{
"applink": "flipeos.com",
"name": "flipeos",
"type": "Gambling",
"description": "Gambling",
"url": "https://flipeos.com",
"hasimage": "1"
},
{
"applink": "dtexas.muggles.io",
"name": "DTexas",
"type": "Gambling",
"description": "D-Texas is the world's first PVP Texas Hold'em platform in the blockchain.",
"url": "https://dtexas.muggles.io/",
"hasimage": "1"
},
{
"applink": "www.pokerking.one",
"name": "PokerKing",
"type": "Gambling",
"description": "PokerKing is the 1st professional Texas Hold'em on Blockchain.",
"url": "https://www.pokerking.one",
"hasimage": "1"
},
{
"applink": "www.tokenplanet.net",
"name": "泰肯星球 Token Planet",
"type": "Gambling",
"description": "Token Planet is the world's first EOS-based blockchain game platform.",
"url": "http://www.tokenplanet.net/",
"hasimage": "1"
},
{
"applink": "okbet.im",
"name": "OK Bet",
"type": "Gambling",
"description": "",
"url": "https://www.okbet.im"
},
{
"applink": "www.eosdota.com",
"name": "EOSDOTA",
"type": "Game",
"description": "",
"url": "https://www.eosdota.com",
"hasimage": "1"
},
{
"applink": "dex.chaince.com",
"name": "Chaince",
"type": "Exchange",
"description": "Chaince is the first trading platform in the world to launch a combination of “centralized” and “decentralized” trading models.",
"url": "https://dex.chaince.com",
"hasimage": "1"
},
{
"applink": "dex.chaince.com",
"name": "Chaince",
"type": "Exchange",
"description": "Chaince is the first trading platform in the world to launch a combination of “centralized” and “decentralized” trading models.",
"url": "https://dex.chaince.com",
"hasimage": "1"
},
{
"applink": "murmurdapp.com",
"name": "Murmur",
"type": "Social",
"description": "Murmur is a micro-blogging platform built on the EOS Blockchain that gives users the ability to share freely, control their data, trace the origins of any story and get content rewards.",
"url": "https://murmurdapp.com"
},
{
"applink": "betsand.com",
"name": "Betsand",
"type": "Gambling",
"description": "The first European Roulette game under EOS Ecology, the gathering place of more boutique games such as Sic Bo, Scorpion and so on, the player-recognized and verifiable fair game center.",
"url": "https://betsand.com",
"hasimage": "1"
},
{
"applink": "www.ggs.one",
"name": "GGS",
"type": "Gambling",
"description": "GGS is a player that is a shareholder of the globalization of innovative online regional block chain gaming platform",
"url": "https://www.ggs.one",
"hasimage": "1"
},
{
"applink": "www.ggs.one",
"name": "GGS",
"type": "Gambling",
"description": "GGS is a player that is a shareholder of the globalization of innovative online regional block chain gaming platform",
"url": "https://www.ggs.one",
"hasimage": "1"
},
{
"applink": "stname.starteos.io",
"name": "STName",
"type": "Tool",
"description": "Users can bid on premium accounts suffixed with '.eos', '.com', '.io', '.bank', '.games'",
"url": "https://stname.starteos.io",
"hasimage": "1"
},
{
"applink":"tipit.io",
"name":"Tipit",
"type":"Social",
"description":"A fast and easy way to send money through social platforms.",
"url":"https://tipit.io",
"hasimage":"1"
},
{
"applink": "eosreel.io",
"name": "EOSreel",
"type": "Gambling",
"description": "EOSreel. The very first decentralized epic slot machine.",
"url": "https://eosreel.io/",
"hasimage": "1"
},
{
"applink": "roulette.eosroyale.com",
"name": "EOS Royale",
"type": "Gambling",
"description": "EOS Royale is a decentralized gaming platform on the EOS blockchain. Our first game is European Roulette. It's provably fair since every winning number is calculated from block's hash.",
"url": "https://roulette.eosroyale.com",
"hasimage": "1"
},
{
"applink": "eostowergame.com",