-
Notifications
You must be signed in to change notification settings - Fork 167
/
tokens.json
4312 lines (4312 loc) · 213 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",
"symbol": "TOD",
"contract": "21dice4token",
"issuer": "21dice4token",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/21dice4token/TOD.png",
"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%的平台收益会被返还给用户,成为战斗群的骑士或者国王可以获得巨大的收益。"
},
"website": "https://21dice.one",
"whitepaper": "",
"links": {
"twitter": "https://twitter.com/21Dice1",
"telegram": "https://t.me/dice_CN"
},
"invalid": true,
"account": "21dice4token"
},
{
"name": "TARUK",
"symbol": "TARUK",
"contract": "3dkrenderwax",
"issuer": "3dkrenderwax",
"precision": 4,
"logo": "https://github.com/3dkrender/eos-tokens/blob/master/tokens/3dkrenderwax/taruk.png",
"desc": {
"en": "Currency for financing the Rada Quest TCG game by pre-purchase. It grants benefits from the game."
},
"website": "https://radaquest.net",
"whitepaper": "Currency for financing the Rada Quest TCG game by pre-purchase. It grants benefits from the game.",
"links": {
"twitter": "https://twitter.com/radaquesttcg",
"discord": "https://discord.gg/DJXXpuc"
},
"account": "3dkrenderwax"
},
{
"name": "ACC",
"symbol": "ACC",
"contract": "accissuer123",
"precision": 4,
"issuer": "accissuer123",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/accissuer123/ACC.png",
"desc": {
"en": "The Project's Introduction:Afro&Asia Block Chain International Capital , ACC for short,mainly consisting of entrepreneurs, highly talented technical professionals and top venture teams from China, the US, Singapore, Korea, and South Asian countries, is dedicated to building financial innovation service institution, constructing financing Information platform, meanwhile, helping small and medium-sized enterprises seamlessly integrate with financial institutions under the strong support from forty-two governments in Asia-Pacific region and Africa. ACC endows with omni-directional supports and service to businesses based on the perfect fusion of the Internet , blockchains with financial and entity projects. Moreover, ACC strives for an innovative financial service platform of co-creation, co-construction and sharing, which is safety, integrity, safe, honest, open, notarized, technology-based and policy-oriented.",
"zh": "Asia&Africa block chain international capital资本简称(ACC),主要由中国、美国、新加坡、韩国及东南亚国家的企业家、高精尖技术人士、顶级风投团队等构成,在亚太地区和非洲共42个国家政府的大力支持下,致力打造金融创新服务机构,构建融资信息平台,帮助中小企业与金融机构精准对接。依托于互联网、区块链与金融及实体项目的完美融合,为企业提供政策、资源、技术、资金等全方位支持与服务。打造一个安全、诚信、公开、公证的以科技为支撑、以政策为导向的共创、共建、共享的创新型金融服务平台。"
},
"website": "https://www.acc.top",
"whitepaper": "",
"links": {},
"account": "accissuer123"
},
{
"name": "ADM",
"symbol": "ADM",
"contract": "admsadmtoken",
"issuer": "admsadmtoken",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/admsadmtoken/ADM.png",
"desc": {
"en": "ADM DAPP will be a perfect application scenario in EOS.IO, Since it is where business and art collide.",
"zh": "ADM将是EOS公链下非常完美的应用埸景,它是商业和艺术碰撞的地方。"
},
"website": "https://www.adms.store",
"whitepaper": "https://adms.store/ADM%20White%20paper.pdf",
"links": {
"facebook": "https://www.facebook.com/admsstore",
"telegram": "https://t.me/admsstore1",
"twitter": "https://twitter.com/admsstore",
"wechat": "admsstore"
},
"account": "admsadmtoken"
},
{
"name": "Aeron",
"symbol": "ARN",
"contract": "aeronaerozzz",
"precision": 8,
"issuer": "aeronaerozzz",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/aeronaerozzz/ARN.png",
"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",
"whitepaper": "https://aeron.aero/AeronWhitepaper.pdf",
"links": {
"github": "https://github.com/aeronaero/aeron",
"telegram": "https://t.me/aeronaero",
"twitter": "https://twitter.com/aeron_aero",
"reddit": "https://www.reddit.com/r/AeronAero/"
},
"account": "aeronaerozzz"
},
{
"name": "EPT",
"symbol": "EPT",
"contract": "alibabapoole",
"precision": 4,
"issuer": "alibabapoole",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/alibabapoole/EPT.png",
"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",
"whitepaper": "",
"links": {},
"account": "alibabapoole"
},
{
"name": "BAC",
"symbol": "BAC",
"contract": "alliance1111",
"precision": 4,
"issuer": "alliance1111",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/alliance1111/BAC.png",
"desc": {
"en": "To create a global universal currency that can be a resistance to inflation similar to gold",
"zh": "打造成为像黄金一样抗通胀、全球性的通用货币。"
},
"website": "https://token.bizalliance.net",
"whitepaper": "https://token.bizalliance.net/download/WhitePaper.pdf",
"links": {},
"account": "alliance1111"
},
{
"name": "ANGE",
"symbol": "ANGE",
"contract": "angelcitytok",
"precision": 4,
"issuer": "angelcitytok",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/angelcitytok/ANGE.png",
"desc": "ANGE is a betting game platform run on EOS network, aiming to providing a transparent, fair and extremely amusing environment to global users.",
"website": "https://angelcity.io",
"whitepaper": "https://angelcity.io/AngelCity_WhitePape_V1.pdf",
"links": {
"telegram": "https://t.me/angelcityioenglish",
"medium": "https://medium.com/@angelcityio"
},
"account": "angelcitytok"
},
{
"name": "ANL",
"symbol": "ANL",
"contract": "angeliumseed",
"issuer": "deploymywish",
"precision": 8,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/angeliumseed/ANL.png",
"desc": {
"en": "ANGELIUM (Angelium is the next generation blockchain based cross reality entertainment platform over real world and virtual world. VR & AR is the next frontier of humanity and Angelium shows the new horizon to connect virtual to real, people to people beyond any kind of borders."
},
"website": "http://angelium.net",
"whitepaper": "",
"links": {
"github": "",
"telegram": "",
"twitter": "",
"steemit": "",
"reddit": "",
"wechat": ""
},
"account": "angeliumseed"
},
{
"name": "ATHENA",
"symbol": "ATHENA",
"contract": "athenastoken",
"precision": 4,
"issuer": "athenastoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/athenastoken/ATHENA.png",
"desc": "ATHENA is a blockchain smart contract platform developed by Pandoras.io. Athena implies Pandoras' hope, Focusing on Decentralized Dapp Ecology.",
"website": "https://www.pandoras.io",
"whitepaper": "https://www.pandoras.io/file/PandorasWhitePaper.pdf",
"links": {
"github": "https://github.com/athena-coin",
"telegram": "https://t.me/Pandorascom",
"twitter": "https://twitter.com/WalletPandoras"
},
"account": "athenastoken"
},
{
"name": "AVEX",
"symbol": "AVX",
"contract": "avxavexdapps",
"issuer": "avxavextoken",
"precision": 6,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/avxavexdapps/AVX.png",
"desc": {
"en": "Our mission is to empower people around the world by bringing blockchain transactions into everyday life."
},
"website": "https://valorlabs.network",
"whitepaper": "",
"links": {
"github": "https://github.com/AVXTOKEN",
"telegram": "https://t.me/AVEXAVX",
"twitter": "https://twitter.com/valor_labs",
"facebook": "https://www.facebook.com/groups/293870925396775/",
"instagram": "https://www.instagram.com/p/CIrUCx2J9ZC/"
},
"account": "avxavexdapps"
},
{
"name": "BCASH",
"symbol": "BCASH",
"contract": "bcashonecoin",
"issuer": "bcashonecoin",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bcashonecoin/BCASH.png",
"desc": {
"zh": "Bcash是建立EOS公链上的竞猜类游戏项目,旨在打造一个可以广泛参与的在线竞猜平台。",
"website": "http://www.bcash.one/",
"whitepaper": "http://www.bcash.one/Bcash_White_en.pdf",
"links": {}
},
"website": "",
"whitepaper": "",
"links": {},
"account": "bcashonecoin"
},
{
"name": "BEES",
"symbol": "BEES",
"contract": "beesgamecont",
"precision": 4,
"issuer": "beesgamecont",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/beesgamecont/BEES.png",
"desc": {
"en": "BeesGame aims to provide one-stop services for DApp developers and global players, building a global blockchain game ecosystem. ",
"zh": "Bees致力于为 DApp 开发商和玩家提供一站式服务,建设更健康友好的区块链全球社区。"
},
"emaill": "official@beesgame.io",
"website": "https://www.beesgame.io",
"whitepaper": "https://www.beesgame.io/static/BeesGameWhitePaper.pdf",
"links": {
"telegram": "http://t.me/BeesGame_official"
},
"account": "beesgamecont"
},
{
"name": "CHIP",
"symbol": "CHIP",
"contract": "bet24tokens1",
"precision": 4,
"issuer": "bet24tokens1",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bet24tokens1/CHIP.png",
"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",
"whitepaper": "",
"links": {},
"account": "bet24tokens1"
},
{
"name": "BCC",
"symbol": "BCC",
"contract": "betcitytoken",
"precision": 4,
"issuer": "betcitytoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/betcitytoken/BCC.png",
"desc": {
"en": "Betcity is a absolutely fair decentralized game platform based on EOS blockchain. BCC tokens are issued once Betcity goes live. ",
"zh": "Betcity 绝对公平的去中心化游戏平台。Betcity一上线,BCC 代币即被发行。"
},
"website": "https://www.betcity.one/",
"whitepaper": "",
"links": {
"telegram": "https://t.me/betcityone",
"twitter": "https://twitter.com/betcityone"
},
"account": "betcitytoken"
},
{
"name": "DICE",
"symbol": "DICE",
"contract": "betdicetoken",
"precision": 4,
"issuer": "betdicetoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/betdicetoken/DICE.png",
"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",
"whitepaper": "",
"links": {
"telegram": "https://t.me/dice1_en",
"medium": "https://medium.com/@dice1/",
"twitter": "https://twitter.com/dice1_en"
},
"account": "betdicetoken"
},
{
"name": "BET",
"symbol": "BET",
"contract": "betdividends",
"precision": 4,
"issuer": "eosbetcasino",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/betdividends/BET.png",
"desc": "",
"website": "",
"whitepaper": "",
"links": {},
"account": "betdividends"
},
{
"name": "BG",
"symbol": "BG",
"contract": "bgbgbgbgbgbg",
"precision": 4,
"issuer": "bgbgbgissuer",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bgbgbgbgbgbg/BG.png",
"desc": "Fair, transparent, fun and stimulating EOS gaming platform.",
"website": "https://big.game",
"whitepaper": "",
"links": {},
"account": "bgbgbgbgbgbg"
},
{
"name": "BINGO",
"symbol": "BINGO",
"contract": "bingobetoken",
"precision": 4,
"issuer": "bingobetoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bingobetoken/BINGO.png",
"desc": "The first American Roulette is made fully trustless on the fastest and feeless EOS blockchain!",
"website": "https://bingobet.one",
"whitepaper": "",
"links": {},
"account": "bingobetoken"
},
{
"name": "BITI",
"symbol": "BITI",
"contract": "biteyebiteye",
"precision": 4,
"issuer": "biteyebiteye",
"logo": "https://www.biteye.pro/img/logo.png",
"desc": {
"en": "EOSY is an easy, scaled-down EOS account system. EOSY make EOS easy to use. EOSY user doesn't need to know the CPU, NET, RAM and permission setting. Just like ETH, user can control the account with one private key. All other resource will be managed by EOSY wallet. EOSY wallet can be easily integrated with current Dapps. ",
"zh": "EOSY是一个易于使用,可扩展的免费EOS账号系统,EOSY让EOS使用更简单。EOSY用户不需考虑CPU,NET,RAM等资源问题,大大降低了用户进入EOS的门槛。可以非常容易的接入已有的EOS DAPP中,与EOS标准账号兼容使用。"
},
"website": "https://www.biteye.pro",
"whitepaper": "",
"links": {
"telegram": "https://t.me/biteye_official",
"twitter": "https://twitter.com/biteyepro",
"medium": "https://medium.com/biteyepro"
},
"account": "biteyebiteye"
},
{
"name": "EBTC",
"symbol": "EBTC",
"contract": "bitpietokens",
"precision": 8,
"issuer": "bitpiefundsa",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bitpietokens/EBTC.png",
"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/",
"whitepaper": "",
"links": {},
"account": "bitpietokens"
},
{
"name": "EETH",
"symbol": "EETH",
"contract": "bitpietokens",
"precision": 8,
"issuer": "bitpiefundsa",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bitpietokens/EETH.png",
"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",
"whitepaper": "",
"links": {},
"account": "bitpietokens"
},
{
"name": "LNC",
"symbol": "LNC",
"contract": "bitwala.bank",
"issuer": "bitwala.bank",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bitwala.bank/LNC.png",
"desc": {
"zh": "龙币(LNC)是基于以柚子3.0智能合约协议产生,用户可以使用各类eos等钱包即可保管、存储与转发,是新一代的虚拟数字币。通过龙币商城的挖矿购物项目合作奖励,社区建设奖励等激励系统,让龙币逐步扩大应用范围,使得龙币有了实体经济支撑,走上了实体化区块链行业应用模式。总发行量210亿,百分之九十五需要挖矿以及项目合作产生。空投流通量2.1亿。主要用于电子商务及LNC龙币商城。通过购物挖矿创新的解决了传统数字币能源浪费的问题,更激活了实体经济的发展,利国利民。"
},
"website": "http://www.lnctoken.com",
"whitepaper": "https://pan.wps.cn/l/slyde55",
"links": {
"wechat": "lonico"
},
"account": "bitwala.bank"
},
{
"name": "MIR",
"symbol": "MIR",
"contract": "blockmirmain",
"precision": 4,
"issuer": "blockmirmain",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/blockmirmain/MIR.png",
"desc": "MIR is a key element of the MIR platform, an integrated solution that encompasses a variety of content and alliance business plans.",
"website": "https://mircoin.io",
"whitepaper": "",
"links": {},
"account": "blockmirmain"
},
{
"name": "BOID",
"symbol": "BOID",
"contract": "boidcomtoken",
"precision": 4,
"issuer": "boidcomtoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/boidcomtoken/BOID.png",
"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",
"whitepaper": "",
"links": {},
"account": "boidcomtoken"
},
{
"name": "BOX",
"symbol": "BOX",
"contract": "boxgametoken",
"precision": 4,
"issuer": "boxgametoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/boxgametoken/BOX.png",
"desc": {
"en": "A baccarat gambling game dapp rewarding high IQ players ",
"zh": " 玩家利用一副牌以内的概率预测花色、大小,玩得越多赚得越多,有冒险精神就能成为大赢家!"
},
"website": "https://ibox.games",
"whitepaper": "",
"links": {
"telegram": "https://t.me/iboxgame"
},
"account": "boxgametoken"
},
{
"name": "BUFF",
"symbol": "BUFF",
"contract": "buff123token",
"precision": 4,
"issuer": "buff123token",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buff123token/BUFF.png",
"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",
"whitepaper": "",
"links": {},
"account": "buff123token"
},
{
"name": "EOSISH",
"symbol": "EOSISH",
"contract": "buildertoken",
"precision": 4,
"issuer": "vladimirwish",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buildertoken/EOSISH.png",
"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",
"whitepaper": "",
"links": {},
"account": "buildertoken"
},
{
"name": "LITE",
"symbol": "LITE",
"contract": "buildertoken",
"precision": 4,
"issuer": "eosliteworld",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/buildertoken/LITE.png",
"desc": "EOS Lite - Manage EOS assets directly through the browsers .",
"website": "https://www.eoslite.co",
"whitepaper": "",
"links": {},
"account": "buildertoken"
},
{
"name": "BMT",
"symbol": "BMT",
"contract": "bymunitycoin",
"precision": 4,
"issuer": "bymunitycoin",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/bymunitycoin/BMT.png",
"desc": "Bymunity Exchange is an exchange conducted by community and is more inclined to award back to individuals or teams who make a greater contribution to the community,dedicated to boost the blockchain industry.",
"website": "https://bymunity.com",
"whitepaper": "https://bymunity.com/BymunityWhitepaperEN.pdf",
"links": {
"telegram": "https://t.me/bymunity",
"medium": "https://medium.com/@bymunity"
},
"account": "bymunitycoin"
},
{
"name": "ADE",
"symbol": "ADE",
"contract": "cadeositoken",
"precision": 6,
"issuer": "cadeositoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/cadeositoken/ADE.png",
"desc": {
"en": "We are developing a real time processing Computer Aided Design (CAD) and a Product Lifecycle Management (PLM) platform based on EOS blockchain architecture. It provides the best real time design tools to the community, including data sharing.",
"zh": "我们正在开发基于EOS区块链架构的实时处理计算机辅助设计(CAD)和产品生命周期管理(PLM)平台。 它为社区提供最佳的实时设计工具,包括数据共享,视频通话,即时通讯和屏幕共享,以获得最佳协作体验,显示项目管理工作的进度并帮助发展您的网络。"
},
"website": "https://cadeos.io",
"whitepaper": "https://img1.wsimg.com/blobby/go/9fb3d7c5-55d5-44e3-883a-433d76c3433d/downloads/1d31l2084_602940.pdf?ver=1561950686711",
"links": {
"telegram": "https://t.me/cadeos",
"medium": "https://medium.com/cadeos-io",
"facebook": "https://web.facebook.com/cadeos.io",
"github": "https://github.com/CADEOS",
"twitter": "https://twitter.com/CadeosI"
},
"account": "cadeositoken"
},
{
"name": "CLC",
"symbol": "CLC",
"contract": "cailuwwallet",
"issuer": "cailuwwallet",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/cailuwwallet/CLC.png",
"desc": {
"en": "Cailu is perpendicular to the blockchain field, with the Cailu node as the operational core, the community, Conch (IM), and consensus public chain as the engine-driven blockchain consensus incubation ecosystem.",
"zh": "财路是垂直于区块链领域,以财路节点作为运营核心,社区、海螺(IM)、共识公链三大产品作为引擎驱动的区块链共识孵化生态。"
},
"website": "https://www.cailuw.com",
"whitepaper": "https://frontoss.cailuw.com/web/whitepaper/cailuwhitepaper.pdf",
"links": {
"telegram": "https://t.me/cailuschool",
"twitter": "https://twitter.com/cailuw"
},
"account": "cailuwwallet"
},
{
"name": "CARMEL",
"symbol": "CARMEL",
"contract": "carmeltokens",
"precision": 4,
"issuer": "carmeltokens",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/carmeltokens/CARMEL.png",
"desc": "Carmel is the Decentralized Tech Education Platform that helps aspiring and seasoned developers take their tech skills to the next level using the revolutionary Tweak-N-Learn™ educational model.",
"website": "https://carmel.io",
"whitepaper": "",
"links": {},
"account": "carmeltokens"
},
{
"name": "CPLE",
"symbol": "CPLE",
"contract": "carpoolslife",
"precision": 4,
"issuer": "cple2eoscvrt",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/carpoolslife/CPLE.png",
"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",
"whitepaper": "",
"links": {},
"account": "carpoolslife"
},
{
"name": "CHL",
"symbol": "CHL",
"contract": "challengedac",
"precision": 4,
"issuer": "challengedac",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/challengedac/CHL.png",
"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",
"whitepaper": "",
"links": {},
"account": "challengedac"
},
{
"name": "CHEX",
"symbol": "CHEX",
"contract": "chexchexchex",
"issuer": "chexchexchex",
"precision": 8,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/chexchexchex/CHEX.png",
"desc": {
"en": "Chintai is a high performance token leasing platform. The CHEX token unlocks cost effective access to digital resources, and automated passive income.",
"zh": "Chintai 是高性能的代币租赁平台. CHEX 为 Chintai 平台代币, 使得数字资源的使用更具性价比,并借助Chintai 平台,为持币人自动带来被动收益"
},
"website": "https://chintai.io",
"whitepaper": "https://chintai.io/whitepaper",
"links": {
"twitter": "https://twitter.com/chintaieos",
"telegram": "https://t.me/ChintaiEOS",
"medium": "https://medium.com/@chintaieos",
"bihu": "https://bihu.com/people/1737019954",
"github": "https://github.com/chintai-platform"
},
"account": "chexchexchex"
},
{
"name": "LKT",
"symbol": "LKT",
"contract": "chyyshayysha",
"precision": 4,
"issuer": "lmyyshayysha",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/chyyshayysha/LKT.png",
"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",
"whitepaper": "",
"links": {},
"account": "chyyshayysha"
},
{
"name": "LIGHT",
"symbol": "LIGHT",
"contract": "coinscentral",
"precision": 4,
"issuer": "coinscentral",
"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",
"whitepaper": "",
"links": {
"facebook": "https://www.facebook.com/OreTokenProject",
"twitter": "https://twitter.com/OreLightToken"
},
"account": "coinscentral"
},
{
"name": "CONST",
"symbol": "CONST",
"contract": "constantteam",
"precision": 2,
"issuer": "constantteam",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/constantteam/CONST.png",
"desc": {
"en": "Constant (CONST) is an alternative financial services platform powered by its namesake stablecoin - Constant. Constant is a borderless, stable currency that anyone can hold and send - pegged 1:1 with the USD, the world reserve currency. It opens up multiple financial opportunities to the underserved, underbanked and anyone fed up with the centralized sluggishness and exclusivity plaguing the current financial system."
},
"website": "https://www.myconstant.com",
"whitepaper": "http://files.constant.money/whitepaper.pdf",
"links": {
"github": "https://github.com/constant-money",
"telegram": "https://t.me/constantp2p",
"twitter": "https://twitter.com/constantp2p",
"facebook": "https://www.facebook.com/constantp2p",
"medium": "https://medium.com/@constantp2p"
},
"account": "constantteam"
},
{
"name": "MANIA",
"symbol": "MANIA",
"contract": "crmaniatoken",
"issuer": "crmaniaslots",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/maniatoken/Mania_Token.png",
"desc": {
"en": "Cutting edge, profit-sharing slot machine platform that pays to play!",
"zh": "EOS上最緊張刺激及獎勵多多的遊戲!",
"ko": "Cutting edge, profit-sharing slot machine platform that pays to play!"
},
"website": "https://cryptomaniaslots.com",
"whitepaper": "https://cryptomaniaslots.com/pdf/CryptoMania%20Manifesto%20V1.1.pdf",
"links": {
"github": "",
"telegram": "https://t.me/CryptoMania_EOS",
"twitter": "https://twitter.com/CryptoManiaSlot",
"steemit": "",
"reddit": "",
"wechat": "CryptoMania中文官方群"
},
"account": "crmaniatoken"
},
{
"name": "PSO",
"symbol": "PSO",
"contract": "cryptopesosc",
"precision": 4,
"issuer": "cryptopesosc",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/cryptopesosc/PSO.png",
"desc": "Peso Economy-- a modern economic plan in Venezuela and Latin America.",
"website": "https://eosvenezuela.io",
"whitepaper": "",
"links": {},
"account": "cryptopesosc"
},
{
"name": "CRYPAY",
"symbol": "CRYPAY",
"contract": "crytonsource",
"issuer": "crytonsource",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/crytonsource/CRYTON.png",
"desc": {
"en": "FAST FREE and SECURE digital currency."
},
"website": "https://www.cryton.net",
"links": {
"facebook": "https://www.facebook.com/OreTokenProject"
},
"whitepaper": "",
"account": "crytonsource"
},
{
"name": "CRYTON",
"symbol": "CRYTON",
"contract": "crytonsource",
"issuer": "crytonsource",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/crytonsource/CRYTON.png",
"desc": {
"en": "FAST FREE and SECURE digital currency."
},
"website": "https://www.cryton.net",
"links": {
"facebook": "https://www.facebook.com/crytonsource/"
},
"whitepaper": "",
"account": "crytonsource"
},
{
"name": "MAIL",
"symbol": "MAIL",
"contract": "d.mail",
"issuer": "d.mail",
"precision": 4,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/d.mail/MAIL.png",
"desc": "dmail allows you to send mails using MAIL tokens",
"website": "https://dmail.co",
"whitepaper": "",
"links": {
"twitter": "https://twitter.com/dmailco",
"telegram": "https://t.me/dmailcommunity",
"dmail": "https://medium.com/@dmail"
},
"account": "d.mail"
},
{
"name": "CTN",
"symbol": "CTN",
"contract": "dacincubator",
"precision": 4,
"issuer": "dacincubator",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dacincubator/CTN.png",
"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",
"whitepaper": "",
"links": {},
"account": "dacincubator"
},
{
"name": "YDAPP",
"symbol": "YDAPP",
"contract": "dacincubator",
"precision": 4,
"issuer": "dacincubator",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dacincubator/YDAPP.png",
"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/",
"whitepaper": "",
"links": {},
"account": "dacincubator"
},
{
"name": "DAPP",
"symbol": "DAPP",
"contract": "dappservices",
"issuer": "dappservices",
"precision": 4,
"logo": "https://i.imgur.com/ljSkkNB.png",
"desc": "The DAPP token is a multi-purpose utility token that serves as the access key to the DAPP Network.",
"website": "https://liquidapps.io",
"whitepaper": "",
"links": {
"GitHub": "https://github.com/liquidapps-io",
"Telegram": "https://t.me/LiquidAppsOfficial",
"Twitter": "https://twitter.com/@LiquidAppsIO",
"Mmedium": "https://medium.com/the-liquidapps-blog",
"LinkedIn": "https://www.linkedin.com/company/liquidapps/"
},
"account": "dappservices"
},
{
"name": "DBET",
"symbol": "DBET",
"contract": "dbetminepool",
"precision": 4,
"issuer": "....5zzuyqcvb",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dbetminepool/DBET.png",
"desc": "Dbet.one is a new generation betting and mining platform with payout policy to DBET token holders.",
"website": "https://dbet.one",
"whitepaper": "",
"links": {},
"account": "dbetminepool"
},
{
"name": "DET",
"symbol": "DET",
"contract": "diceeostoken",
"precision": 4,
"issuer": "diceeostoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/diceeostoken/DET.png",
"desc": "Gambling game based on EOS.",
"website": "https://mydice.me",
"whitepaper": "",
"links": {},
"account": "diceeostoken"
},
{
"name": "DIONCOIN",
"symbol": "DION",
"contract": "dionpaydteam",
"precision": 6,
"issuer": "dionpaydteam",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/dionpaydteam/DION.png",
"desc": {
"en": "DION is blockchain cryptocurrency, which is introduced a combination with real business models and cryptocurrency ecosystems in order to use in the existing mileage marketing systems and a hybrid crypto game portal platform playDion, which will provide a variety of games.",
"zh": "DION是导入结合实际商业模式与加密货币生态系统的新概念区块加密货币。链接现有的积分营销系统和提供多种游戏的混合加密游戏门户网站playDion使用。",
"ko": "DION은 실제 사업 모델과 암호화폐 에코 시스템을 결합한 개념을 도입하여, 기존의 마일리지 마케팅 시스템과 다양한 게임을 제공하는 하이브리드 크립토 게임 포털 플랫폼인 playDion과 연계되어 사용되는 블록체인 암호화폐입니다."
},
"website": "http://www.dionpay.com",
"whitepaper": "http://www.dionpay.com/static/white-paper/dioncoin-whitepaper-en.pdf",
"links": {
"telegram": "https://t.me/officialdionpay",
"twitter": "https://www.twitter.com/Dionpayteam",
"facebook": "https://www.facebook.com/DionCoin-2204850456497016",
"navercafe": "http://navercafe.dionpay.com"
},
"account": "dionpaydteam"
},
{
"name": "EATCOIN",
"symbol": "EATCOIN",
"contract": "eatscience14",
"precision": 4,
"issuer": "eatscience14",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eatscience14/EATCOIN.png",
"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",
"whitepaper": "",
"links": {},
"account": "eatscience14"
},
{
"name": "ECH",
"symbol": "ECH",
"contract": "echechechech",
"precision": 4,
"issuer": "echechechech",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/echechechech/ECH.png",
"desc": {
"en": "ECH is an innovative project that makes full use of the technological advantages of the EOS mainnet, using swap mining, combined with gradient combustion, so that the participants can fully play the game and form a certain equilibrium in different stages.",
"zh": "ECH是一个充分利用EOS主网技术优势的创新项目,采用Swap(闪兑)挖矿,并结合梯度燃烧,令参与者能充分博弈,并在不同阶段形成某种均衡。"
},
"website": "http://ech.one",
"whitepaper": "",
"links": {},
"account": "echechechech"
},
{
"name": "ECTT",
"symbol": "ECTT",
"contract": "ectchaincoin",
"precision": 4,
"issuer": "ectchaincoin",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ectchaincoin/ECTT.png",
"desc": "We are committed to solving the problems of integrity, payment and payment days in cross-border diamond trade.",
"website": "http://www.ectchain.com",
"whitepaper": "",
"links": {},
"account": "ectchaincoin"
},
{
"name": "EDNA",
"symbol": "EDNA",
"contract": "ednazztokens",
"precision": 4,
"issuer": "ednazztokens",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ednazztokens/EDNA.png",
"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",
"whitepaper": "",
"links": {},
"account": "ednazztokens"
},
{
"name": "EKD",
"symbol": "EKD",
"contract": "ekdtokenbank",
"issuer": "ekdtokenbank",
"precision": 6,
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/ekdtokenbank/EKD.png",
"desc": {
"en": "EOSKingDom(EKD) is a multifaceted game platform developing EOS-based blockchain. The user is provided with a safe, verifiable game platform through a blockchain system.",
"zh": "EosKingDom(EKD)是基于EOS.IO区块链系统开发的在线多样化游戏平台。 我们希望为用户提供一个完全安全、完全可验证公平性、去中心化和无国界的游戏平台。",
"ko": "EosKingDom(EKD)는 EOS 기반 블록체인을 개발하는 다각화된 게임 플랫폼이다. 블록체인 시스템을 통해 사용자에게 안전하고 검증 가능한 게임 플랫폼을 제공한다."
},
"website": "https://eoskingdom.io",
"telegram": "https://t.me/EosKingDom_global",
"twitter": "https://twitter.com/eoskingdom",
"wechat": "eoskingdom",
"whitepaper": "",
"links": {},
"account": "ekdtokenbank"
},
{
"name": "ET",
"symbol": "ET",
"contract": "endlesstoken",
"precision": 4,
"issuer": "endlesstoken",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/endlesstoken/ET.png",
"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",
"whitepaper": "",
"links": {},
"account": "endlesstoken"
},
{
"name": "EOSABC",
"symbol": "EOSABC",
"contract": "eosabctokens",
"precision": 4,
"issuer": "eosabctokens",
"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",
"whitepaper": "",
"links": {
"telegram": "https://t.me/EOSABC"
},
"account": "eosabctokens"
},
{
"name": "ADD",
"symbol": "ADD",
"contract": "eosadddddddd",
"precision": 4,
"issuer": "eosadddddddd",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosadddddddd/ADD.png",
"desc": "EOS ADD provides data center and application platform for transformation from 'Internet plus 'to 'block chain plus'.",
"website": "http://eosadd.com",
"whitepaper": "",
"links": {},
"account": "eosadddddddd"
},
{
"name": "ATD",
"symbol": "ATD",
"contract": "eosatidiumio",
"precision": 4,
"issuer": "eosatidiumio",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosatidiumio/ATD.png",
"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",
"whitepaper": "",
"links": {},
"account": "eosatidiumio"
},
{
"name": "EOS AUCTION",
"symbol": "EAP",
"contract": "eosauctionpt",
"precision": 4,
"issuer": "eosauctionpt",
"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"
},
"account": "eosauctionpt"
},
{
"name": "Bet500.ONE",
"symbol": "BONE",
"contract": "eosbet5token",
"precision": 4,
"issuer": "eosbet5admin",
"logo": "https://raw.githubusercontent.com/BlockABC/eos-tokens/master/tokens/eosbet5token/BONE.png",
"desc": {
"en": "Bet500.ONE is a blockchain game experiment platform developed by 5 million lottery network. Based on the EOS public chain development, Bet500.ONE is an experimental development of a series of blockchain quiz games, such as digital color games, competitive games, and team games.",
"zh": "Bet500.ONE是由500万彩票网策划开发的区块链游戏实验平台。Bet500.ONE基于EOS公链开发,围绕数字彩类游戏、竞技类游戏、团队类游戏等一系列区块链竞猜游戏进行实验化拓展。"
},
"website": "http://www.bet500.one",
"whitepaper": "http://www.bet500.one/#/home/introduce",
"links": {
"facebook": "https://www.facebook.com/profile.php?id=100035286161262"
},
"account": "eosbet5token"
},
{
"name": "BLACK",
"symbol": "BLACK",
"contract": "eosblackteam",
"precision": 4,