-
Notifications
You must be signed in to change notification settings - Fork 131
/
mainnet.json
1547 lines (1547 loc) · 68 KB
/
mainnet.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
{
"networkId": 0,
"tokens": [
{
"id": "0000000000000000000000000000000000000000000000000000000000000000",
"name": "Alephium",
"symbol": "ALPH",
"decimals": 18,
"description": "Alephium is a scalable, decentralized, and secure blockchain platform that enables the creation of fast and secure applications.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPH.png"
},
{
"id": "c0c0af7a481e3e50c50e418bf8ff6923dc4d878ac3744474e8c708a8adccfb00",
"name": "OGAlf",
"nameOnChain": "Alf",
"symbol": "OGALF",
"symbolOnChain": "ALF",
"decimals": 0,
"description": "OG Alf, real first token deployed on the mainnet",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/OGALF.png"
},
{
"id": "66da610efb5129c062e88e5fd65fe810f31efd1597021b2edf887a4360fa0800",
"name": "Alf",
"symbol": "ALF",
"decimals": 9,
"description": "Alf, first token deployed on the mainnet",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALF.png"
},
{
"id": "b2d71c116408ae47b931482a440f675dc9ea64453db24ee931dacd578cae9002",
"name": "ALPHpaca",
"symbol": "PACA",
"decimals": 0,
"description": "Part Alpaca, part ecosystem, part coin and part meme. ALPHpaca is rapidly trying to expand it's uses across the Alephium ecosystem.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PACA.png"
},
{
"id": "b522184377a33e376e997a950288fa76c1f48e97bc29cd10779adc7cfb673200",
"name": "Berry",
"symbol": "BERRY",
"decimals": 0,
"description": "Mr Berry's coin",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BERRY.png"
},
{
"id": "1516c410b54470d667e1315ce2faa81870c76c5c7a491e3e86eeec8366495502",
"name": "Montycoin",
"symbol": "TAIL",
"decimals": 0,
"description": "Montycoin is an incentivization token made for fun and immersion into MontaiL's DJ'ing career. With widely growing uses.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TAIL.png"
},
{
"id": "1a281053ba8601a658368594da034c2e99a0fb951b86498d05e76aedfe666800",
"name": "AYIN",
"symbol": "AYIN",
"decimals": 18,
"description": "$AYIN is a DEX token, that incentivises users through fees and other mechanisms to participate in trading on Alephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/AYIN.png"
},
{
"id": "5bf2f559ae714dab83ff36bed4d9e634dfda3ca9ed755d60f00be89e2a20bd00",
"name": "Staked Ayin",
"symbol": "XAYIN",
"decimals": 18,
"description": "xAyin is single-staked Ayin accumulating trading fees and additional Ayins from the DEX",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/XAYIN.png"
},
{
"id": "7da28936499f56ffed497fe7eba856aa85eeb943bab2478e36f7020d89cd2400",
"name": "Vlad",
"symbol": "VLAD",
"decimals": 9,
"description": "Enough $VLAD entitles you to some VLAD time, at VLAD's discretion, to talk about VLAD, with VLAD in a VLAD setup of his choosing. This is the way of the VLAD. $VLAD is a valueless memexperimentcoin. NFA applies.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/VLAD.png"
},
{
"id": "2bc4b844502d6c27b57dfe064f95353647a606b3d92150786ecacb56c885c800",
"name": "Jekyll",
"symbol": "JKL",
"decimals": 18,
"description": "Jekyll comes to life as the sun rises...",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/JKL.png"
},
{
"id": "19246e8c2899bc258a1156e08466e3cdd3323da756d8a543c7fc911847b96f00",
"name": "Wrapped Ether (AlphBridge)",
"symbol": "WETH",
"decimals": 18,
"description": "ETH Bridged to Alephium from Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WETH.png"
},
{
"id": "383bc735a4de6722af80546ec9eeb3cff508f2f68e97da19489ce69f3e703200",
"name": "Wrapped BTC (AlphBridge)",
"symbol": "WBTC",
"decimals": 8,
"description": "wBTC Bridged to Alephium from Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WBTC.png"
},
{
"id": "556d9582463fe44fbd108aedc9f409f69086dc78d994b88ea6c9e65f8bf98e00",
"name": "Tether USD (Ethereum via AlphBridge)",
"nameOnChain": "Tether USD (AlphBridge)",
"symbol": "USDTeth",
"symbolOnChain": "USDT",
"decimals": 6,
"description": "USDT Bridged to Alephium from Ethereum via Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDTeth.png",
"originChain": "ETH",
"unchainedLogoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDTeth-unchained.png"
},
{
"id": "7ff5e72636f640eb2c28056df3b6879e4c86933505abebf566518ad396335700",
"name": "Tether USD (BSC via AlphBridge)",
"nameOnChain": "Tether USD (AlphBridge)",
"symbol": "USDTbsc",
"symbolOnChain": "USDT",
"decimals": 18,
"description": "USDT Bridged to Alephium from BSC via Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDTbsc.png",
"originChain": "BSC",
"unchainedLogoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDTbsc-unchained.png"
},
{
"id": "722954d9067c5a5ad532746a024f2a9d7a18ed9b90e27d0a3a504962160b5600",
"name": "USD Coin (Ethereum via AlphBridge)",
"nameOnChain": "USD Coin (AlphBridge)",
"symbol": "USDCeth",
"symbolOnChain": "USDC",
"decimals": 6,
"description": "USDC Bridged to Alephium from Ethereum via Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDCeth.png",
"originChain": "ETH",
"unchainedLogoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDCeth-unchained.png"
},
{
"id": "75e1e9f91468616a371fe416430819bf5386a3e6a258864c574271a404ec8900",
"name": "USD Coin (BSC via AlphBridge)",
"nameOnChain": "USD Coin (AlphBridge)",
"symbol": "USDCbsc",
"symbolOnChain": "USDC",
"decimals": 18,
"description": "USDC Bridged to Alephium from BSC via Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDCbsc.png",
"originChain": "BSC",
"unchainedLogoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/USDCbsc-unchained.png"
},
{
"id": "3d0a1895108782acfa875c2829b0bf76cb586d95ffa4ea9855982667cc73b700",
"name": "Dai Stablecoin (AlphBridge)",
"symbol": "DAI",
"decimals": 18,
"description": "DAI Bridged to Alephium from Alephium Bridge",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DAI.png"
},
{
"id": "df3008f43a7cc1d4a37eef71bf581fc4b9c3be4e2d58ed6d1df483bbb83bd200",
"name": "NUMBER GO UP",
"symbol": "NGU",
"decimals": 7,
"description": "Number Go Up",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/NGU.png"
},
{
"id": "11379064c747f89753d493b562130a63caf1a1fc448fcb161e507d2e542c0b00",
"name": "VIRAL",
"symbol": "VIRL",
"decimals": 4,
"description": "The most contagious token on the Alephium Blockchain.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/VIRL.png"
},
{
"id": "130f008dcc71ad5138bdae00d918acef3b78ddbe95e627215a36a47b6b151100",
"name": "BUBBLE",
"symbol": "BUBBLE",
"decimals": 9,
"description": "Governance token for the AlphDolphins NFT Collections",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BUBBLE.png"
},
{
"id": "7dd0c01b2c835ed659c85c1ae64c7c10b916c06f13cf5b91f1369a5a3feda000",
"name": "CYXE",
"symbol": "CYXE",
"decimals": 4,
"description": "Your Memory. Your Eyes. Your Life.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CYXE.png"
},
{
"id": "c1aeea313e36454f35beaf40130c9219faa40ba645aff93e16429146039f8202",
"name": "Wang",
"symbol": "WANG",
"decimals": 5,
"description": "The first mystical coin, endowing its holders with the spirit of Alephium.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WANG.png"
},
{
"id": "4e0eb20afb173cd534ae29acd013861115482c1e3d8ed626294bbe1008a3f900",
"name": "KleoMixer",
"symbol": "MIX",
"decimals": 8,
"description": "$MIX is the native token of the KleoMixer platform",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/MIX.png"
},
{
"id": "93cc555d3dfc0a81aa6f3127c0108e529a32c87c595c1b89f1855e698c2bc700",
"name": "SUCC",
"symbol": "SUCC",
"decimals": 10,
"description": "Tribute to Sir Moist. 1 alph = 1 SUCC",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SUCC.png"
},
{
"id": "3f0139e1b0aa2cf0a9400ccdb73d00750bcfc8c7be0e858052d794491c8a5900",
"name": "Shin Inu",
"symbol": "SHIN",
"decimals": 5,
"description": "Fun collectible coin and first dog token on Alephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SHIN.png"
},
{
"id": "b3e354fb095fffe3d5fe0431ef6209604323f9d3db069e008d9e8aeacaa30800",
"name": "Noodle",
"symbol": "Noodz",
"decimals": 0,
"description": "Send Noodz!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/Noodz.png"
},
{
"id": "06bc1a82909c566eb6b00a3dc2dfca0d0564f43f3e8357114a0a59b182792a00",
"name": "LOVE",
"symbol": "LOVE",
"decimals": 7,
"description": "NGU LOVE. NUMBER GO UP",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LOVE.png"
},
{
"id": "e565d11d6d5194dc2a65c7d67c324d341bc55f1e7131a9ef5577e8e75e199000",
"name": "Squirrel",
"symbol": "SQRL",
"decimals": 4,
"description": "Your passive-aggressive backyard squirrel",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SQRL.png"
},
{
"id": "f251784031eaea09e4521ecab9dcda5ba8f94d62ce1ab71a952086f2c5d19c00",
"name": "ALPHSQRL",
"symbol": "ALPHSQRL",
"decimals": 18,
"description": "Liquidty Pool Token for ALPH/SQRL pair on Ayin DEX",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPHSQRL.png"
},
{
"id": "1db28d7bf24e0e6dcd600d3ece2c3ac70947af8c115aa4d32670608c0e49f900",
"name": "Nature's Ultimate Treasure Stash",
"symbol": "NUTS",
"decimals": 10,
"description": "Who doesn't like NUTS?!?",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/NUTS.png"
},
{
"id": "b49031320af0ff6fd2764ec7176687257efe1d491eff1baf315db21f10412c00",
"name": "Mira",
"symbol": "MIRA",
"decimals": 9,
"description": "$MIRA - The First Cat Meme on Alephium.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/MIRA.png"
},
{
"id": "e94c25c10044a9db9c4c2e191a5f520ad0e58a29ce480b8edc5dd0fb7b65aa00",
"name": "Canna",
"symbol": "LEAF",
"decimals": 6,
"description": "🔥 Tokin' on the #ALEAFium Network 🌿",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LEAF.png"
},
{
"id": "147a7acd3fe8804c37ac6012a8c72660551473d641abb9bd6ff5b1f2545bb200",
"name": "COFFEE",
"symbol": "COFFEE",
"decimals": 4,
"description": "Crypto adoption by sharing a cup of COFFEE'",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/COFFEE.png"
},
{
"id": "3923a61dcb8e1892ae19a634a20348b250037cd7fece3f4c3868d437d507fc00",
"name": "ALPHMIX",
"symbol": "ALPHMIX",
"decimals": 18,
"description": "Liquidty Pool Token for ALPH/MIX pair on Ayin DEX",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPHMIX.png"
},
{
"id": "55cdaa051f83c408f128ca8888b58bb685ed9974997cc902821b69e352915f00",
"name": "DRAGON",
"symbol": "DRAGON",
"decimals": 8,
"description": "The Dragon Awakens",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DRAGON.png"
},
{
"id": "f79530d767a13ff4baef0870f18adfd17c7b418edd214f89b53ce24df62acf00",
"name": "Grape",
"symbol": "GRAPE",
"decimals": 9,
"description": "Graping charts and ravishing fruity maidens on Alephium blockchain | https://grapecoin.lol | https://t.me/grapecoincommunity",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GRAPE.png"
},
{
"id": "d291da74b47ba566ae1fb0aee11ec571a24e7c184b0a43c32c93ea9f5df87600",
"name": "Number Go Down",
"symbol": "NGD",
"decimals": 6,
"description": "You Buy, Number Go Down. You Sell, Number Go Down",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/NGD.png"
},
{
"id": "18ee870cfaa976627c4c6fa183ccbea869edd9db89ad4ae0ec7dbd52ac753100",
"name": "TROLL",
"symbol": "TROLL",
"decimals": 9,
"description": "Elon's fav meme on Alephium! Chief Troll Officer. Trollface vibes, community-driven fun. Follow us: https://twitter.com/troll_alph",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TROLL.png"
},
{
"id": "11bf07230f5607f626773044414a196d0471d79ba9abc26f148b57b40d983a00",
"name": "Its 404ver",
"symbol": "TOP",
"decimals": 6,
"description": "It's over. this coin is a crazy crazy coin up only. This coin reminds me of the great SHIBA. I literally am holding on to dear life with this f ing coin",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TOP.png"
},
{
"id": "0beffdfa642818060ca796ff770bb42d437c93f4f5c381ef89b226ec6ae5f500",
"name": "Gold Castle Club",
"symbol": "GOLD",
"decimals": 0,
"description": "A Gold castle for ALPH holders'",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GOLD.png"
},
{
"id": "d5a72d57b7fbbac2189da5f26914109dcdd39dd743ae4c4008e79a505c8a9800",
"name": "PUTAN",
"symbol": "PUTAN",
"decimals": 18,
"description": "Da one and only meme crypto payin' respect to Vlad Putan himself. Bringin' da Putan power straight to da alephium blockchan",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PUTAN.png"
},
{
"id": "f7a14d654ef98be45b57e1f45dd8419a5e8fb43c238d5941545a437a56073a00",
"name": "dogwifbat",
"symbol": "WIFB",
"decimals": 8,
"description": "Barking up crypto, swinging for moonshots, bonking FUD. Join the bonk! For the community by the community",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WIFB.png"
},
{
"id": "6adb8983488fb726f94518c185f4a24de236c72cc2ff32889be4612e9c9d3100",
"name": "ALPEPE",
"symbol": "ALPEPE",
"decimals": 0,
"description": "$ALPEPE, PEPE on Alephium. We love apes",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPEPE.png"
},
{
"id": "90c9ac3ff72b3043823fd814cd026536a745889d0b57b66e108c63165a00cb00",
"name": "Hunter x Hunter",
"symbol": "HUNTER",
"decimals": 9,
"description": "The first anime token on Alephium - 100x gem. Follow me on twitter: https://twitter.com/HunterX_alph and telegram: https://t.me/HunterXHunter_alph",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HUNTER.png"
},
{
"id": "bdf47283817a7be4aaaa1390006788a32ea6f4a116f4dd71a86dee891e3f4100",
"name": "SOCKS",
"symbol": "SOCKS",
"decimals": 0,
"description": "The most exclusive and elusive socks. First Socks token on Alephium. If you guess whose it is, you might get some.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SOCKS.png"
},
{
"id": "457cf1d3c4592eeed0911cbaa823274115e7b30f566e473d07d38dc970373800",
"name": "Lasercat",
"symbol": "LCATS",
"decimals": 18,
"description": "Radiation-altered felines shooting lasers for good or evil? 🐱💥 Join the battle of LaserCats to see who triumphs",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LCATS.png"
},
{
"id": "a292e477b18aa234a7275775d0c67c3d4427f361cbe84ba89f64737cbca51b00",
"name": "All Mine, Not Yours",
"symbol": "MINE",
"decimals": 0,
"description": "Stop looking, you can't have any, they are all MINE!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/MINE.png"
},
{
"id": "5dfc09e384aed88f9534bb30865d8028ebb3cee60593afbbbaf679c03f40d000",
"name": "LFG!",
"symbol": "LFG",
"decimals": 6,
"description": "Community Driven Digital Assets",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LFG.png"
},
{
"id": "f29dbb50fe511d5f44d2f67148c26a7c80ff045a82b9a8272471684880d2d600",
"name": "hodlALPH",
"symbol": "HALPH",
"decimals": 18,
"description": "The Phoenix Finance implementation of the hodlCoin protocol: hodlALPH 3%",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HALPH.png"
},
{
"id": "e80754811030f54ccc68d027cdd47c734ecc4c5a800383ad071881d83f510800",
"name": "WTD Bread Token",
"symbol": "BREAD",
"decimals": 18,
"description": "What The Duck Bread Token",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BREAD.png"
},
{
"id": "a2670056dbb723c8bcf33d46bda3ab17a6495b8c199609ead39b0aaf25e70800",
"name": "Retard Alephium Doggy",
"symbol": "ROGGY",
"decimals": 18,
"description": "A cute drooling doggy called Roggy",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ROGGY.png"
},
{
"id": "1df2ca5985333ad434cfe4373f956f309c52fdb77d11975f0c705befab270800",
"name": "LAMAWIFHAT",
"symbol": "LAMAWIFHAT",
"decimals": 18,
"description": "LITERALLY JUST A LAMA WIF A HAT",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LAMAWIFHAT.png"
},
{
"id": "3e69ddf5982f2b9eda82153019b1362270787f5d895a4c22071ed1e47b9ffc00",
"name": "Hail King DIO",
"symbol": "DIO",
"decimals": 18,
"description": "The more sophisticated best friend of ROGGY",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DIO.png"
},
{
"id": "5476c9dd870691468fde042ca197af4039e98150313e1867b0aabe195b8f6a00",
"name": "Artisan",
"symbol": "ART",
"decimals": 1,
"description": "Rewarding NFT ownership with community-driven value",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ART.png"
},
{
"id": "dce0417a662764e876e78142a3c72b8e04fb18b5a23ce26030a6c17f538c7600",
"name": "Juralph",
"symbol": "JURA",
"decimals": 0,
"description": "Juralph is the unofficial token of 'République et canton du Jura'. In memory of January 1, 1979, there are 1979 non-divisible tokens minted by 'Blockchain Jura'",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/JURA.png"
},
{
"id": "bdde84659bc631c41976f796a3a166e108301b2dcbbd16acda10dac687c41e00",
"name": "ALPHLFG",
"symbol": "ALPHLFG",
"decimals": 18,
"description": "Liquidty Pool Token for ALPH/LFG pair on Ayin DEX",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPHLFG.png"
},
{
"id": "e3073a82dc4962c7b907a3493a7f61c6c7646b2a96fbdd4c3e08e8911f72b600",
"name": "Shio",
"symbol": "SHI",
"decimals": 9,
"description": "Shio Meme token created by noodz.io! Send it! 🚀",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SHI.png"
},
{
"id": "b71a50e4e27a3e0465846d33ae79d0e5f66ee721fd88934228353fd59a8aac00",
"name": "Pig Fish",
"symbol": "PISH",
"decimals": 5,
"description": "Just your typical Pig Fish on the ALPH chain. what did you expect?",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PISH.png"
},
{
"id": "b011a27f3f23dc64b56d0c001c4f981205f8448b48600326fd94c6bd9d5b1100",
"name": "ALPHGOLD",
"symbol": "ALPHGOLD",
"decimals": 18,
"description": "Token for liquidity providers on Ayin for the ALPH/GOLD pair",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPHGOLD.png"
},
{
"id": "68527f951fe706770409910e004a2976d02009e1da940fc85b2c4e34c3e5a800",
"name": "Alephium Rocks",
"symbol": "ROCK",
"decimals": 5,
"description": "100% onchain Alephium Rocks",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ROCK.png"
},
{
"id": "bb29d3ef7ed2709741e29a76a1a201e9fdb112c2deafe7504853789117c86b00",
"name": "Seven Club",
"symbol": "777",
"decimals": 6,
"description": "Seven Club represents a unique opportunity and unrivalled exclusivity, designed for all those who aspire to success on a high-level blockchain",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/777.png"
},
{
"id": "bb440a66dcffdb75862b6ad6df14d659aa6d1ba8490f6282708aa44ebc80a100",
"name": "AlphPad",
"symbol": "APAD",
"decimals": 18,
"description": "AlphPad The Premier Launchpad on Alephium - Elevating Projects to New Heights!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/APAD.png"
},
{
"id": "9a7cde102e0347a7079b44f923c8a6fb9a1e07f89c1eb5b0fcd54b678ac46100",
"name": "SPONGOBOBOBAMA420COINTOKENINUVERSE",
"symbol": "SPOBAMA",
"decimals": 3,
"description": "Worlds first spongobobobama420 hybrid technology cointokeninuverse, the community driven meme project!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SPOBAMA.png"
},
{
"id": "9930e01d775c3b6f94f2d6e47315a0e18929e130370bd2f249cd4581b3ae5200",
"name": "Alephium Girls",
"symbol": "AGIRLS",
"decimals": 7,
"description": "We bring one simple promise to Alephium. Waifus for every HODLER, every Miner, every node operator! May God bless the harem of Chengis Wang!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/AGIRLS.png"
},
{
"id": "133a82344bfca617a90eccb646fc89d50243c0639053591302d3a9b04468f500",
"name": "BEARZ WIF GUNZ 1-800-420-69",
"symbol": "BEARZWIFGUNZ180042069",
"decimals": 1,
"description": "BEARZ WITH GUNZ N SHIT CALL 1-800-420-69 THE MOST UNDERGROUND P2P UTXO BASED MEMECOIN ON ALEPHIUM",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BEARZWIFGUNZ180042069.png"
},
{
"id": "b26b785f79e655802bc2bdccfa18faa35e969aaec165e7d17f9640be7df80f00",
"name": "BERAS",
"symbol": "BOTTOM",
"decimals": 5,
"description": "BERAS ARE BACK. BRO IT SO OVAH...💀",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BOTTOM.png"
},
{
"id": "de34422c89dfe18d9ba462870f4b26c8d7a02ab6b25855c96eb08ab1a800f300",
"name": "BULLZ WIF TULIPZ 1-3-3-7-420-69",
"symbol": "BULLZWIFTULIPZ133742069",
"decimals": 6,
"description": "INVESTING WITH THE BEARZ DURING A FULL ON BULL MARKET, WAHT ARE YOU.. STOOOPID? JOIN DA BULLZ THE CUTEST MEMECOIN ON ALEPHIUM",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BULLZWIFTULIPZ133742069.png"
},
{
"id": "609278ae23ebe63619a57ada9d74b2126b3cfc83965426a66de0d7d59f9b1600",
"name": "DONT BUY MEME",
"symbol": "DBM",
"decimals": 1,
"description": "This token may or may not be the biggest meme that you should or shouldn't buy.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DBM.png"
},
{
"id": "ec3f74643fcf9439d267c48e5b4a1c793cc0ec9619fa7528a2644b5af949c500",
"name": "Grumpy Cat",
"symbol": "GRUMPY",
"decimals": 10,
"description": "",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GRUMPY.png"
},
{
"id": "a2468923a5d69b152ddfc87dea4e6d5b09eb4aae239e47ac2bc6ad4807811700",
"name": "Happy Dog",
"symbol": "HAPPY",
"decimals": 10,
"description": "woff:DD",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HAPPY.png"
},
{
"id": "44d9ff4d081c2f498e82d24425b71618738f9d69dd90def0598a3488ccde4a00",
"name": "TOOT THE ALPHTASTIC ELEPHANT",
"symbol": "TOOT",
"decimals": 1,
"description": "TOOOT TOOOT THE TOOTMENT IS HERE",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TOOT.png"
},
{
"id": "34b49f0dd151f8ef1e7f0605ca106d86621bf4f4f6c8855214f8db53cfc7c100",
"name": "Alegator",
"symbol": "GATOR",
"decimals": 9,
"description": "Alegator represents more than just a meme coin; it is a meme coin incubated from the Alephium spirit. Join us on Twitter: https://twitter.com/Alegator_Alph, Telegram: https://t.me/Alegator_Alph",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GATOR.png"
},
{
"id": "97082198354e3652a2efe4346a0d3f5d786a0cf5331146ecac70a5ac3c208900",
"name": "GIGA",
"symbol": "GIGA",
"decimals": 2,
"description": "$GIGA is coming to Alephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GIGA.png"
},
{
"id": "bc2f9b3af9db12db1035b7683e3d76c319e22006de6c0f6a15e0c04ff183fd00",
"name": "AlphZombie",
"symbol": "ZMBI",
"decimals": 18,
"description": "Meee $ZMBI AlphZombie meme token, meeeh want be half-human toOo uh ! Twitter meeeh : https://twitter.com/AlphZombie",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ZMBI.png"
},
{
"id": "ba17d4a0d35eaf94540c31ce713d61f14b8b92f19f607d59d5f20c8d4042d700",
"name": "GIGACHENG",
"symbol": "CHENG",
"decimals": 6,
"description": "The $CHENG meme token has been meticulously engineered to propel the Alephium community to unprecedented levels of success and decentralized excellence. Join us on Twitter: https://twitter.com/gigacheng, Telegram: https://t.me/gigacheng",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CHENG.png"
},
{
"id": "dd1b44a7e6879318418f8b238c494606981b054c8d3e44f037b76f2395e04e00",
"name": "LEMUR",
"symbol": "LEMUR",
"decimals": 3,
"description": "The unbeatable LEMUR joins alephium, check our X https://x.com/LEMURalph and watch our veteran devs cook something never before seen on alephium. Partly memes, mostly utility.. Too Daa Moon!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/LEMUR.png"
},
{
"id": "e8b7cc961cb7689649234d9e7890e134c5a6619759ea0212d6457b06cbed9c00",
"name": "Wrapped OG Alf",
"symbol": "WALF",
"decimals": 18,
"description": "A wrapped version of the first token launched on Alephium. OG Alf.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WALF.png"
},
{
"id": "ad5f393479088d8669874f991d5f52ffaf9c946d9703152eccc1cf70efc37200",
"name": "ALPHAGA",
"symbol": "ALPHAGA",
"decimals": 18,
"description": "Token of the Alphaga Marketplace ecosystem",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ALPHAGA.png"
},
{
"id": "fc6601c50e9f2e9bf957967f9ae05850e90eb82d44770b4003f9dfd30e2a1d00",
"name": "TEST",
"symbol": "TEST",
"decimals": 18,
"description": "TEST",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TEST.png"
},
{
"id": "edcd9b5c59f23d545faa6d5e91d196098f4d0a14146ace422a8b367ef3b34000",
"name": "ANS (alephium.domains)",
"nameOnChain": "ANS",
"symbol": "ANSd",
"symbolOnChain": "ANS",
"decimals": 18,
"description": "The token of the Alephium Name Service (alephium.domains).",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ANSd.png"
},
{
"id": "6b894505030718e45cdf7c59be1f8c6167542e43522e95303871e8280037b000",
"name": "TRUMP 2024",
"symbol": "TRUMP",
"decimals": 10,
"description": "Winning",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TRUMP.png"
},
{
"id": "84e7a6754ea11002b1b06e99819699b2342f4d48f91eee98165c76a49d397400",
"name": "Pippa Coin",
"symbol": "PIPPA",
"decimals": 4,
"description": "Pippa la Pip",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PIPPA.png"
},
{
"id": "33f62fbeebd621996860fe35504c8958f24060040ee7a02c1be9cb62154adf00",
"name": "TKCOIN",
"symbol": "TKCOIN",
"decimals": 4,
"description": "TKCOIN, pour le fun, la bière et la communauté",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TKCOIN.png"
},
{
"id": "7236e1b5ddbf8c56a37e02bb282913996c246a14193a57237cfd9fcf1eab5000",
"name": "UwU",
"symbol": "UWU",
"decimals": 6,
"description": "Ayaya! Launching first on CandySwap - https://candyswap.gg/token/UWU",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/UWU.png"
},
{
"id": "2a7c1a01644e5119c5e7aaa42690476eb971f299d99e39b885a828e5994da300",
"name": "Bongo Cat",
"symbol": "BONG",
"decimals": 10,
"description": "Bongo Cat! Launching first on CandySwap - https://candyswap.gg/token/BONG",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BONG.png"
},
{
"id": "6678b5c8125b9b7019a4d39d0077ad7f6304cbad86ddc6c59b906de4b1267100",
"name": "DragonCoin",
"symbol": "DRGN",
"decimals": 3,
"description": "Alephium Dragons! Trade on: https://candyswap.gg/token/DRGN",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DRGN.png"
},
{
"id": "7430cebfc525c36b30637830696c1141f02963c06ddf010a1a33134ced2e8b00",
"name": "Crawly The Gnome",
"symbol": "CRAWLY",
"decimals": 8,
"description": "Crawly is a green wizard gnome with a net. He enjoys catching things.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CRAWLY.png"
},
{
"id": "9365b3c817c2c287d5a78763af9620c7d37d496cb6d556790fddf5ab9d2e6c00",
"name": "ALPH TEKKI",
"symbol": "TEKKI",
"decimals": 1,
"description": "Meme Token in Alephium live in CandySwap - https://candyswap.gg/token/TEKKI",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/TEKKI.png"
},
{
"id": "89e424f5b43fe72246001484423f6b06379be4eefed8b42cc380e1dc6ec0c100",
"name": "ELON",
"symbol": "ELON",
"decimals": 2,
"description": "« When something is important enough, you do it even if the odds are not in your favor »",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ELON.png"
},
{
"id": "80b0270f1edce67afd5fc1b42d370308d77011165b8c05338b0bb990d685d500",
"name": "BETA",
"symbol": "BETA",
"decimals": 8,
"description": "Alephium Community Token",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BETA.png"
},
{
"id": "162f3606cc6bde743f10d6586197f20e89c1dd9a212a01479cc29e98e0a31d00",
"name": "JEET",
"symbol": "JEET",
"decimals": 10,
"description": "Why jeet when you can build?",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/JEET.png"
},
{
"id": "f590df65b35f52958209331c317ece5de8b2d1f946736dc1764dcab776044200",
"name": "Candy Crash",
"symbol": "CC",
"decimals": 6,
"description": "A celebratory meme for CANDYSWAP SEASON 1. Earn CANDY tokens while trading any token on CANDYSWAP platform",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CC.png"
},
{
"id": "99ffbde485e4e594667a0843d264471e6a4630339c8396608ef1032dc8b04000",
"name": "SHIBA SHIBBO",
"symbol": "SHIBBO",
"decimals": 18,
"description": "shiba meme coin for fun",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SHIBBO.png"
},
{
"id": "2df4cc8296aa5078f034eedeafec4139f23af440158204a93f76f21b74854500",
"name": "ANS (Open Source)",
"nameOnChain": "Alephium Name Service",
"symbol": "ANSo",
"symbolOnChain": "ANS",
"decimals": 18,
"description": "The token of the Alephium Name Service (alphnames.com).",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ANSo.svg"
},
{
"id": "881a844f3e6511441b5d6fa4896d8bbf87d365f87b3b0c183cb4c4c35268cf00",
"name": "HarryPoter",
"symbol": "HP",
"decimals": 1,
"description": "Wingardium Leviosa ! https://www.ayin.app/swap ! https://candyswap.gg/swap !",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HP.png"
},
{
"id": "ed8d67fb6363aa69b9df581997394b43349da4aa3de7f992b5239a259a42de00",
"name": "0XBIIGBANG",
"symbol": "0XB",
"decimals": 5,
"description": "The BIIGBANG and the beginning of everything, see the light and the infinite expansion!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/0XB.png"
},
{
"id": "de830579a9b874ad6de9d102d48e9479a45eb5037e64615479b21476e0d8f600",
"name": "SingularityX",
"symbol": "SINX",
"decimals": 10,
"description": "We are passionate crypto enthusiasts, Alephium enthusiasts and active community members.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/SINX.png"
},
{
"id": "fb68e484625b53c62581f2d358a6a83eb1ad918bfb64790d90c2357ca63ceb00",
"name": "PEPE",
"symbol": "PEPE",
"decimals": 0,
"description": "Pepe is here to make memecoins great again.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PEPE.png"
},
{
"id": "f7f9b116c02896e27c7a98b1eb09c39f4dc4cf517e7df72ea8ca93ad70a23100",
"name": "I DON'T LIKE YOUR FACE",
"symbol": "FACE",
"decimals": 10,
"description": "I DON'T LIKE YOUR FACE meme token a digital asset that's here to shake up the crypto world",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/FACE.png"
},
{
"id": "da9be0b21e10aa45e960c94a15aa51feb0f336617ae29541e555613af9b27300",
"name": "Pingu",
"symbol": "PINGU",
"decimals": 4,
"description": "🐧 Welcome to the $PINGU Colony 🐧We're Alephium OGs here to make memecoins COOL again. Blessed to be so based 🤝Official Links:💱 Buy/Swap: https://candyswap.gg/token/PINGU",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PINGU.png"
},
{
"id": "0debef738a9097963d4cb4c02aafcf1a07cbc74a6e7a77e57439329a159d0900",
"name": "ONETOKEN",
"symbol": "ONE",
"decimals": 18,
"description": "1 token, 18 decimal! Pure madness, just look 👀👀👀💱 Buy/Swap: https://candyswap.gg/token/ONE",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/ONE.png"
},
{
"id": "56392bdd8541948e69b9c784d778ca07979bfdc75c2acb15381781d828557500",
"name": "Hoppy",
"symbol": "HOPPY",
"decimals": 2,
"description": "From now until 10: 00 p.m. EST on July 22nd, any purchase of $Hoppy will receive an airdrop of the equivalent tokens. $ALPHWe will appear in the new dex later.🤫https://candyswap.gg/token/HOPPY. https://x.com/HoppyAlph",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HOPPY.png"
},
{
"id": "5999e01b8c23cf1e50ab784e056ebb4bce00ddf0abd3c499146a76bb00d75200",
"name": "AlphPost",
"symbol": "POST",
"decimals": 18,
"description": "The first social network and task based marketplace platform in Alephium. https://alphPost.com",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/POST.png"
},
{
"id": "077e81b3a3d1d40581621f0255e86df395db2282704adc6e3be6ab19644a3100",
"name": "CHIMKEN",
"symbol": "CHIMKEN",
"decimals": 7,
"description": "ALPH moons and we eat CHIMKEN",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CHIMKEN.png"
},
{
"id": "3c51b5b11063ae4f5677a071d8576854618de299983f613da843a8a6ed51c600",
"name": "ALPH to the MOON",
"symbol": "MOON",
"decimals": 8,
"description": " ALPH road to $100 is not meme. Best L1 Blockchain POLW. https://x.com/AlphMoon alphmoon.xyz ",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/MOON.png"
},
{
"id": "c978e69e9ebe5b95ab0e9f0183c1c35c31ccdc7e9a3638d6b1dc62db0b8d6e00",
"name": "MemeGoUP",
"symbol": "MGU",
"decimals": 0,
"description": "A fun token reflecting the meme market sentiment and the overall direction still to come",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/MGU.png"
},
{
"id": "de0d3c6fc589cac8378e767ac4b7b3c288079e176c8b12a3548d0d7bc7ba4400",
"name": "CryptoPlayboy",
"symbol": "CPLBY",
"decimals": 16,
"description": "CryptoPlayboy CPLBY is a meme token created for entertainment purposes",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CPLBY.png"
},
{
"id": "216338071fefb594d27d9b1c339caa25a5d1062f7226794994e7971b9824e100",
"name": "WAYANG",
"symbol": "WAYANG",
"decimals": 8,
"description": "Wayang Token belongs to Alephium fans from Indonesia. Wayang is the nation's ancestral cultural heritage https://x.com/WayangAlephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WAYANG.png"
},
{
"id": "520e5d8c8c98490e7aae61b37b87fcc80d60da6cebfc94b95f1335125aa26e00",
"name": "WAVE",
"symbol": "WAVE",
"decimals": 10,
"description": "Wave on Alephium is Meme Token. Twitter ID https://x.com/WaveOnAlephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WAVE.png"
},
{
"id": "5a16414ee706c9c5e48e513fca082703b2e7652ecb3f56837697a1d553020a00",
"name": "HUG",
"symbol": "HUG",
"decimals": 10,
"description": "Game Token on Alephium",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/HUG.png"
},
{
"id": "32488b0870d1d92f7d20bde89edfbdb9e6f071ad58bb8b1432f482b539391600",
"name": "Crashmarket2024",
"symbol": "CRASH",
"decimals": 9,
"description": "Crash memecoin on Alephium in the crash market. https://x.com/marketcrash2024",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CRASH.png"
},
{
"id": "dae0bce81368f8ed974090fd063a669bc22ec00076aa97b7f335391af231a200",
"name": "Wojak on Alph",
"symbol": "WOJAK",
"decimals": 6,
"description": "No Need To Rush, Wojak on Alephium to make ALPH OG's Memecoins Great Again ",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/WOJAK.png"
},
{
"id": "93db3ced5685c6e5438afcc94fc20a1bca8885be75c02f6f164da30f217c2500",
"name": "DOH",
"symbol": "DOH",
"decimals": 18,
"description": "Roads are just a suggestion Marge, just like pants.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DOH.png"
},
{
"id": "d1a047c957c450b8459d71138ac0d8abdf669e4f61852af73f6ac654fb9af100",
"name": "FROG",
"symbol": "FROG",
"decimals": 10,
"description": "DESKRIPSI : new meme token on alephium https://x.com/AlphFrog83564 ",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/FROG.png"
},
{
"id": "18608da087ea4e173d20637b5dd9e93fffa37dc97e71014a98a46deefbbcec00",
"name": "Dogecoin",
"symbol": "DOGE",
"decimals": 4,
"description": "Much wow, so alph, very doge.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DOGE.png"
},
{
"id": "50f19ae6fe71aad8096a4e9d90eaa4ceaccd301c9736549d3b57111a81778300",
"name": "CryptoGriffons",
"symbol": "GRFN",
"decimals": 2,
"description": "Memecoin for CryptoGriffons Community and Alph Community.",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/GRFN.png"
},
{
"id": "8d97f8ab9aa1ad84188e853df4f1544131a61d03fce2b9f9054cbc368c31f400",
"name": "Candy",
"symbol": "CANDY",
"decimals": 18,
"description": "The CandySwap reward token!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/CANDY.png"
},
{
"id": "c4f0066f85ab8a57a547f6b0b32f06472a5eb0dd0a9467968990af74946d5100",
"name": "Blackjack",
"symbol": "BJ",
"decimals": 18,
"description": "21000 token Only!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/BJ.png"
},
{
"id": "7cf121bdb82ab12adf0028bafff8181523cd30219f46064706696ffde55a2c00",
"name": "Poker",
"symbol": "PKR",
"decimals": 18,
"description": "21000 token Only!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/PKR.png"
},
{
"id": "f1d3d24ef3325827a8bb9c29911f61baee4f146d28ab37d16e5d379434cea600",
"name": "FIVE",
"symbol": "FIVE",
"decimals": 18,
"description": "FIVE Token All pooled in ayin swap 5 FIVE/5 AYIN 🚀pool FIVE/AYIN🚀!",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/FIVE.png"
},
{
"id": "8907cab001af8ff1057e22f69533606cd3e207a0d879a9006527a31a7d670b00",
"name": "dogwifhat",
"symbol": "DOGWIFHAT",
"decimals": 0,
"description": "literally just a dog wif a hat",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/DOGWIFHAT.png"
},
{
"id": "25d74e048ae06c4888a8b5e1522201a208c93b1d44677eaecf36b20124129900",
"name": "69",
"symbol": "69",
"decimals": 18,
"description": "Name: 69/ Symbol: 69/ Supply: 69/ Decimals: 18/ AYIN SWAP launch 69-->ALPH_69-->69/ Let's Go too the MOON !",
"logoURI": "https://raw.githubusercontent.com/alephium/token-list/master/logos/69.png"