forked from BlockABC/eos-tokens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tokens.json
1714 lines (1714 loc) · 97 KB
/
tokens.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
[
{
"name": "TOD",
"account": "21dice4token",
"symbol": "TOD",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/21dice4token/TOD.png",
"website": "https://21dice.one",
"desc": {
"en": "The 21Dice platform is named after 21 super nodes that pay tribute to EOS. 21Dice is a decentralized game platform developed based on the EOS main network and has been put on the shelves of EOS number guessing games. The operation of the game and the issuance of tokens are controlled by intelligent contracts. The random Numbers used in the game are generated on the chain, and the front-end page is only the display page. The network is the first battle group PK mode, a total of 21 battle groups, we hope to establish a fair, transparent, decentralized game ecological platform, 100 percent of the platform revenue discount dividends, become the battle group knights or Kings can enjoy a fat profit.",
"zh": "21Dice 是一个以EOS 21个节点命名的平台。21Dice 是一个去中心化的游戏平台,基于EOS主网开发,并且已经上架了多款 EOS 猜数字游戏。游戏的操作和代币的发行是由智能合约控制的。游戏的随机数是在链上生成的,前端页面只是展示了该数据。我们是第一家群战PK模式,总共有21个群,我们希望建立一个公平、透明、去中心化的游戏生态平台,100%的平台收益会被返还给用户,成为战斗群的骑士或者国王可以获得巨大的收益。"
},
"links": {
"twitter": "https://twitter.com/21Dice1",
"telegram": "https://t.me/dice_CN"
}
},
{
"name": "ARN",
"account": "aeronaerozzz",
"symbol": "ARN",
"precision": 8,
"desc": "Aeron’s solution relies on blockchain technology to track aircraft maintenance and pilot logs. Aeron is constructing a database and an online system that is decentralized, hosting global data on aircraft, flight schools and pilots. This electronic logging system would force pilots to have logs that reflect accurate flight hours, making aviation safer for everyone involved.\nAeron (ARN) utility token will be incorporated in Aeron products. It helps to enhance product usage, allow contribution to the ecosystem, product access and ownership. ARN is a bootstrapping engagement. While the token will enable access to valuable features within the Aeron platform, it won’t be limited by the Aeron mobile applications.",
"website": "https://aeron.aero",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/aeronaerozzz/ARN.png",
"links": {}
},
{
"name": "EPT",
"account": "alibabapoole",
"symbol": "EPT",
"precision": 4,
"desc": "Happy Valley is committed to the ecos eco to create a fun, fun and simple game platform; users can buy platform shares through eos; play games can earn more revenue; platform revenues are distributed according to share ratio to shareholder users",
"website": "https://eospool.tw",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/alibabapoole/EPT.png",
"links": {}
},
{
"name": "CHIP",
"account": "bet24tokens1",
"symbol": "CHIP",
"precision": 4,
"desc": "BET24 is a betting game platform run on EOS network, aiming to providing a transparent, fair and extremely amusing environment to global users.",
"website": "https://bet24.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bet24tokens1/CHIP.png",
"links": {}
},
{
"name": "DICE",
"account": "betdicetoken",
"symbol": "DICE",
"precision": 4,
"desc": {
"en": "Betdice.one is a completely trustworthy, profit-sharing and fair gaming platform based on EOS blockchain.DICE tokens are issued once Betdice goes live.Brand-new profit-sharing gaming platform.50% of Net Profit is paid out to those who have DICE staked in every hour. Gaming creates a win-win situation for both you and us.",
"zh": "Betdice.one 是一个基于EOS的、可信的、利益共享的、公平的、游戏平台。Betdice一上线,DICE 代币即被发行。全新的利益分享平台。50%的利润会被分发给抵押了 DICE 的用户。游戏为你我创造了双赢的局面。"
},
"website": "https://betdice.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/betdicetoken/DICE.png",
"links": {
"telegram": "https://t.me/dice1_en",
"medium": "https://medium.com/@dice1/",
"twitter": "https://twitter.com/dice1_en"
}
},
{
"name": "BET",
"account": "betdividends",
"symbol": "BET",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/betdividends/BET.png",
"links": {}
},
{
"name": "BG",
"account": "bgbgbgbgbgbg",
"symbol": "BG",
"precision": 4,
"desc": "Fair, transparent, fun and stimulating EOS gaming platform.",
"website": "https://big.game",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bgbgbgbgbgbg/BG.png",
"links": {}
},
{
"name": "BINGO",
"account": "bingobetoken",
"symbol": "BINGO",
"precision": 4,
"desc": "The first American Roulette is made fully trustless on the fastest and feeless EOS blockchain!",
"website": "https://bingobet.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bingobetoken/BINGO.png",
"links": {}
},
{
"name": "EBTC",
"account": "bitpietokens",
"symbol": "EBTC",
"precision": 8,
"desc": "EBTC is the mapping of Bitcoin on the EOS network, anchoring the BTC in 1:1, and is accepted in both directions by the cross-chain gateway operated by Bitpie.",
"website": "https://eosstablecoin.com/",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bitpietokens/EBTC.png",
"links": {}
},
{
"name": "EETH",
"account": "bitpietokens",
"symbol": "EETH",
"precision": 8,
"desc": "EETH is the mapping of Ethereum on the EOS network, anchoring the ETH in 1:1, and is accepted in both directions by the cross-chain gateway operated by Bitpie.",
"website": "https://eosstablecoin.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bitpietokens/EETH.png",
"links": {}
},
{
"name": "BOID",
"account": "boidcomtoken",
"symbol": "BOID",
"precision": 4,
"desc": "Users will be rewarded on the Boid by contributing their spare HashRate that can be assigned to academic research, such as medical research, meteorology, aerospace and mechanical learning.",
"website": "https://www.boid.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/boidcomtoken/BOID.png",
"links": {}
},
{
"name": "BUFF",
"account": "buff123token",
"symbol": "BUFF",
"precision": 4,
"desc": "The EOS Platform is mainly used for issuing 200 million tokens: 1. Game Mining Awards, 2. Election for 21 Super Miners, 3. Buffe Mortgage for 2 times CPU resources.",
"website": "http://buff.dpseos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buff123token/BUFF.png",
"links": {}
},
{
"name": "ADE",
"account": "buildertoken",
"symbol": "ADE",
"precision": 4,
"desc": "CADEOS is a distributed CAD file and project management platform.",
"website": "https://cadeos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buildertoken/ADE.png",
"links": {}
},
{
"name": "EOSISH",
"account": "buildertoken",
"symbol": "EOSISH",
"precision": 4,
"desc": "Token for EOS Contract Builder. EOSISH is used as means of payment for contract creation. A user who wants to build a smart contract on the Platform needs to buy EOSISH on an exchange and then transfer it to MyWish. EOSISH is used for Platform functionality. Every developer who launches his or her contract on MyWish receives revenue in EOSISH. Some contracts (like WILL) require external calls from network users and thus receive call bonuses in EOSISH.",
"website": "https://mywish.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buildertoken/EOSISH.png",
"links": {}
},
{
"name": "LITE",
"account": "buildertoken",
"symbol": "LITE",
"precision": 4,
"desc": "EOS Lite - Manage EOS assets directly through the browsers .",
"website": "https://www.eoslite.co",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buildertoken/LITE.png",
"links": {}
},
{
"name": "CPLE",
"account": "carpoolslife",
"symbol": "CPLE",
"precision": 4,
"desc": "CPLE is an interest-based pass based on the EOS eco-issuance based on blockchain technology, using the Token economic model and DAPP ecological circulation.",
"website": "https://www.quchuxing.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/carpoolslife/CPLE.png",
"links": {}
},
{
"name": "CHL",
"account": "challengedac",
"symbol": "CHL",
"precision": 4,
"desc": "The task of CHALLENGE is to use block chain technology to make DAPP, and to influence people to participate in active behavior through the use of token economy and intelligent contract technology. Their first appearance of DAPP is CHALLENGE DAPP. Its purpose is to motivate and reward players to exercise and keep healthy while using it frequently.",
"website": "http://challengedapp.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/challengedac/CHL.png",
"links": {}
},
{
"name": "LKT",
"account": "chyyshayysha",
"symbol": "LKT",
"precision": 4,
"desc": "LuckyPlaza is the largest DAPP game ecosystem on EOS. The platform was launched in August 2018. At present, a number of self-operated and tripartite development games have been launched, and the quality of the game has been well received by players.\nLKT is a platform token based on LuckyPlaza. Permissions include, for example, game bonuses, game usage tokens, and more. The price of LKT has risen many times since its launch and is still rising rapidly.",
"website": "https://www.luckywith.me/luckycoin",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/chyyshayysha/LKT.png",
"links": {}
},
{
"name": "LIGHT",
"symbol": "LIGHT",
"account": "coinscentral",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/coinscentral/LIGHT.png",
"desc": {
"en": "Light (Ore) is an electronic money integrated in powerful blockchains that use peer-to-peer technology to operate with no central authority or banks; managing transactions of Light (Ore) is carried out collectively by these networks."
},
"website": "https://www.oretoken.org",
"links": {
"facebook": "https://www.facebook.com/OreTokenProject",
"twitter": "https://twitter.com/OreLightToken"
}
},
{
"name": "PSO",
"account": "cryptopesosc",
"symbol": "PSO",
"precision": 4,
"desc": "Peso Economy-- a modern economic plan in Venezuela and Latin America.",
"website": "https://eosvenezuela.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/cryptopesosc/PSO.png",
"links": {}
},
{
"name": "CTN",
"account": "dacincubator",
"symbol": "CTN",
"precision": 4,
"desc": "Crazy Town provides the most multiplayer online chess and card games on EOS, and has won the recognition of the majority of players on the first day of the TP wallet's launch. At present, the game includes more than ten popular games such as Qiangzhuangniuniu,Fight,Zhajinhua,Texas Holdem and Shuiguoji,and more games are opening up in succession.",
"website": "http://crazytown.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dacincubator/CTN.png",
"links": {}
},
{
"name": "YDAPP",
"account": "dacincubator",
"symbol": "YDAPP",
"precision": 4,
"desc": "YDapp is a game community formed by blockchain gamers, formerly known as YIHONGYUAN, an Ethereum game community. Currently it is the top 1 Guild of Evolution.Land. With its unique insight into blockchain technology and cryptocurrency, the team has invested in some quality EOS game projects and has made quite big profits. After a phase of exploring, based on our optimistic estimates of the EOS and its ecology, many projects are still in their infancy and have plenty room for progress, while an experienced team is still missing for community maintenance. Hence, we decided to set up YDapp.io website and some related communities to provide players with the latest game information and to provide promotions and community operating services for the project parties. The team includes Dapp developers, cryptocurrency measurement practitioners, former Okamoto China Content Operating Chief and community KOL, who are all senior Dapp gamers.",
"website": "http://ydapp.io/",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dacincubator/YDAPP.png",
"links": {}
},
{
"name": "DBET",
"account": "dbetminepool",
"symbol": "DBET",
"precision": 4,
"desc": "Dbet.one is a new generation betting and mining platform with payout policy to DBET token holders.",
"website": "https://dbet.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dbetminepool/DBET.png",
"links": {}
},
{
"name": "DET",
"account": "diceeostoken",
"symbol": "DET",
"precision": 4,
"desc": "Gambling game based on EOS.",
"website": "https://mydice.me",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/diceeostoken/DET.png",
"links": {}
},
{
"name": "EATCOIN",
"account": "eatscience14",
"symbol": "EATCOIN",
"precision": 4,
"desc": "EATCOIN = Education And Technology Coin I have created this coin to motivate students around the world to learn and to invest in the same time. Students get this EATCOIN in the ratio 1:1 for thir grades in quizzes, homework and online quizzes on eatschools.com and teachers get EATCOIN for their courses created on eatschools.com according to the feedbacks of the students so we encourge teachers to teach and to invest. EATCOIN will be used to pay for the paid courses which will be available soon on eatschools.com and buy items from marketplace which will be created soon according to the roadmap in the white paper",
"website": "https://www.eatschools.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eatscience14/EATCOIN.png",
"links": {}
},
{
"name": "ECTT",
"account": "ectchaincoin",
"symbol": "ECTT",
"precision": 4,
"desc": "We are committed to solving the problems of integrity, payment and payment days in cross-border diamond trade.",
"website": "http://www.ectchain.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ectchaincoin/ECTT.png",
"links": {}
},
{
"name": "EDNA",
"account": "ednazztokens",
"symbol": "EDNA",
"precision": 4,
"desc": "EDNA is a Blockchain-Bio Tech company who dedicated to insuring Human DNA.And the knowledge about that DNA belongs to humans, not governments or mega-corps. The company operates a secure sequencing service at the direction of and in service to the EDNA Community.EDNA operates using digital stored units of value called EDNA's They are crypto-currency, it is regards as service tokens that can be exchanged for DNA sequencing services . Holding these tokens also entitles a person to membership, voting & participation rights in the EDNA Community .DAC (Decentralized Autonomous Community), which governs the activities of the EDNA sequencing organization.The ultimate aim of EDNA is to end human suffering caused by genetic disease, improve life longevity and to insure the future of DNA and the future affected by DNA is governed by the Humans .",
"website": "https://edna.life",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ednazztokens/EDNA.png",
"links": {}
},
{
"name": "ET",
"account": "endlesstoken",
"symbol": "ET",
"precision": 4,
"desc": "Endless Game was the first ultra-transparent online Game hall to share profits, and the more you play, the more you earn. ET is its game token, which will be later released in more games.",
"website": "https://dice.endless.game/dice",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/endlesstoken/ET.png",
"links": {}
},
{
"name": "EOSABC",
"symbol": "EOSABC",
"account": "eosabctokens",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosabctokens/EOSABC.png",
"desc": {
"en": "EOSABC is an online betting game platform based on EOS blockchain, it leverages the advantages of blockchain to enhance the transparency and fairness of betting games, thus guaranteeing the financial security and user experience of each player, and truly achieve fairness and user-oriented.",
"zh": "EOSABC是基于EOS公链的竞猜游戏平台,平台通过结合区块链公开透明和不可篡改的优势,提升了竞猜游戏行业的透明度和公平性,从而保证每一名玩家的资金安全和用户体验,真正做到公平与以用户为核心。"
},
"website": "https://www.eosabc.io",
"links": {
"telegram": "https://t.me/EOSABC"
}
},
{
"name": "ADD",
"account": "eosadddddddd",
"symbol": "ADD",
"precision": 4,
"desc": "EOS ADD provides data center and application platform for transformation from 'Internet plus 'to 'block chain plus'.",
"website": "http://eosadd.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosadddddddd/ADD.png",
"links": {}
},
{
"name": "ATD",
"account": "eosatidiumio",
"symbol": "ATD",
"precision": 4,
"desc": "Atidium is a payment and budget management decentralized application for individuals and businesses. The Atrium DApp will allow to use ATD tokens as a way of keeping track of your future expenses. Improving your budget status by sharing daily tips from other users in the network. Sending ATD tokens from wallet to wallet and allowing to set rules on a token by setting its color. The token can be used to pay around the world with the DApp and debit card, the same as the traditional way.",
"website": "https://www.atidium.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosatidiumio/ATD.png",
"links": {}
},
{
"name": "EOS AUCTION",
"symbol": "EAP",
"account": "eosauctionpt",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosauctionpt/EAP.png",
"desc": {
"en": "An online auction platform built on the EOS blockchain, EAP aims to provide users with a decentralised, scalable and fair auction experience.",
"zh": "基於EOS的網絡積木拍賣,積木拍賣遇到競買人時,誰都可以參與的公正拍賣開始",
"ko": "EOS 기반의 온라인 블록체인 경매, 블록체인이 경매를 만났을때 누구나 참여 가능한 공정한 경매가 시작 됩니다."
},
"website": "https://www.eosauctionplatform.com/",
"whitepaper": "https://www.eosauctionplatform.com/src/asset/doc/EOS_Auction_Platform_WhitePaper_1.0__ENG.pdf",
"links": {
"telegram": "https://t.me/eosautionplatform",
"twitter": "https://twitter.com/official_eap",
"reddit": "https://www.reddit.com/user/eosauctionplatform"
}
},
{
"name": "BLACK",
"account": "eosblackteam",
"symbol": "BLACK",
"precision": 4,
"desc": "EOSBLACK is a platform for users to participate in developing DAPP. Members of the community elect the best DAPP to exhibit on the platform. When DApps receive enough sufficient votes, it will be successfully developed.",
"website": "https://eosblack.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosblackteam/BLACK.png",
"links": {}
},
{
"name": "BOCAI",
"account": "eosbocai1111",
"symbol": "BOCAI",
"precision": 4,
"desc": "BOCAI is the token of the EOSDICE game platform which enjoying the following dividend.",
"website": "https://eosdice.vip",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosbocai1111/BOCAI.png",
"links": {}
},
{
"name": "BTN",
"account": "eosbuttonbtn",
"symbol": "BTN",
"precision": 4,
"desc": "BTN inspired by The Button's block chain games.",
"website": "https://eosbutton.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosbuttonbtn/BTN.png",
"links": {}
},
{
"name": "DAB",
"account": "eoscafekorea",
"symbol": "DAB",
"precision": 4,
"desc": "Dabble is a social media platform where creators can get rewards through publishing short articles or emoticons. Posts can be published in future books or paper books, and are recorded on the block chain, contributing to copyright protection. Maximize your ad efficiency by applying AI ad specific to login ad box and user orientation.",
"website": "http://dabble.cafe",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoscafekorea/DAB.png",
"links": {}
},
{
"name": "CAN",
"account": "eoscancancan",
"symbol": "CAN",
"precision": 4,
"desc": "CAN participates in the development of the EOS blockchain network to profoundly change our lives in a better way. We aim to centralize everything! As a highly recognized community, we are willing to connect and promote the communication between overseas communities and Chinese EOS communities. We are pleased to lead the participation of most domestic token holders in the development of the global EOS community. EOS Cannon will be a stable super node serving the community. In addition, we are planning to be a active EOS ecosystem contributors and project incubators. We are not just an EOS community, we will be an important partner for EOS in China. ",
"website": "https://cannoncapital.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoscancancan/CAN.png",
"links": {}
},
{
"name": "CANDY",
"account": "eoscandymain",
"symbol": "CANDY",
"precision": 4,
"desc": "The future of decentralized gaming.",
"website": "http://candyeos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoscandymain/CANDY.png",
"links": {}
},
{
"name": "CRASH",
"account": "eoscrashplay",
"symbol": "CRASH",
"precision": 4,
"desc": "EOS Crash is a multi-player EOS gambling game.",
"website": "https://game.eoscrash.app",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoscrashplay/CRASH.png",
"links": {}
},
{
"name": "CUBE",
"account": "eoscubetoken",
"symbol": "CUBE",
"precision": 4,
"desc": "An EOS-based gambling game.",
"website": "http://eoscube.site",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoscubetoken/CUBE.png",
"links": {}
},
{
"name": "EOSDAC",
"account": "eosdactokens",
"symbol": "EOSDAC",
"precision": 4,
"desc": "EOSDAC is a leading producer of eos.io blocks dedicated to serving the global EOS community as a growing decentralized autonomous community. Through EOS software, it is possible to make communities a revolutionary way for cooperatives. The development assistance committee is run by its token holders and board members.",
"website": "https://eosdac.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosdactokens/EOSDAC.png",
"links": {}
},
{
"name": "DY",
"account": "eosdyeosiody",
"symbol": "DY",
"precision": 4,
"desc": "Duanyou connotation community is built on the EOSIO block chain ecosystem, using the decentralization and non-tampering attributes of block chain to start our connotation world anew!",
"website": "https://amuseos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosdyeosiody/DY.png",
"links": {}
},
{
"name": "ENB",
"account": "eosenbpocket",
"symbol": "ENB",
"precision": 4,
"desc": "The world's first EOS decentralized pledge platform, providing muti-currency services, bringing daily return and instant redemption.",
"website": "https://enbk.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosenbpocket/ENB.png",
"links": {}
},
{
"name": "SVN",
"account": "eoseventoken",
"symbol": "SVN",
"precision": 4,
"desc": "EOSeven is the world's fairest and secure gaming platform based on the EOS blockchain.",
"website": "https://www.eoseven.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoseventoken/SVN.png",
"links": {}
},
{
"name": "FAID",
"account": "eosfaidchain",
"symbol": "FAID",
"precision": 4,
"desc": "FAID is a first aid collaboration platform for reward. Based on the EOS public chain, Dapp aims to create a transparent database and cooperative platform for first aid popularization in China and worldwide through distributed accounting and smart contract technology of block chain.",
"website": "http://firstaidchain.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosfaidchain/FAID.png",
"links": {}
},
{
"name": "FUN",
"account": "eosfuntoken1",
"symbol": "FUN",
"precision": 4,
"desc": "EOSFUN is a betting game platform run on EOS network, aiming to providing a transparent, fair and extremely amusing environment to global users. Smart Contract: The random number generation and judgement mechanism are both run on blockchain, which is transparent and verifiable, the system is not able to cheat on players. Token Design: We issue 8.8 billion FUN tokens to share the profit of the platform with our players.",
"website": "https://eosfun.win",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosfuntoken1/FUN.png",
"links": {}
},
{
"name": "BEST",
"account": "eosgamecoin2",
"symbol": "BEST",
"precision": 4,
"desc": "BEST is the token issued by BestDice game platform, with a total amount of 10 billion. Among them, the crowd-funding was 13 million, which was used to start the project in the early stage. The remaining BEST products were all mined by users through betting. The platform did not have any tokens obtained through pre-digging and free unlock.",
"website": "https://www.dice.im",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosgamecoin2/BEST.png",
"links": {}
},
{
"name": "GT",
"account": "eosgetgtoken",
"symbol": "GT",
"precision": 4,
"desc": "GT is a token issued by EOSGET platform, which is obtained through game mining.",
"website": "https://dice.eosget.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosgetgtoken/GT.png",
"links": {}
},
{
"name": "GGS",
"account": "eosggshost11",
"symbol": "GGS",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosggshost11/GGS.png",
"website": "https://www.ggs.one",
"whitepaper": "http://www.ggs.one/s/GGSwhitepaper_en.pdf",
"desc": {
"en": "GGS is a player that is a shareholder of the globalization of innovative online regional block chain gaming platform, platform base on eos.io block chain and EOS intelligent contract bottom running environment,we fully using blockchain and EOS ecosystem, establish a complete safety, verifiable fairness, decentralization, to trust, the most complete the game without borders, scale the globalization online gambling entertainment game system . The system allows users to bet on EOS participation at zero cost, and it is absolutely certain that all games are 100% fair ; GGS give full play to the core values of the blockchain economy and the shared economy, and open up a new financial sharing economic platform, in which players are shareholders, games are mining, and participation is value. All players (that is, shareholders) of the system can obtain the platform revenue within 24 hours of the system. The advanced design mode of the system encourages more players to participate in the game and share the long-term development prospect of the platform.",
"zh": "GGS 是一个玩家即股东的全球化创新型在线区块链博彩游戏平台,平台基于 EOS.IO 区块链和 EOS 智能合约为底层运行环境,我们充分利用区块链和 EOS的生态系统,建立一个完全安全、可验证公平性、去中心化、去信任化、无国界的玩法最全,规模最大的全球化在线博彩娱乐游戏系统。系统允许用户以零成本用 EOS 下注参与,并且可以绝对肯定的是,所有游戏均赋予 100%的公平;GGS充分发挥区块链通证经济与共享经济的核心价值观,开辟了玩家即股东,游戏即挖矿,参与即价值的新金融分享经济平台。系统的所有玩家(即股东)均可获得系统 24 小时内的平台收益,系统先进的设计模式以此激励更多玩家参与游戏、共同分享平台的长期发展前景。"
}
},
{
"name": "IGC",
"account": "eosindiegame",
"symbol": "IGC",
"precision": 4,
"desc": "Castle Wars is a multi-player online strategy role playing game based on EOS block chain.",
"website": "http://eosindiegame.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosindiegame/IGC.png",
"links": {}
},
{
"name": "EOS",
"account": "eosio.token",
"symbol": "EOS",
"precision": 4,
"website": "https://eos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosio.token/EOS.png",
"desc": {
"en": "EOS (Enterprise Operation System) is a blockchain smart contract platform developed by Block.one, which aims to provide bottom blockchain platform services for high-performance distributed applications.",
"zh": "EOS (Enterprise Operation System) 是一个区块链智能合约平台,由Block.one 开发。它致力于为高性能分布式应用提供区块链底层服务。"
},
"whitepaper": "https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md",
"links": {
"github": "https://github.com/EOSIO/eos",
"telegram": "https://t.me/joinchat/AAAAAEQbOeucnaMWN0A9dQ",
"twitter": "https://twitter.com/eos_io",
"steemit": "https://steemit.com/trending/eos",
"reddit": "https://www.reddit.com/r/eos/",
"wechat": "Asst_BlockAbC"
}
},
{
"name": "CET",
"account": "eosiochaince",
"symbol": "CET",
"precision": 4,
"desc": "The Chaince Foundation, which is incorporated on the Cayman Islands and operates independently, will issue Chaince Tokens (CET) based on the EOS for a total amount of 2 billion. The 50% one-way EOS transaction fees on the Chaince transaction platform (i.e. the EOS transaction fees deducted from the platform when users sell other blockchain assets and buy EOS) will be perpetually injected into the Chaince Foundation public address weekly. Each CET token represents one 2 billionth of the EOS tokens held by the Foundation.",
"website": "https://chaince.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiochaince/CET.png",
"links": {}
},
{
"name": "LOTC",
"account": "eosiolotcoin",
"symbol": "LOTC",
"precision": 4,
"desc": "LOTC is the game ecology certificate issued by Dapp Goose. As the only platform-level token, the holder will participate in the profit sharing of the whole platform project.",
"website": "https://luckylot.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiolotcoin/LOTC.png",
"links": {}
},
{
"name": "MEETONE",
"account": "eosiomeetone",
"symbol": "MEETONE",
"precision": 4,
"desc": " MEET.ONE is a EOS block producer candidate team from Singapore, dedicating to be an entrance of EOS ecology. MEET.ONE was elected as a EOS block producer on 15 June 2018. We are committed to being the entrance of EOS ecology and actively participate in the construction of EOS ecology.MEET.ONE team is going to build an EOS side chain and provide EOS developers with safe stable cheap and friendly developing environment. MEET.ONE have two bases located at Singapore and China. The key team members are from famous Internet firms and have plenty of experience in product developing and operating. In the same time,MEET.ONE build a lab focusing on study EOS coding. Two key products were released.1)EOS Ecology Entrance APP “MEET.ONE” MEET.ONE APP supports EOS users to register , asset management, BP voting, check current RAM situation and make deal ,view global EOS information ,and receive EOS candy. MEET.ONE APP becomes an important tool for users to learn about EOS. 2)EOS Candy Box “MORE.ONE”.Users can get candies of EOS ecology projects even without holding EOS tokens in MORE.ONE. DAPP development team can show their projects and accumulate initial users. So far more than 10 candies are currently available.",
"website": "https://meet.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiomeetone/MEETONE.png",
"links": {}
},
{
"name": "MORE",
"account": "eosiomoreone",
"symbol": "MORE",
"precision": 4,
"desc": "\"MORE.ONE\" is a premium airdrop (candy) distribution platform developed by EOS Genesis block producer MEET.ONE, MORE is the token of MORE.ONE: Users can obtain EOS ecology project airdrops (candy) without holding EOS; DAPPs development team (based on EOS) can have a friendly platform to present their ideas to the community and obtain a high quality initial user base; Active promoters of the EOS community will gain more premium airdrops (candy) and benefits based on their contribution.",
"website": "http://more.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiomoreone/MORE.png",
"links": {}
},
{
"name": "EGT",
"account": "eosiotokener",
"symbol": "EGT",
"precision": 4,
"desc": "A gambling game based on EOS.",
"website": "http://bj.eosgametoken.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiotokener/EGT.png",
"links": {}
},
{
"name": "TPT",
"account": "eosiotptoken",
"symbol": "TPT",
"precision": 4,
"desc": "Applied certification in circulation in TokenPocket ecosystem.",
"website": "https://www.mytokenpocket.vip",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosiotptoken/TPT.png",
"links": {}
},
{
"name": "JKR",
"account": "eosjackscoin",
"symbol": "JKR",
"precision": 4,
"desc": "EOSJacks is an innovative distributed game platform. It is also an autonomous ecosystem and community. Players are able to gain autonomy in the community by mining.",
"website": "https://eosjacks.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosjackscoin/JKR.png",
"links": {}
},
{
"name": "JUST",
"account": "eosjusttoken",
"symbol": "JUST",
"precision": 4,
"desc": "JUST is a DAPP platform focusing on game and smart contract development.",
"website": "https://www.eosjust.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosjusttoken/JUST.png",
"links": {}
},
{
"name": "KEEP",
"account": "eoskeep.x",
"symbol": "KEEP",
"precision": 4,
"desc": "Keep is an ecological incentive platform based on EOSIO. We hope that through virtual token incentives, people can insist on doing everything well.\nYou stick to sports, or be loyal to the team, love digital, travel, entertainment, even loyal love and so on. In life, KEEP all your interests will be inspired by our token.",
"website": "https://eoskeep.vip",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoskeep.x/KEEP.png",
"links": {}
},
{
"name": "LUCK",
"account": "eosluckchain",
"symbol": "LUCK",
"precision": 4,
"desc": "Luck Chain is the world's first decentralized market forecasting platform based on the EOS protocol. You can predict the results of any event (football, World Cup, campaign, etc.) in the LuckChain. We verify the results through blockchain. No one can cheat. ",
"website": "https://luckchain.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosluckchain/LUCK.png",
"links": {}
},
{
"name": "LUCKY",
"account": "eoslucktoken",
"symbol": "LUCKY",
"precision": 4,
"desc": "LUCKY is platform token of EOS.Win, which is a decentralized game platform based on EOS main net. Game running, token distribution and etc. are controlled by EOS smart contracts. The random numbers are all generated on the blockchain. EOS.Win aims to build a fair, transparent and decentralized game ecosystem.\nThe contract account of LUCKY token is: eoslucktoken. The total supply of LUCKY is 100,000,000 and it’s all released by playing games on EOS.Win . The develop team has no pre-digging. Users who hold LUCKY tokens can apply for EOS dividends of EOS.Win profit every 24 hours.",
"website": "https://eos.win",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoslucktoken/LUCKY.png",
"links": {}
},
{
"name": "MAX",
"account": "eosmax1token",
"symbol": "MAX",
"precision": 4,
"desc": "EOSMax is a gaming entertainment platform based on the intelligent contract of Eos main network. The platform's gambling games all adopt the original random number generation technology, and the team has made the algorithm open source, supporting the result verification. Meanwhile, the platform will airdrop the platform token MAX free of charge to the players through the mode of \"game is mining\". In the future, 100% of the profits of the platform will be distributed to the holders of the MAX token, making the player a shareholder of the platform.",
"website": "https://eosmax.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosmax1token/MAX.png",
"links": {}
},
{
"name": "EOSNTS",
"account": "eosninetiess",
"symbol": "EOSNTS",
"precision": 4,
"desc": "EOSNTS token is the encrypted digital asset of the content media platform released by the EOS 90 community.",
"website": "https://www.eos90s.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosninetiess/EOSNTS.png",
"links": {}
},
{
"name": "POKER",
"account": "eospokercoin",
"symbol": "POKER",
"precision": 4,
"desc": "EOS Poker is the first ever decentralized poker gaming platform on the EOS blockchain. It is provably fair and totally transparent. Blackjack is our first game. Stay tuned as more are coming!\nIn addition to being on the blockchain, EOS Poker is also decentralized in the sense that it is owned by the community of POKER holders. POKER holders own the platform, both its profits and decisions.",
"website": "https://eospoker.win",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eospokercoin/POKER.png",
"links": {}
},
{
"name": "RAN",
"account": "eosrandtoken",
"symbol": "RAN",
"precision": 4,
"desc": "EOS RAN focuses on block chain gaming based on the eos platform, all game algorithms open, verifiable, blackjack for the platform's first open game, now participate in mining incentives, split 100% of platform near profit. The ran coin from the mining can also be used in the game.",
"website": "http://eosrand.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosrandtoken/RAN.png",
"links": {}
},
{
"name": "ROY",
"account": "eosroyaleroy",
"symbol": "ROY",
"precision": 4,
"desc": "EOS based competitive guess platform.",
"website": "https://roulette.eosroyale.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosroyaleroy/ROY.png",
"links": {}
},
{
"name": "TGC",
"account": "eostgctoken1",
"symbol": "TGC",
"precision": 4,
"desc": "EOSTiger is a classic entertainment platform based on the EOS.IO blockchain.It is a collection of classic games with different senses, such as slot machines, Texas hold 'em, roulette, and blackjack.",
"website": "https://eostiger.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eostgctoken1/TGC.png",
"links": {}
},
{
"name": "MEV",
"account": "eosvegascoin",
"symbol": "MEV",
"precision": 4,
"desc": "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.",
"website": "https://www.rovegas.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosvegascoin/MEV.png",
"links": {}
},
{
"name": "EVR",
"account": "eosvrtokenss",
"symbol": "EVR",
"precision": 4,
"desc": "EOSVR is a virtual world based in EOS chain. Like Ready Player One, people are able to access the virtual world, communicate with others, and exchange and build virtual objects together through versatile devices. EOSVR reduces the maintanance cost and enhances user experiences by utilizing the decentralizing technology.",
"website": null,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosvrtokenss/EVR.png",
"links": {}
},
{
"name": "WINS",
"account": "eoswinonewww",
"symbol": "WINS",
"precision": 4,
"desc": "Eoswin.one focuses on mining dividends decentralized gaming platform.",
"website": "https://www.eoswin.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoswinonewww/WINS.png",
"links": {}
},
{
"name": "ZEC",
"account": "eoswinonewww",
"symbol": "WINS",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoswwwzeccom/ZEC.png",
"links": {}
},
{
"name": "EOSYX",
"account": "eosyxtoken11",
"symbol": "EOSYX",
"precision": 4,
"desc": "Sangong game is simple to play and has a warm atmosphere. With the high popularity in the game tea garden, it is widely spread and has a lot of luck to win. Sangong EOS is a de-centralized chess and card game developed in the EOS public chain, whose rules are automatically executed by intelligent contracts.",
"website": "https://eosyx.vip",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosyxtoken11/EOSYX.png",
"links": {}
},
{
"name": "EOX",
"account": "eoxeoxeoxeox",
"symbol": "EOX",
"precision": 4,
"desc": "EOX is a decentralized e-commerce platform.",
"website": "https://www.eoxlab.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eoxeoxeoxeox/EOX.png",
"links": {}
},
{
"name": "EPRA",
"account": "epraofficial",
"symbol": "EPRA",
"precision": 4,
"desc": "Build a transparent digital advertising data ecosystem platform.",
"website": "https://chain.pro",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/epraofficial/EPRA.png",
"links": {}
},
{
"name": "ESB",
"account": "esbcointoken",
"symbol": "ESB",
"precision": 4,
"desc": "Free peer to peer sports betting community.",
"website": "http://eossportsbets.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/esbcointoken/ESB.png",
"links": {}
},
{
"name": "EETH",
"account": "ethsidechain",
"symbol": "EETH",
"precision": 4,
"desc": "EOS side chain, realize EOS ecology and ether square ecology interworking.",
"website": "http://anyos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ethsidechain/EETH.png",
"links": {}
},
{
"name": "EOSWIN",
"account": "etwineos1111",
"symbol": "EOSWIN",
"precision": 4,
"desc": "ETwin is an interesting race prediction mining platform based on EOS. Predictions include all major global soccer events, NBA events and events that can be transparently determined! The user participates in the prediction by using EOSWIN, and the user can initiate the prediction project to increase active interactivity as the project progresses! 70% token locked in eoswin111111 can only be obtained by predicting mining! 30% token applies to airdrop, business promotion and cooperation, project contributor! EOSWIN holdings enjoy all affiliated projects of the platform earnings 100% dividend!",
"website": "https://etwin.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/etwineos1111/EOSWIN.png",
"links": {}
},
{
"name": "IQ",
"account": "everipediaiq",
"symbol": "IQ",
"precision": 3,
"desc": "The Everipedia team plans to build a modern, convenient and decentralized new encyclopedia website, and this goal will be realized with the development of blockchain technology. The new developing Everipedia will based on the EOS network, which have features such as community autonomy, shielding prevent, and contribution incentives compares to the current Everipedia.The business network encyclopedia Everipedia is owned by Everipedia.Inc and has not adopted blockchain technology yet. Everipedia founded in 2014, whose name derives from\n the English words \"Everything\" and \"Encyclopedia\" .Since December 2017,Everipedia is the largest English encyclopedia with more than six million entries, including all Wikipedia English entries.\nEveripedia's requirements for the attention of entries are more generous, so it has more entries than Wikipedia.",
"website": "https://iqnetwork.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/everipediaiq/IQ.png",
"links": {}
},
{
"name": "FAIR",
"account": "faireostoken",
"symbol": "FAIR",
"precision": 4,
"desc": "21 points of fairness based on EOS.",
"website": "https://faireos.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/faireostoken/FAIR.png",
"links": {}
},
{
"name": "KKK",
"account": "fairkuai3kkk",
"symbol": "KKK",
"precision": 4,
"desc": "KKK is the general license of kuai3.io game center, game prize pool and all profits belong to all KKK holders. Kuai3. IO's mission is to provide the most fair and transparent games. All games use EOS blockchain HASH lottery, which ensures that the project side cannot influence the lottery result at the source. Currently, there are many games such as Kuai3 national version, Kuai3 extreme speed version, K3 Lotto, K3 Dice and so on.",
"website": "https://kuai3.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fairkuai3kkk/KKK.png",
"links": {}
},
{
"name": "FOS",
"account": "farmeosbankx",
"symbol": "FOS",
"precision": 4,
"desc": "In order to allow more players to participate in this national mining economy experiment of FarmEOS, the FarmEOS team has now decided to open the exchange system and issue the shareholding token FOS. All the proceeds of FarmEOS are 100% attributed to the FOS. After the end of the exchanging activity, the corresponding profit of the FarmEOS project will be invested in the secondary market for repurchase.",
"website": "https://www.farmeos.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/farmeosbankx/FOS.png",
"links": {}
},
{
"name": "FAST",
"account": "fastecoadmin",
"symbol": "FAST",
"precision": 4,
"desc": "FASTWIN platform is an online guessing platform based on EOS.IO block chain technology. Players do not need to use personal information registration, and make bets through the encrypted currency EOS to ensure privacy.",
"website": "https://www.fastwin.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fastecoadmin/FAST.png",
"links": {}
},
{
"name": "SLIEMT",
"account": "fastwinitemf",
"symbol": "SLIEMT",
"precision": 0,
"desc": "Kill slime's dropped items in the FASTWIN HERO game.",
"website": "https://www.fastwin.io/hero",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fastwinitemf/SLIEMT.png",
"links": {}
},
{
"name": "STAR",
"account": "fastwinitems",
"symbol": "STAR",
"precision": 4,
"desc": "Dropping items in FASTWIN GIFTS game.",
"website": "https://www.fastwin.io/gifts",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fastwinitems/STAR.png",
"links": {}
},
{
"name": "FC",
"account": "fcfundadmins",
"symbol": "FC",
"precision": 4,
"desc": "Classic dice game.",
"website": "https://eosall.in",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fcfundadmins/FC.png",
"links": {}
},
{
"name": "NFT",
"account": "fight22death",
"symbol": "NFT",
"precision": 4,
"desc": "NFT is the game token issued by the game development platform, as a reward voucher for the player's contribution in the game. NFT has a total of 1 billion, the accuracy of the last four decimal points, 10% owned by the development team, the remaining 90% will be released gradually in the NFT DEATH series games.\nChristmas Battle game will release part of the NFT, as the amount of NFT decreases, players will gradually increase the difficulty of obtaining NFT.",
"website": "https://cb.fight2death.info",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fight22death/NFT.png",
"links": {}
},
{
"name": "FISH",
"account": "fishjoytoken",
"symbol": "FISH",
"precision": 4,
"desc": "EOS FISH is an EOS decentralized fishing game where all game data and random numbers are stored and generated on the blockchain so that the game mechanics can be fully verified for fairness and transparency. We will also release more blockchain games, so stay tuned!\nEOS FISH does not belong to anyone. EOS FISH is decentralized because it is owned by the holders of FISH tokens in the community. FISH holders own this platform, including ownership of profits and resolution rights. Join our community for more information!",
"website": "https://eosfish.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/fishjoytoken/FISH.png",
"links": {}
},
{
"name": "LOTT",
"account": "forlot111222",
"symbol": "LOTT",
"precision": 4,
"desc": "ForLot is a decentralized, cross-platform, cross-product decentralized open game ecosystem based on blockchain technology. It is committed to creating a global certificate with no evidence of national and game types. Game ecosystem.\nThe platform provides players with quality games + provides traffic to the project side + provides more transparent operating rules for the industry, and opens up the billion-level game market.",
"website": "http://www.forlot.vip",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/forlot111222/LOTT.png",
"links": {}
},
{
"name": "CITY",
"account": "funcitytoken",
"symbol": "CITY",
"precision": 4,
"desc": "The CITY token is the pass of FunCity, and the holder of CITY is the shareholder of FunCity.The total supply of CITY token is 1 billion. The supply is fixed and will never be increased.",
"website": "https://www.funcity.one",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/funcitytoken/CITY.png",
"links": {}
},
{
"name": "GMC",
"account": "gamechaineos",
"symbol": "GMC",
"precision": 4,
"desc": "GMC (Game Magie Chain) is committed to building a new ecological general economic model of \"block Chain + Game\" whole industrial Chain, exploring the application of technology in the block Chain 3.0 era, and the derivative DAPP applications around the Game, involving block Chain games. Cross-game virtual assets trading market; Blockchain-based game distribution platform and community; Peripheral tools and services, so as to achieve ecological closed loop. GMC team believes that the dividend of \"blockchain + games\" will start from the infrastructure and developer tools to allow more games to be linked, and finally reach the climax with the emergence of a large number of hot style playable blockchain games. With the increasing of blockchain games and the corresponding Token economic model, cross-game virtual asset trading market and communities based on blockchain game distribution platform will gradually rise up and become the center of traffic collection. With the development of \"blockchain + game\" industry, peripheral tools and services have a clear and stable future. GMC will take this standard as the criterion to explore the sustainable business model of blockchain games (or blockchain games). In the chain of blocks game application fall to the ground, at present the first stage, the MC team developed the first game - Magie Cube (dynamic) rubik's Cube, is based on the EOS and chain network base on the product structure, guarantee the game process is safe and reliable, play, the algorithm is transparent (specific rules of the game will be released later versions of detailed analysis, please concern). Later will be put on the shelves guess guess, PK knowledge competition, puzzle games. At the same time, GMC official will provide the third party open access, all major game developers or industry geeks can enter, share the block chain game ecological dividend.",
"website": "http://picommunity.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/gamechaineos/GMC.png",
"links": {}
},
{
"name": "SKY",
"account": "gameskytoken",
"symbol": "SKY",
"precision": 4,
"desc": "GameSky Platform Currency.",
"website": "https://gamesky.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/gameskytoken/SKY.png",
"links": {}
},
{
"name": "GEM",
"account": "gemcitytoken",
"symbol": "GEM",
"precision": 4,
"desc": "After two centuries, space explorers finally discovered GEM. I heard that GEM can get a lot of wealth. Come to Gemcity and start the EOS Eco Treasure New Era era!.",
"website": "https://www.gemcity.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/gemcitytoken/GEM.png",
"links": {}
},
{
"name": "SHAPE",
"account": "gmaslaunches",
"symbol": "SHAPE",
"precision": 4,
"desc": "Shape is a fitness application based on EOS.",
"website": "https://www.shapecoin.io",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/gmaslaunches/SHAPE.png",
"links": {}
},
{
"name": "LZB",
"account": "gqydooigenes",
"symbol": "LZB",
"precision": 4,
"desc": "Laozi EOS is the first block chain technology forum to integrate block chain assets in China.",
"website": "https://laozieos.com",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/gqydooigenes/LZB.png",
"links": {}
},
{
"name": "BTC",
"account": "grandpacoins",
"symbol": "BTC",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/grandpacoins/BTC.png",
"links": {}
},
{
"name": "GYM",