This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jettons.json
1128 lines (1128 loc) · 31.6 KB
/
jettons.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
[
{
"address": "0:a8641676cfd02edddcc334d8bc5e407186e21a9da0f511bdbfa05444610cb720",
"description": "Crumb Coin (CRUMB) is a token used in the BRAD x Totkit ecosystem",
"image": "https://nft.tonbrad.com/crumb.png",
"max_supply": 19566910,
"name": "Crumb Coin",
"social": [
"https://t.me/brad_nft_ton",
"https://t.me/totkitnews"
],
"symbol": "CRUMB",
"websites": [
"https://tonbrad.com",
"https://totkit.org"
]
},
{
"address": "0:978122d4c1a865168dfaef342666a7dfee4a828142009848099c97ed18bf9f14",
"description": "The only token that express gratitude.",
"image": "https://cdn.discordapp.com/attachments/474204974910406667/1065332998670655579/dnk.jpg",
"max_supply": 69420,
"name": "DOLBOEB",
"social": [
"https://t.me/dolbaeb_ton"
],
"symbol": "DLB"
},
{
"address": "0:b403a16772aea0cd6c3213fe140bc2a328b07733f36442d9917a4b647e8f8609",
"decimals": 0,
"description": "EXC is a financial service token in EXTON",
"image": "https://i.ibb.co/9W2Tj4H/ex.png",
"max_supply": 65666666,
"name": "ExCoin",
"social": [
"https://t.me/exc_coin",
"https://t.me/EXTON_SWAP_BOT",
"https://t.me/yakovlev_serj"
],
"symbol": "EXC"
},
{
"address": "0:91042f0b2380b182c800b4f2101b6222d2feaa4baf379d9c1354ea65fd7890cf",
"description": "Official Jernax Token on the TON network.",
"max_supply": 7000000,
"name": "Jernax",
"social": [
"https://t.me/JernaxCoin"
],
"symbol": "JRX"
},
{
"address": "0:3f8601005845e9b89affe7a13599c8c7ac396e884fcb92957846be818482cc97",
"name": "LP Token for AMBR-oUSDC",
"symbol": "AMBR-oUSDC LP"
},
{
"address": "0:4cb7638015bf33e782273f9649b0273110ea151dd48b817b830057ed3b8756d1",
"name": "LP Token for BOLT-WTON",
"symbol": "BOLT-WTON LP"
},
{
"address": "0:233e7bb3b9ec79c7b2ce227047a2c406460943d7662ddd7090a85ce17e81b032",
"name": "LP Token for FNZ-AMBR",
"symbol": "FNZ-AMBR LP"
},
{
"address": "0:60aae4b8c84b5bde1c8abece145246a9ff86d77ccd9375341ef9432a0edd458a",
"name": "LP Token for FNZ-oUSDC",
"symbol": "FNZ-oUSDC LP"
},
{
"address": "0:b904f18b6168b5356999a8d0e2adcacdaa88978a5e965073cb2e027d4c4834be",
"name": "LP Token for FNZ-WTON",
"symbol": "FNZ-WTON LP"
},
{
"address": "0:c942ee7bf6e238f9b0416d97448c50a9793c8697d386c4c6f081c471294a80b4",
"name": "LP Token for oETH-AMBR",
"symbol": "oETH-AMBR LP"
},
{
"address": "0:f63c4e62515dfd0049d2ad3e717e2f0f5018bd3a10fd9467144ecbc0a1454a5a",
"name": "LP Token for oETH-FNZ",
"symbol": "oETH-FNZ LP"
},
{
"address": "0:31a95a81ef642fbe6ed10707dd75c7f0adcd353bfb494a5d4b574452d2e827b8",
"name": "LP Token for oETH-oUSDC",
"symbol": "oETH-oUSDC LP"
},
{
"address": "0:922b681fda087d31e58e65cc0d4de95a82ca64e943bd7fb45aefd9ec29ca29ff",
"name": "LP Token for oETH-oUSDT",
"symbol": "oETH-oUSDT LP"
},
{
"address": "0:7b8383585bb617ca10e1ba57a9d7e41fa654b39fd1d061ec03dc8af656cb6256",
"name": "LP Token for oETH-WTON",
"symbol": "oETH-WTON LP"
},
{
"address": "0:9803186a693b42be699cec194d470bfc7284becfdd9d3224a8feae9d65a28701",
"name": "LP Token for oUSDT-AMBR",
"symbol": "oUSDT-AMBR LP"
},
{
"address": "0:14ab4d0fe47df659e27b5382cdbd5da61201125cfd986d6156b2fe2338282066",
"name": "LP Token for oUSDT-FNZ",
"symbol": "oUSDT-FNZ LP"
},
{
"address": "0:c35e262a8025e7d76d87b5e3745799cf573c6c69fb94cc39a45cf27d8beda2e9",
"name": "LP Token for oUSDT-oUSDC",
"symbol": "oUSDT-oUSDC LP"
},
{
"address": "0:29dd8c6a684d5687251e1dad3eecf1a38f15d974fcb8eddf3009d44f387c01f8",
"name": "LP Token for oUSDT-WTON",
"symbol": "oUSDT-WTON LP"
},
{
"address": "0:5417d0151be1a2f1ae6c72c6b03ab923578fab25fff53aeff1249a45d3f41d62",
"name": "LP Token for TGR-oETH",
"symbol": "TGR-oETH LP"
},
{
"address": "0:d34cd8d3a33e3473ac5574acecbf95f85d889fccbfa2c3777d72a0908b4be9da",
"name": "LP Token for TGR-oUSDC",
"symbol": "TGR-oUSDC LP"
},
{
"address": "0:abf02bf3e218157485e1a381b13861e391520b43620aa2d180539f8cd7135c36",
"name": "LP Token for TGR-oUSDT",
"symbol": "TGR-oUSDT LP"
},
{
"address": "0:e2e03c28022f72d12a5686c17a552c6ca4ad34ae157c4fe461e6eda537a8b8db",
"name": "LP Token for TGR-WTON",
"symbol": "TGR-WTON LP"
},
{
"address": "0:afe41587f4f404b99c567b9cacedd1381f5ff855ccdc112e0cf8291afa7f19f9",
"name": "LP Token for WTON-AMBR",
"symbol": "WTON-AMBR LP"
},
{
"address": "0:e02d84194bc4a2c31a0a321dcdd6145fec4930b82324ae143576e4d60c3afbc3",
"name": "LP Token for WTON-FNZ",
"symbol": "WTON-FNZ LP"
},
{
"address": "0:d5e6449fc822ffa80c910c888a3df01bb32748c00d0e22a9a1ce6583be1b21a9",
"name": "LP Token for WTON-oUSDC",
"symbol": "WTON-oUSDC LP"
},
{
"address": "0:8f98e9e44def2a3ff66d09fdd1cacd38ba445389073fc554be94643a047dc965",
"description": "Audiatur et altera pars. Universal Altcoin on Ton. @teneretoken . chat: @tenerechat",
"max_supply": 210000000,
"name": "Tenere",
"social": [
"https://t.me/teneretoken",
"https://t.me/tenerechat"
],
"symbol": "Tnr"
},
{
"address": "0:f9c0e473060126580433f078f391574e7c6a02e2216e1c27634c19f23677d2ae",
"name": "Alex Ross",
"symbol": "AROS"
},
{
"address": "0:9c2c05b9dfb2a7460fda48fae7409a32623399933a98a7a15599152f37572b49",
"name": "Ambra",
"symbol": "AMBR"
},
{
"address": "0:f4bdd480fcd79d47dbaf6e037d1229115feb2e7ac0f119e160ebd5d031abdf2e",
"description": "Official token of the Huebel Company",
"image": "https://cloudflare-ipfs.com/ipfs/QmX47dodUg1acXoxYDULWTNfShXRW5uHrCmoKSUNR9xKQw",
"max_supply": 6000000,
"name": "Huebel Bolt",
"social": [
"https://t.me/boltlink"
],
"symbol": "BOLT"
},
{
"address": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728",
"decimals": 6,
"description": "USDC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"name": "jUSDC",
"symbol": "jUSDC"
},
{
"address": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA",
"decimals": 6,
"description": "USDT transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xdAC17F958D2ee523a2206206994597C13D831ec7",
"name": "jUSDT",
"symbol": "jUSDT"
},
{
"address": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B",
"decimals": 18,
"description": "DAI transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x6B175474E89094C44Da98b954EedeAC495271d0F",
"name": "jDAI",
"symbol": "jDAI"
},
{
"address": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5",
"decimals": 8,
"symbol": "jWBTC"
},
{
"address": "0:e4c6be69583a14bbb27f0b350628545b9c86f399e74d5770aae72ab74178126e",
"description": "\ud83d\ude98 T.ME/CARS_TON - 30 CAR BRANDS/USERNAMES IN THE NFT COLLECTION. \ud83c\udfc6 We will support each car with advertising to increase the value.",
"name": "CAR COLLECTION",
"social": [
"https://t.me/cars_ton"
],
"symbol": "CAR"
},
{
"address": "0:a6e0456ba1ca77e0915e94760f1b1fc3e292aa43e812ebfc45650cc8c3003e58",
"name": "Cock Fights Token",
"symbol": "CFT"
},
{
"address": "0:0ba49170f8c1e9dab178d42c79d4e6d5d1fc98a7b36c5e928599866b9e57384e",
"name": "Zombie King Mage"
},
{
"address": "0:152df55bddf1d27d45ad9ccdfe91dbacd50f7f0e9d8abb980e69364e23d57a49",
"name": "Zombie Queen Archer"
},
{
"address": "0:4bd3e6bd8f6802f3e66ce7f3537a6e5e5054e6caa0faa8f465aa46654e02b487",
"name": "Zombie Rook Warrior"
},
{
"address": "0:48c7ccab703e2231a4685472dffafca372443fa07c5399083198d7ee9f64cfbf",
"name": "Zombie Rook Archer"
},
{
"address": "0:1529686c3278a0404346997960dce45f9fbcd2aa87739552009d1c93df6b6173",
"name": "Zombie Bishop Warrior"
},
{
"address": "0:340bfaa346063f21a0335e741964ddd5f0a790b59f48e0d3248c02b25a1d69e3",
"name": "Zombie Bishop Mage"
},
{
"address": "0:ac935e36aac73e757b0443865ddc1a0bbed3e850851fd8e5fb58766ec7f1d32f",
"name": "Zombie Knight Warrior"
},
{
"address": "0:ae4da6a780a5c9603e63dfb1025e424855ca24ec7099810539cd1a33e4a8b9dc",
"name": "Zombie Pawn Warrior"
},
{
"address": "0:067ad08689d27945110646f5971a939815f1642adbc083aebb646504e5421c0a",
"name": "Zombie Pawn Archer"
},
{
"address": "0:72196be2855bd8d806abf2308b15edb457b567a1e801d40080e5037cab05f6eb",
"name": "Zombie Pawn Mage"
},
{
"address": "0:e3fef943b741dbe2f35f80fbaa90be0b40751770555ea26702f1104026a21845",
"name": "Elven King Mage"
},
{
"address": "0:b5f2a91b21fad636b83c03aa15862c146517016fad0adabc5331a6407649f1ce",
"name": "Elven Queen Archer"
},
{
"address": "0:c7aa95b28b880bffccf107579e516d55cf7155da499022c2fc1aea55f4ca9401",
"name": "Elven Rook Warrior"
},
{
"address": "0:b436103f951f8ca9315727bfac2b54ca3f6bc6401f8a8d7d8f2b5ab4d5394913",
"name": "Elven Rook Archer"
},
{
"address": "0:a01f045d408e0ebba447d7bfe5c0cac3204cf3d4eeef8eed3cca350757772275",
"name": "Elven Bishop Warrior"
},
{
"address": "0:fd9ff0353132c671fc26d2034055d28b88359ace3d297bf73e27ddcb16ec152c",
"name": "Elven Bishop Mage"
},
{
"address": "0:1b27a5370e0f40129da2d5a6dcbbc29afb569a670ec1908fefda11d471e7eabd",
"name": "Elven Knight Warrior"
},
{
"address": "0:84248553a8b172150857260aa85d198bd93d54ab50f883d2f2d2eaa329d757d7",
"name": "Elven Pawn Warrior"
},
{
"address": "0:856245191df69878ff0c5faaee53c595f1fd7fc77d75c8b01238643a0fe6742a",
"name": "Elven Pawn Archer"
},
{
"address": "0:e68926dc8ddac3ac558d86777af7411390fa6f05a1be90f1c1c0d7fb108dc4ae",
"name": "Elven Pawn Mage"
},
{
"address": "0:7d3a9e4c014a329a4e98ff8c79217dea7461e15214a6326b15a0403e8f339823",
"name": "CON",
"symbol": "CON"
},
{
"address": "EQDjSSXT1HdqtyFoCvhrqeszZuNAL3euJ3-sSBZwsIHDuP7r",
"name": "DeDust.io JTON-KINGY LP"
},
{
"address": "EQD3CuFki0909ArDTSkIOZtJ7Jasl2Woql2egHL8fVLVltYQ",
"name": "DeDust.io JTON-BOLT LP"
},
{
"address": "0:c47099533c1ca6cd4a8e275e50478e2f2253c81e1b16965ac869f5a93dd7878a",
"name": "Donation",
"symbol": "DON"
},
{
"address": "0:c0eafee8952bd9084af6c8d85494ce1e067445d7596c1cbaed92487b3123080a",
"name": "Energy Cells",
"symbol": "ENRG"
},
{
"address": "0:c224bd22407a1f70106f1411dd546db7dd18b657890234581f453fa0a8077739",
"description": "fanz.ee is a web3 fan engagement platform designed to help sports and entertainment organisations meaningfully connect with their fans through immersive gamification experiences",
"max_supply": 2100000000,
"name": "Fanzee Token",
"social": [
"https://t.me/fanzeelabs",
"https://twitter.com/fanzeelabs"
],
"symbol": "FNZ",
"websites": [
"https://fanz.ee",
"https://app.fanz.ee"
]
},
{
"address": "0:3a4d2191094e3a33d4601efa51bb52dc5baa354516e162b7706955385f8144a7",
"description": "Token created by @FragmentCheckerBot team. This token can be used for discounts when purchasing premium access or when joining to a private community and more. Our channels: @FragmentChecker and @FragmentCheckerRu",
"image": "https://ton.beycoder.ru/token-logo.png",
"max_supply": 300000,
"name": "FragmentChecker",
"social": [
"https://t.me/FragmentCheckerBot",
"https://t.me/FragmentCheckerRu",
"https://t.me/FragmentChecker"
],
"symbol": "FCK",
"websites": [
"https://ton.app/utilities/fragment-checker-bot"
]
},
{
"address": "0:51e0b3fdcf68ebf26462e53ceaab6c022ccb41b0becfe3a767b53ff6140a867d",
"description": "This token gives you the opportunity to be a member of Fragment Chat! @fragmentChat (https://t.me/fragmentChat)",
"image": "https://telegra.ph/file/bad554fa5f363e61926c2.jpg",
"max_supply": 700000000,
"name": "FRAGMENT",
"social": [
"https://t.me/fragmentChat"
],
"symbol": "FRG",
"websites": [
"https://ton.app/chats/frgchat"
]
},
{
"address": "EQD9fy6aOSYN5RCQTWshN7hj83ktvmjmIOV1mu4dDq2QdqWb",
"description": "FST is the currency of the FASTMM esports platform.",
"image": "https://fastmm.win/fst-mint-logo.jpg",
"max_supply": 1000000000,
"name": "FASTMM",
"social": [
"https://vk.com/fmmgg"
],
"symbol": "FST",
"websites": [
"https://fastmm.win"
]
},
{
"address": "0:63eeea0856c9e0992f9ac8ecf59c710d8d99234ede665c1e2e19af3786672aab",
"name": "Grabscape game token",
"symbol": "GRBS"
},
{
"address": "0:6227c7526e9dff6006ff2ae0bae330ab16a413b056d479ee6d6f3af97a5fc710",
"description": "The spirit of wall-street hedgehogs on a legendary blockchain",
"name": "HEDGE coin",
"symbol": "HEDGE"
},
{
"address": "EQBPAVa6fjMigxsnHF33UQ3auufVrg2Z8lBZTY9R-isfjIFr",
"name": "Wrapped TON",
"symbol": "JTON"
},
{
"address": "0:beb5d4638e860ccf7317296e298fde5b35982f4725b0676dc98b1de987b82ebc",
"description": "Is an ecosystem token in the TON blockchain with a large Telegram community.",
"image": "https://i.ibb.co/FbTCKRP/logotokenkingy.png",
"max_supply": 10000000,
"name": "Jetton kingy",
"social": [
"https://t.me/investkingyru",
"https://t.me/investkingyru_en",
"https://twitter.com/IKingyru"
],
"symbol": "KINGY",
"websites": [
"https://kingy.wtf",
"https://coinmarketcap.com/currencies/kingyton/",
"https://ton.org.in",
"https://tonforbes.com"
]
},
{
"address": "0:04f2c01bbf132822b376b40b8e7b8bc8e47e098671c8fb39f6568472f9a807ec",
"description": "TON KISS project coin",
"image": "https://makoso74.github.io/kiss/IMG_1832.PNG",
"max_supply": 5000000000,
"name": "KISS Coin",
"social": [
"https://t.me/KISS_Coin",
"https://t.me/KISSCoinChat"
],
"symbol": "KISS"
},
{
"address": "0:6553fb4a2128297a978c153f6ddf14c37a2566a36e5d5bfe2f50e97a8c877f04",
"description": "Kote Coin. It's the only one.",
"name": "Kote Coin",
"social": [
"https://t.me/KoteCoin",
"https://t.me/KoteCoinRU"
],
"symbol": "KOTE",
"websites": [
"https://kotecoin.com/"
]
},
{
"address": "0:65de083a0007638233b6668354e50e44cd4225f1730d66b8b1f19e5d26690751",
"description": "This is a universal token for use in all areas of the decentralized Internet in the TON blockchain, web3, Telegram channels, TON sites, Tonkeeper. Issue of 4.6 billion coins. Telegram channels: Englishversion: @lave_eng \u0420\u0443\u0441\u0441\u043a\u043e\u044f\u0437\u044b\u0447\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f: @lavetoken, @lavefoundation versi\u00f3n en espa\u00f1ol: @lave_esp, www.lavetoken.com",
"max_supply": 4600000000,
"name": "Lavandos",
"social": [
"https://t.me/lavetoken",
"https://t.me/laveteam",
"https://t.me/lavefoundation",
"https://t.me/lave_eng",
"https://t.me/lave_esp",
"https://twitter.com/lave_token",
"https://lavetoken.com"
],
"symbol": "LAVE"
},
{
"address": "0:12d9e9586fafe1a96c8e97b829b984f37f5b2a9a32c9434950e17ff877f32fb4",
"decimals": 9,
"description": "The concept of the LOVE jetton is the Metaverse. Metaverse for virtual dating. Jetton based on the TON blockchain. Telegram channel - @loveholders, @loveholderschat, @loveholderseng, @loveengchat, loveholders.com",
"max_supply": 4600000000,
"name": "Love You",
"social": [
"https://t.me/loveholders",
"https://t.me/loveholderschat",
"https://t.me/loveholderseng",
"https://t.me/loveengchat",
"https://loveholders.com"
],
"symbol": "LOVE"
},
{
"address": "0:9914eca76922b60f84ea4aa71fd0385aab8a1f082562fdffb3f1f5fe2aa55dcb",
"description": "Mars Coin. Game TONPlanets.com",
"image": "https://nft.tonplanets.com/jettons/mars/mars_logo.png",
"max_supply": 5000000000,
"name": "Mars",
"social": [
"https://t.me/TONPlanets",
"https://t.me/TONPlanetsBot",
"https://t.me/TONPlanetsEn"
],
"symbol": "MARS",
"websites": [
"https://mars.tonplanets.com",
"https://tonplanets.com"
]
},
{
"address": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C",
"name": "Wrapped TON",
"symbol": "WTON"
},
{
"address": "EQAMUeI-fww_W1kCwMcDfZooBhTtr1zwcy86tlHetvpvqd8A",
"name": "Megaton LP oUSDC-META",
"symbol": "MGLP"
},
{
"address": "EQCwrvlVKXMDVKlsIvYK6bJmKvkGn1UiU4W46rgKB0r6Cpa2",
"name": "Megaton LP oGXA-WTON",
"symbol": "MGLP"
},
{
"address": "EQCyYbIBZfW2Z-yEMjkJx0ofQ95l2m29as5zMs3RAkNodmPK",
"name": "Megaton LP oETH-WTON",
"symbol": "MGLP"
},
{
"address": "EQCKM-dCebtf-9-xMoNDbTHy-4rjofvSbMC61uHV_R0-pO7V",
"name": "Megaton LP WTON-oUSDT",
"symbol": "MGLP"
},
{
"address": "EQCw12SVuR1u2bRv1kKzR2CaC6sH9W-k13lJnf5dxt5O7711",
"name": "Megaton LP oMATIC-WTON",
"symbol": "MGLP"
},
{
"address": "EQD0uNCf5Y7zOZ7h2-Y6kkcRVJzmmQQiGHZyJ-B9WEiLN6GT",
"name": "Megaton LP WTON-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQALdzKxIV3nPiG5NxP8dsvsP8PbVxYYgelqxMBp61gF4XP8",
"name": "Megaton LP oUSDC-oKLAY",
"symbol": "MGLP"
},
{
"address": "EQDtKEfVIv44CAb9_TYScFbaVMyvC2CC_LnZ3XFOyWi5SuxB",
"name": "Megaton LP oMOOI-WTON",
"symbol": "MGLP"
},
{
"address": "EQC2eIKmg9YV5rTBpmhYphlR96m3jpFdgeiFikRtG3p9WZV8",
"name": "Megaton LP oGHUB-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQC3QIX0cODPDubkeJz6AM2eTUCSDAVXHWb_DnmLb3EEgdsQ",
"name": "Megaton LP oAPM-WTON",
"symbol": "MGLP"
},
{
"address": "EQDl29-P2VOxFDl64XAZleUcytGYS_8o5PvxjCLCKgU0eUUJ",
"name": "Megaton LP KAI-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQBwYx99atSlEOOIJpt43BFM0eAl_IWNEE8W-ZLHWe-h_Fte",
"name": "Megaton LP oUSDC-oMPWR",
"symbol": "MGLP"
},
{
"address": "EQCocXc3t9WDrQ2gnq6kD3gJ7ENvA-LJ9PmFhSGX_pG3gHtO",
"name": "Megaton LP oAPM-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQDE-uE6COUoPjIDS_Jl8P0iE945W0DB9XwdMr5b4nxoIEMX",
"name": "Megaton LP oORBS-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQBWRziIshSR-rGe-3tKzeN1UeHU7y9RGewVrZ7oMrgdXAKU",
"name": "Megaton LP oUSDC-oWEMIX$",
"symbol": "MGLP"
},
{
"address": "EQA7fKcmzBdDKP8F7cI7SfDo48V9V7giHF-WW2ayQC2ExhjN",
"name": "Megaton LP oETH-oUSDC",
"symbol": "MGLP"
},
{
"address": "EQCi8rx-uLcg7NFHIa3DA55R3j2VAzrNI3FpMncV5xaMl9ld",
"name": "Megaton LP WTON-oKLAY",
"symbol": "MGLP"
},
{
"address": "EQCddpFoUi7A9YpUGDRy0e-D9XUhJu_c6NEpRMZApJwzy0wm",
"name": "Megaton LP oKSP-WTON",
"symbol": "MGLP"
},
{
"address": "EQBogXswvRWZp7fJ1PqVakoK-Tb5NbxT1yBRwoAweGJeba_o",
"name": "Megaton LP WTON-oAZIT",
"symbol": "MGLP"
},
{
"address": "EQBzQP2_ymgiepSGlfixNQCVckMMk23vWv1z0IQU3WCtJaPs",
"name": "Megaton LP WTON-oORC",
"symbol": "MGLP"
},
{
"address": "EQAACdyfS_QTk_fFqIrHTm8PBf5w-bizY0LgkkbPiHtppLkE",
"name": "Megaton LP oWEMIX-oWEMIX$",
"symbol": "MGLP"
},
{
"address": "EQCoTT8jnkUDK83vdPgWkHcnJgdd3tf08lYhl5_Nq2hn6M8_",
"name": "Megaton LP WTON-oMESH",
"symbol": "MGLP"
},
{
"address": "EQChnYNwPfu4SjOPcITSoqCEy-pEdj-8H7YfTilM_l0ikBLI",
"name": "Megaton LP oWBTC-WTON",
"symbol": "MGLP"
},
{
"address": "EQCJZrZxiA80zXCZTERCHW3BuQcOB3cl5Z3pG2anL7EM505O",
"name": "Megaton LP oUSDC-oUSDT",
"symbol": "MGLP"
},
{
"address": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR",
"name": "Orbit Bridge Ton Dai",
"symbol": "oDAI"
},
{
"address": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-",
"name": "Orbit Bridge Ton Ethereum",
"symbol": "oETH"
},
{
"address": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4",
"name": "Orbit Bridge Ton USD Coin",
"symbol": "oUSDC"
},
{
"address": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi",
"name": "Orbit Bridge Ton USD Tether",
"symbol": "oUSDT"
},
{
"address": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx",
"name": "Orbit Bridge Ton Orbs",
"symbol": "oORBS"
},
{
"address": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB",
"name": "Orbit Bridge Ton Wrapped BTC",
"symbol": "oWBTC"
},
{
"address": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD",
"name": "Orbit Bridge Ton Orbit Chain",
"symbol": "oORC"
},
{
"address": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR",
"name": "Orbit Bridge Ton Klay",
"symbol": "oKLAY"
},
{
"address": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L",
"name": "Orbit Bridge Ton KlaySwap Protocol",
"symbol": "oKSP"
},
{
"address": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9",
"name": "Orbit Bridge Ton apM Coin",
"symbol": "oAPM"
},
{
"address": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP",
"name": "Orbit Bridge Ton Kai Token",
"symbol": "KAI"
},
{
"address": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh",
"name": "Orbit Bridge Ton Klaymeta Token",
"symbol": "META"
},
{
"address": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc",
"name": "Orbit Bridge Ton GemHUB",
"symbol": "oGHUB"
},
{
"address": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR",
"name": "Orbit Bridge Ton Azit",
"symbol": "oAZIT"
},
{
"address": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad",
"name": "Orbit Bridge Ton GALAXIA",
"symbol": "oGXA"
},
{
"address": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu",
"name": "Orbit Bridge Ton MOOI",
"symbol": "oMOOI"
},
{
"address": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX",
"name": "Orbit Bridge Ton Matic Token",
"symbol": "oMATIC"
},
{
"address": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5",
"name": "Orbit Bridge Ton Meshswap Protocol",
"symbol": "oMESH"
},
{
"address": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ",
"name": "Orbit Bridge Ton WEMIX",
"symbol": "oWEMIX"
},
{
"address": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX",
"name": "Orbit Bridge Ton WEMIX$",
"symbol": "oWEMIX$"
},
{
"address": "0:fc46cab89e8f5c610c764e0d30a7d602adc38db97e62a3cb0d669b5bbc10888d",
"description": "This jetton was given to the first people who arrived on Mars. Game TONPlanets.com",
"image": "https://nft.tonplanets.com/jettons/pioneer/pioneer.png",
"max_supply": 50,
"name": "Pioneer",
"social": [
"https://t.me/TONPlanets",
"https://t.me/TONPlanetsBot",
"https://t.me/TONPlanetsEn"
],
"symbol": "PIO",
"websites": [
"https://mars.tonplanets.com",
"https://tonplanets.com"
]
},
{
"address": "0:c70bb7980ace53aba60315dfd4863f7ef75fa4a6fe3c126c71a1cc2beca5d104",
"description": "The best pterodactyls on the TON network",
"max_supply": 700000,
"name": "Pterodactyls",
"social": [
"https://t.me/TONsaurs"
],
"symbol": "PTERO"
},
{
"address": "0:c0832d7170d83468595ee78f2689ab1274b0a42f59c37aa48b3fb3ee6b8c2afa",
"description": "Red company Coin on the Legendary Blockchain.",
"name": "Red Coin",
"social": [
"https://t.me/RedList_NFT"
],
"symbol": "REDC",
"websites": [
"https://redcompany.team/"
]
},
{
"address": "0:65aac9b5e380eae928db3c8e238d9bc0d61a9320fdc2bc7a2f6c87d6fedf9208",
"description": "SCALE is a utility token that will be used to support all independent developers.",
"image": "ipfs://QmSMiXsZYMefwrTQ3P6HnDQaCpecS4EWLpgKK5EX1G8iA8",
"max_supply": 21000000,
"name": "Scaleton",
"social": [
"https://t.me/Scaleton",
"https://twitter.com/ScaletonCo"
],
"symbol": "SCALE",
"websites": [
"https://scaleton.io"
]
},
{
"address": "0:e976693d0f20fc275c3c719579478d752a2dfcb779fec235eb908043ffe18367",
"description": "Private peer to peer jetton",
"image": "https://traptor.github.io/sibton/sibton_logo.png",
"max_supply": 1000000000,
"name": "Siberian TON",
"social": [
"https://t.me/sibton_channel"
],
"symbol": "SIBT"
},
{
"address": "0:33326656a36ca8e326cf50cbc881f150ddae777f85944e37f6f8b13ba09c4224",
"name": "ELKITON",
"symbol": "SNEG"
},
{
"address": "0:e506a188dabe388e99e161f12225a854f1bed9a28de7a35de5e90f47f802096c",
"description": "The one and only super best cool nice unbelievable and amazing crypto token in the world. All holder are literally gods.",
"name": "SantaCoin",
"social": [
"https://vk.com/vkcoinswap"
],
"symbol": "SNT"
},
{
"address": "0:1d49014dc8f09b4f5e1028f059ce94247f8302e40bd8b223586689729b3adc90",
"description": "Look for Stalin inside yourself.",
"image": "https://i.ibb.co/WKPDfPY/Stalin-IVS.png",
"max_supply": 10000000,
"name": "Stalin",
"social": [
"https://t.me/Stalin_IVS",
"https://t.me/Stalin_chat"
],
"symbol": "IVS"
},
{
"address": "0:2091ce587c00351dcef941771926b2f5e65dcb5e842bd0268ae2ca9ca474455c",
"name": "TON Svet",
"symbol": "Svet"
},
{
"address": "0:301ff3049a811b0ff00651d9e85b0a6f48171cb71fe36c30ae07467c7576eb01",
"description": "Ton Earth universe coin on the Legendary Blockchain.",
"name": "Ton Earth coin",
"social": [
"https://t.me/TONEarth"
],
"symbol": "TEC"
},
{
"address": "0:2f0df5851b4a185f5f63c0d0cd0412f5aca353f577da18ff47c936f99dbd849a",
"coingecko": "https://www.coingecko.com/en/coins/tegro",
"coinmarketcap": "https://coinmarketcap.com/currencies/tgr/",
"description": "Cross-platform payment token on the TON blockchain.",
"max_supply": 50000000,
"name": "Tegro",
"social": [
"https://t.me/TgrTon",
"https://twitter.com/tgrtoken"
],
"symbol": "TGR",
"websites": [
"https://tegro.io",
"https://tegro.money"
]
},
{
"address": "0:571c20dd040e9581ddb38bec91a4593c9b4e2f9f744e59853d19165fa6fae29b",
"description": "Official Jetton of TON Island project.",
"max_supply": 1000000,
"name": "TON Island Coin",
"social": [
"https://t.me/ton_island"
],
"symbol": "TIC",
"websites": [
"https://tonis.land"
]
},
{
"address": "0:7e6a33328b9f9628880e1e76ce180a5f7245066e5ead0e4dd0b7c3ca99bfb12c",
"name": "TonexCoin",
"symbol": "TNX"
},
{
"address": "EQA-UBS2T8Q-ZBrwKEqEBreRDNi2TKM8skw7RiMwW7DspGfA",
"name": "Bishop pixel"
},
{
"address": "EQD-2uwZEORXVITPPuiQYCN-DQd9m7IQzPjvYpyP5XOW2l6d",
"name": "Blue Steel pixel"
},
{
"address": "EQCulCh6QSvGs8xz-7bA1X6uv3wk6NJKwJIxOlUAcTei-cjj",
"name": "Cerulean board"
},
{
"address": "EQA925MynDj4d5fO6n_CTR9NqADUo0ZeRiLRK3tYNjB1fhMN",
"name": "Knight pixel"
},
{
"address": "EQDgnxzsi2yl3P50v9cl0PIzuTXtm2YsVSn2ugwDRlBJWlDu",
"name": "Magenta boards"
},
{
"address": "EQC5x7CRPWwXbeV5_toZiqD8wOMA7OVDB0Epmp0NGGtKckFH",
"name": "Niagara board"
},
{
"address": "EQB7R7t8aFIdSGEmw_Owvsx6NVqIFySJAgVMasa9zJis37Nr",
"name": "Pawn pixel"
},
{
"address": "EQDdlhKxW1DfHNz_6GnhWtxBNvvBNL8kkdbE-bVii5lhJtp5",
"name": "Purple pixel"
},
{
"address": "EQAgMKk0_kpZ46eOvRlNyHPNoPOb8-f-GIWEkaYDXC7ybx_5",
"name": "Queen pixel"
},
{
"address": "EQBV5F1Y2cxiTJfXLwXgOmhqvOz97GBnsJgXhMEhOfjPHQ74",
"name": "Rook pixel"
},
{
"address": "EQCNmLIPO1ph78H3RzVCiVSPkmNB-81SzqPIXafh9Vcdu-Wu",
"name": "Skyblue pixel"
},
{
"address": "EQC7gZnG7ej82MlRyn2mNkYx7SU1tZTrJBV0do93BKWeAXO5",
"name": "TON Chess pass"
},
{
"address": "EQCSCgcZx8betI95FrZFGTUatV6yibtfwS9p1q67oeMS0ER5",
"name": "Turquoise board"
},
{
"address": "EQAziDk-gxgPzjYr5cJkfyDyaZrL7jfY0l7aYsyI2Kdoh-nW",
"name": "Turquoise pixel"
},
{
"address": "0:6d50a3db84004f62d96d88a580e78eece19849e70647bd55757b27d5eec1321a",
"description": "Crypto exchanger token Wallet Exchanger, based on the blockchain The Open Network",
"max_supply": 1000000,
"name": "Wallet Exchanger",
"social": [
"https://t.me/WalletExplorerNews"
],
"symbol": "WEX",
"websites": [
"https://t.me/WalletExplorerBot"
]
},
{
"address": "0:d0a1ce4cdc187c79615ea618bd6c29617af7a56d966f5a192a768f345ee63fd2",
"name": "WTON",
"symbol": "WTON"
},
{
"address": "EQBNQYi2Ody8nw4XVUFlZT2f4DZ15UprQZ8Ijq09ZmLbpqkR",
"name": "Green Spaceship"
},
{
"address": "EQDMh0BG35Tzt0M1W2uBoCfC-_c0Wco84OjiQ4lyD9MNHMS3",
"name": "Orange Spaceship"
},
{
"address": "0:70429775a9a9dda8df354ea7f5bb3e6660cfc8e01e3bf4721d2867a9e0ca75cc",
"name": "Bonus Pack"
},
{
"address": "0:f3ca8c7f043c9509df61f7d6d8653e489850045d36b771b6953fa2e408f7bede",
"name": "Crystals Pack"
},
{
"address": "0:55479f0e0fdedf4a9fe13c1ae4bf869f9a25052e8460ebac75e681fc93ce6e74",
"name": "Ore Pack"
},
{
"address": "0:8285177f4665d4e37dba1211b2eb6a91cc062e43559ac2374ab88270c1f6efc4",
"name": "Power Charges Pack"
},
{
"address": "0:5da15307345b3357d883fef91f27f1fe42f25cd88bf68a48ac633ccf94296dfa",
"name": "Premium Pack"
},
{
"address": "0:3fbaf496183237094e57cc84257d963263365a672c274c479bd6a6f6547bf76c",
"name": "Starter Pack"
},
{
"address": "0:a99bee2de7a85886fa1213ee1e88334e32dde3741ef7cf2f16b9d9fc7c4df4ea",
"name": "Starter Pack presale jetton",
"symbol": "EFZJ"
},
{
"address": "0:4961550ca4720cb7c21c327a73e5dfe3013e21eb8fc1eb0242aecf1a8352846c",
"name": "Supply Pack"
},
{
"address": "EQB55QCqzim_vT0higE9dJ_avO208otVWIljhaOL9n2JxI3L",
"name": "Ore Mine Epic lvl 1"
},
{
"address": "EQAKoJTPR47T8fHCdEQ3Lhfmrax0RkCzwFtUrRYSnPS3-QTE",
"name": "Ore Mine Epic lvl 2"
},
{
"address": "EQBGB6LJsSMwYakBIJ5Z_ZQeNf1WUEE_erJOrNqWScYmsgYq",
"name": "Ore Mine Epic lvl 3"
},
{
"address": "EQDDolpIYebO42oPpd1TeQOu4hUHBtcFoPGpqG6jgq4p6VNb",
"name": "Ore Mine Rare lvl 1"
},
{
"address": "EQBIYbQJC-8xNcZH7esvdR2DdIQaL1kQaadhjmWK0YnYrs5W",
"name": "Ore Mine Rare lvl 2"
},
{