forked from LedgerHQ/ledger-live-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cryptoassets.md
5921 lines (5919 loc) · 692 KB
/
cryptoassets.md
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
<!-- this file is generated by generate-cryptoassets-md.test.js -->
# Supported crypto assets
## Crypto currencies (97)
| name | ticker | supported on Ledger Live? | ledger id |
|--|--|--|--|
| Algorand | ALGO | YES | algorand |
| Binance Smart Chain | BNB | YES | bsc |
| Bitcoin | BTC | YES | bitcoin |
| Bitcoin Cash | BCH | YES | bitcoin_cash |
| Bitcoin Gold | BTG | YES | bitcoin_gold |
| Cosmos | ATOM | YES | cosmos |
| Dash | DASH | YES | dash |
| Decred | DCR | YES | decred |
| DigiByte | DGB | YES | digibyte |
| Dogecoin | DOGE | YES | dogecoin |
| Ethereum | ETH | YES | ethereum |
| Ethereum Classic | ETC | YES | ethereum_classic |
| Horizen | ZEN | YES | zencash |
| Komodo | KMD | YES | komodo |
| Litecoin | LTC | YES | litecoin |
| Peercoin | PPC | YES | peercoin |
| PivX | PIVX | YES | pivx |
| Polkadot | DOT | YES | polkadot |
| Qtum | QTUM | YES | qtum |
| Stakenet | XSN | YES | stakenet |
| Stealth | XST | YES | stealthcoin |
| Stellar | XLM | YES | stellar |
| Tezos | XTZ | YES | tezos |
| Tron | TRX | YES | tron |
| Vertcoin | VTC | YES | vertcoin |
| Viacoin | VIA | YES | viacoin |
| XRP | XRP | YES | ripple |
| Zcash | ZEC | YES | zcash |
| Aion | AION | NO | aion |
| Akroma | AKA | NO | akroma |
| Ark | ARK | NO | ark |
| Atheios | ATH | NO | atheios |
| Banano | BANANO | NO | banano |
| Bitcoin Private | BTCP | NO | bitcoin_private |
| Callisto | CLO | NO | callisto |
| Cardano | ADA | NO | cardano |
| Crypto.org Coin | CRO | NO | crypto_org |
| DEXON | DXN | NO | dexon |
| EOS | EOS | NO | eos |
| Elastos | ELA | NO | elastos |
| Ellaism | ELLA | NO | ellaism |
| Elrond | EGLD | NO | elrond |
| EnergyWebChain | EWT | NO | energywebchain |
| Ether1 | ETHO | NO | ether1 |
| EtherGem | EGEM | NO | ethergem |
| Ethersocial | ESN | NO | ethersocial |
| Expanse | EXP | NO | expanse |
| FIC | FIC | NO | fic |
| Factom | FCT | NO | factom |
| Flow | FLOW | NO | flow |
| GameCredits | GAME | NO | game_credits |
| GoChain | GO | NO | gochain |
| Groestlcoin | GRS | NO | groestcoin |
| Hedera | HBAR | NO | hedera |
| High Performance Blockchain | HPB | NO | hpb |
| Hycon | HYC | NO | hycon |
| ICON | ICX | NO | icon |
| IOTA | MIOTA | NO | iota |
| IOV | IOV | NO | iov |
| Kin | KIN | NO | kin |
| Kusama | KSM | NO | kusama |
| LBRY | LBRY | NO | LBRY |
| MIX Blockchain | MIX | NO | mix |
| Monero | XMR | NO | monero |
| Musicoin | MUSIC | NO | musicoin |
| NEAR | NEAR | NO | near |
| NEM | XEM | NO | nem |
| NOS | NOS | NO | nos |
| Nano | NANO | NO | nano |
| Neo | NEO | NO | neo |
| Nimiq | NIM | NO | nimiq |
| Nix | NIX | NO | nix |
| Ontology | ONT | NO | ontology |
| POA | POA | NO | poa |
| Particl | PART | NO | particl |
| Pirl | PIRL | NO | pirl |
| QRL | QRL | NO | qrl |
| REOSC | REOSC | NO | reosc |
| Ravencoin | RVN | NO | ravencoin |
| Resistance | RES | NO | resistance |
| Rise | RISE | NO | rise |
| Solana | SOL | NO | solana |
| Songbird | SGB | NO | songbird |
| Stratis | STRAT | NO | stratis |
| Thundercore | TT | NO | thundercore |
| TomoChain | TOMO | NO | tomo |
| Ubiq | UBQ | NO | ubiq |
| VeChain | VET | NO | vechain |
| Wanchain | WAN | NO | wanchain |
| Waves | WAVES | NO | waves |
| ZClassic | ZCL | NO | zclassic |
| ZCoin | XZC | NO | zcoin |
| Zilliqa | ZIL | NO | zilliqa |
| filecoin | FIL | NO | filecoin |
| lisk | LSK | NO | lisk |
| stacks | STX | NO | stacks |
| æternity | AE | NO | aeternity |
## Tokens (5814)
| parent currency | ticker | contract | name | status | ledger id |
|--|--|--|--|--|--|
| Algorand | ARCC | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Asia Reserve Currency Coin | countervalues disabled | algorand/asa/163650 |
| Algorand | VAL 1 | GNRGAOG65JPGWVIK2Q45R4XLLVIMF7AWVBK5TEBGWRRAZ3EHPQIN44EGFA | Credit Opportunities Fund I | countervalues disabled | algorand/asa/2838934 |
| Algorand | HDL | K3NSXYMHPRCK7PMYT3QUQXUGPZJ4MKWJXW2HJRYPVMQUMKJAOJEIEO4HK4 | HEADLINE | countervalues disabled | algorand/asa/137594422 |
| Algorand | RHO 1 | GNRGAOG65JPGWVIK2Q45R4XLLVIMF7AWVBK5TEBGWRRAZ3EHPQIN44EGFA | Liquid Mining Fund I | countervalues disabled | algorand/asa/2836760 |
| Algorand | MESX | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | MESE Index Fund | countervalues disabled | algorand/asa/438831 |
| Algorand | USD-MESE | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | MESE USD Exchange Token | countervalues disabled | algorand/asa/438828 |
| Algorand | MCAU | 26LYTJVUJZZ2DGPETGJY7TGQABH6KLLHDCULLVQKUGCL7BQAWT3N74VZME | Meld Gold | countervalues disabled | algorand/asa/6547014 |
| Algorand | MCAG | 26LYTJVUJZZ2DGPETGJY7TGQABH6KLLHDCULLVQKUGCL7BQAWT3N74VZME | Meld Silver | countervalues disabled | algorand/asa/6587142 |
| Algorand | M-AMZN | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Amazon | countervalues disabled | algorand/asa/438833 |
| Algorand | M-AAPL | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Apple | countervalues disabled | algorand/asa/438839 |
| Algorand | M-GOOGL | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Google | countervalues disabled | algorand/asa/438838 |
| Algorand | M-MSFT | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Microsoft | countervalues disabled | algorand/asa/438832 |
| Algorand | M-NFLX | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Netflix | countervalues disabled | algorand/asa/438837 |
| Algorand | M-TSLA | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Tesla | countervalues disabled | algorand/asa/438840 |
| Algorand | M-TWTR | MESEJMPXKL7YUWEQGNRCKSLMQDKHOHWIZ3RBWP7BV4JDMUJXFUVQZWUBJM | Micro-Twitter | countervalues disabled | algorand/asa/438836 |
| Algorand | PLANETS | BY6UJNZ2MD3AZC2K2KQJW7W7OWPGGIBNOSZGFZQ6L426BTGO5G2FOI6VPI | PLANET | countervalues disabled | algorand/asa/27165954 |
| Algorand | RST | GNRGAOG65JPGWVIK2Q45R4XLLVIMF7AWVBK5TEBGWRRAZ3EHPQIN44EGFA | Realio Security Token | countervalues disabled | algorand/asa/2725935 |
| Algorand | RIO | GNRGAOG65JPGWVIK2Q45R4XLLVIMF7AWVBK5TEBGWRRAZ3EHPQIN44EGFA | Realio Token | countervalues disabled | algorand/asa/2751733 |
| Algorand | USDT | XIU7HGGAJ3QOTATPDSIIHPFVKMICXKHMOR2FJKHTVLII4FAOA3CYZQDLG4 | Tether USDt | | algorand/asa/312769 |
| Algorand | USDC | 2UEQTE5QDNXPI7M3TU44G6SYKLFWLPQO7EBZM7K7MHMQQMFI4QJPLHQFHM | USDC | | algorand/asa/31566704 |
| Algorand | RUSD | GNRGAOG65JPGWVIK2Q45R4XLLVIMF7AWVBK5TEBGWRRAZ3EHPQIN44EGFA | realioUSD | countervalues disabled | algorand/asa/2757561 |
| Binance Smart Chain | 1INCH | 0x111111111117dC0aa78b770fA6A738034120C302 | 1INCH Token | countervalues disabled | bsc/bep20/1inch_token |
| Binance Smart Chain | ACS | 0x4197C6EF3879a08cD51e5560da5064B773aa1d29 | ACryptoS | countervalues disabled | bsc/bep20/acryptos |
| Binance Smart Chain | ANDX | 0xb63A911AE7Dc40510E7Bb552b7Fcb94c198bBE2D | ARRANO | countervalues disabled | bsc/bep20/arrano |
| Binance Smart Chain | AUTO | 0xa184088a740c695E156F91f5cC086a06bb78b827 | AUTOv2 | countervalues disabled | bsc/bep20/autov2 |
| Binance Smart Chain | TLM | 0x2222227E22102Fe3322098e4CBfE18cFebD57c95 | Alien Worlds Trilium | countervalues disabled | bsc/bep20/alien_worlds_trilium |
| Binance Smart Chain | ALPACA | 0x8F0528cE5eF7B51152A59745bEfDD91D97091d2F | AlpacaToken | countervalues disabled | bsc/bep20/alpacatoken |
| Binance Smart Chain | ALPHA | 0xa1faa113cbE53436Df28FF0aEe54275c13B40975 | AlphaToken | countervalues disabled | bsc/bep20/alphatoken |
| Binance Smart Chain | ANKR | 0xf307910A4c7bbc79691fD374889b36d8531B08e3 | Ankr | countervalues disabled | bsc/bep20/ankr |
| Binance Smart Chain | MATTER | 0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F | Antimatter.Finance Mapping Token | countervalues disabled | bsc/bep20/antimatter.finance_mapping_token |
| Binance Smart Chain | ANY | 0xF68C9Df95a18B2A5a5fa1124d79EEEffBaD0B6Fa | Anyswap-BEP20 | countervalues disabled | bsc/bep20/anyswap-bep20 |
| Binance Smart Chain | ARGON | 0x851F7a700c5d67DB59612b871338a85526752c25 | ArgonToken | countervalues disabled | bsc/bep20/argontoken |
| Binance Smart Chain | ATA | 0xA2120b9e674d3fC3875f415A7DF52e382F141225 | Automata | countervalues disabled | bsc/bep20/automata |
| Binance Smart Chain | BELT | 0xE0e514c71282b6f4e823703a39374Cf58dc3eA4f | BELT Token | countervalues disabled | bsc/bep20/belt_token |
| Binance Smart Chain | BGOV | 0xf8E026dC4C0860771f691EcFFBbdfe2fa51c77CF | BGOV Token | countervalues disabled | bsc/bep20/bgov_token |
| Binance Smart Chain | BIDR | 0x9A2f5556e9A637e8fBcE886d8e3cf8b316a1D8a2 | BIDR BEP20 | countervalues disabled | bsc/bep20/bidr_bep20 |
| Binance Smart Chain | KOGE | 0xe6DF05CE8C8301223373CF5B969AFCb1498c5528 | BNB48 Club Token | countervalues disabled | bsc/bep20/bnb48_club_token |
| Binance Smart Chain | BCFX | 0x045c4324039dA91c52C55DF5D785385Aab073DcF | BSC Conflux | countervalues disabled | bsc/bep20/bsc_conflux |
| Binance Smart Chain | BSCX | 0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587 | BSCX | countervalues disabled | bsc/bep20/bscx |
| Binance Smart Chain | BUX | 0x211FfbE424b90e25a15531ca322adF1559779E45 | BUX Token | countervalues disabled | bsc/bep20/bux_token |
| Binance Smart Chain | BAKE | 0xE02dF9e3e622DeBdD69fb838bB799E3F168902c5 | BakeryToken | countervalues disabled | bsc/bep20/bakerytoken |
| Binance Smart Chain | BTD | 0xD1102332a213E21faF78B69C03572031F3552c33 | Bat True Dollar | countervalues disabled | bsc/bep20/bat_true_dollar |
| Binance Smart Chain | BTS | 0xc2e1acef50aE55661855E8dcB72adB182A3cC259 | Bat True Share | countervalues disabled | bsc/bep20/bat_true_share |
| Binance Smart Chain | BRY | 0xf859Bf77cBe8699013d6Dbc7C2b926Aaf307F830 | Berry Tributes | countervalues disabled | bsc/bep20/berry_tributes |
| Binance Smart Chain | BHC | 0x6fd7c98458a943f469E1Cf4eA85B173f5Cd342F4 | Billion Happiness | countervalues disabled | bsc/bep20/billion_happiness |
| Binance Smart Chain | BETH | 0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B | Binance Beacon ETH | countervalues disabled | bsc/bep20/binance_beacon_eth |
| Binance Smart Chain | BSC-USD | 0x55d398326f99059fF775485246999027B3197955 | Binance-Peg BSC-USD | countervalues disabled | bsc/bep20/binance-peg_bsc-usd |
| Binance Smart Chain | BTCB | 0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c | Binance-Peg BTCB Token | countervalues disabled | bsc/bep20/binance-peg_btcb_token |
| Binance Smart Chain | BUSD | 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56 | Binance-Peg BUSD Token | countervalues disabled | bsc/bep20/binance-peg_busd_token |
| Binance Smart Chain | BAND | 0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18 | Binance-Peg Band Protocol Token | countervalues disabled | bsc/bep20/binance-peg_band_protocol_token |
| Binance Smart Chain | BAT | 0x101d82428437127bF1608F699CD651e6Abf9766E | Binance-Peg Basic Attention Token | countervalues disabled | bsc/bep20/binance-peg_basic_attention_token |
| Binance Smart Chain | BCHA | 0xD475c9c934DCD6d5f1cAC530585aa5ba14185b92 | Binance-Peg Bitcoin Cash ABC | countervalues disabled | bsc/bep20/binance-peg_bitcoin_cash_abc |
| Binance Smart Chain | BCH | 0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf | Binance-Peg Bitcoin Cash Token | countervalues disabled | bsc/bep20/binance-peg_bitcoin_cash_token |
| Binance Smart Chain | ADA | 0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47 | Binance-Peg Cardano Token | countervalues disabled | bsc/bep20/binance-peg_cardano_token |
| Binance Smart Chain | LINK | 0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD | Binance-Peg ChainLink Token | countervalues disabled | bsc/bep20/binance-peg_chainlink_token |
| Binance Smart Chain | COMP | 0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8 | Binance-Peg Compound Coin | countervalues disabled | bsc/bep20/binance-peg_compound_coin |
| Binance Smart Chain | ATOM | 0x0Eb3a705fc54725037CC9e008bDede697f62F335 | Binance-Peg Cosmos Token | countervalues disabled | bsc/bep20/binance-peg_cosmos_token |
| Binance Smart Chain | DAI | 0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3 | Binance-Peg Dai Token | countervalues disabled | bsc/bep20/binance-peg_dai_token |
| Binance Smart Chain | DOGE | 0xbA2aE424d960c26247Dd6c32edC70B295c744C43 | Binance-Peg Dogecoin | countervalues disabled | bsc/bep20/binance-peg_dogecoin |
| Binance Smart Chain | ELF | 0xa3f020a5C92e15be13CAF0Ee5C95cF79585EeCC9 | Binance-Peg ELF Token | countervalues disabled | bsc/bep20/binance-peg_elf_token |
| Binance Smart Chain | EOS | 0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6 | Binance-Peg EOS Token | countervalues disabled | bsc/bep20/binance-peg_eos_token |
| Binance Smart Chain | ETC | 0x3d6545b08693daE087E957cb1180ee38B9e3c25E | Binance-Peg Ethereum Classic | countervalues disabled | bsc/bep20/binance-peg_ethereum_classic |
| Binance Smart Chain | ETH | 0x2170Ed0880ac9A755fd29B2688956BD959F933F8 | Binance-Peg Ethereum Token | countervalues disabled | bsc/bep20/binance-peg_ethereum_token |
| Binance Smart Chain | IOTX | 0x9678E42ceBEb63F23197D726B29b1CB20d0064E5 | Binance-Peg IoTeX Network | countervalues disabled | bsc/bep20/binance-peg_iotex_network |
| Binance Smart Chain | LTC | 0x4338665CBB7B2485A8855A139b75D5e34AB0DB94 | Binance-Peg Litecoin Token | countervalues disabled | bsc/bep20/binance-peg_litecoin_token |
| Binance Smart Chain | MKR | 0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350 | Binance-Peg Maker | countervalues disabled | bsc/bep20/binance-peg_maker |
| Binance Smart Chain | NEAR | 0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63 | Binance-Peg NEAR Protocol | countervalues disabled | bsc/bep20/binance-peg_near_protocol |
| Binance Smart Chain | ONT | 0xFd7B3A77848f1C2D67E05E54d78d174a0C850335 | Binance-Peg Ontology Token | countervalues disabled | bsc/bep20/binance-peg_ontology_token |
| Binance Smart Chain | PAXG | 0x7950865a9140cB519342433146Ed5b40c6F210f7 | Binance-Peg PAX Gold | countervalues disabled | bsc/bep20/binance-peg_pax_gold |
| Binance Smart Chain | PAX | 0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094 | Binance-Peg Paxos Standard | countervalues disabled | bsc/bep20/binance-peg_paxos_standard |
| Binance Smart Chain | DOT | 0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402 | Binance-Peg Polkadot Token | countervalues disabled | bsc/bep20/binance-peg_polkadot_token |
| Binance Smart Chain | SNX | 0x9Ac983826058b8a9C7Aa1C9171441191232E8404 | Binance-Peg Synthetix Network Token | countervalues disabled | bsc/bep20/binance-peg_synthetix_network_token |
| Binance Smart Chain | XTZ | 0x16939ef78684453bfDFb47825F8a5F714f12623a | Binance-Peg Tezos Token | countervalues disabled | bsc/bep20/binance-peg_tezos_token |
| Binance Smart Chain | TCT | 0xCA0a9Df6a8cAD800046C1DDc5755810718b65C44 | Binance-Peg Token Club | countervalues disabled | bsc/bep20/binance-peg_token_club |
| Binance Smart Chain | USDC | 0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d | Binance-Peg USD Coin | countervalues disabled | bsc/bep20/binance-peg_usd_coin |
| Binance Smart Chain | UNI | 0xBf5140A22578168FD562DCcF235E5D43A02ce9B1 | Binance-Peg Uniswap | countervalues disabled | bsc/bep20/binance-peg_uniswap |
| Binance Smart Chain | XRP | 0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE | Binance-Peg XRP Token | countervalues disabled | bsc/bep20/binance-peg_xrp_token |
| Binance Smart Chain | YFII | 0x7F70642d88cf1C4a3a7abb072B53B929b653edA5 | Binance-Peg YFII.finance Token | countervalues disabled | bsc/bep20/binance-peg_yfii.finance_token |
| Binance Smart Chain | ZEC | 0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb | Binance-Peg Zcash Token | countervalues disabled | bsc/bep20/binance-peg_zcash_token |
| Binance Smart Chain | YFI | 0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e | Binance-Peg yearn.finance | countervalues disabled | bsc/bep20/binance-peg_yearn.finance |
| Binance Smart Chain | BTT | 0x8595F9dA7b868b1822194fAEd312235E43007b49 | BitTorrent | countervalues disabled | bsc/bep20/bittorrent |
| Binance Smart Chain | BUNNY | 0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51 | Bunny Token | countervalues disabled | bsc/bep20/bunny_token |
| Binance Smart Chain | BURGER | 0xAe9269f27437f0fcBC232d39Ec814844a51d6b8f | Burger Swap | countervalues disabled | bsc/bep20/burger_swap |
| Binance Smart Chain | CAR | 0x176a25637e5078519230A4d80A7A47350940264a | CAR | countervalues disabled | bsc/bep20/car |
| Binance Smart Chain | CAN | 0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56 | CanYaCoin | countervalues disabled | bsc/bep20/canyacoin |
| Binance Smart Chain | CTSI | 0x8dA443F84fEA710266C8eB6bC34B71702d033EF2 | Cartesi Token | countervalues disabled | bsc/bep20/cartesi_token |
| Binance Smart Chain | CTK | 0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929 | CertiK Token | countervalues disabled | bsc/bep20/certik_token |
| Binance Smart Chain | CHI | 0x0000000000004946c0e9F43F4Dee607b0eF1fA1c | Chi Gastoken by 1inch | countervalues disabled | bsc/bep20/chi_gastoken_by_1inch |
| Binance Smart Chain | CTI | 0x3f670f65B9Ce89b82e82121fD68c340ac22C08D6 | ClinTex | countervalues disabled | bsc/bep20/clintex |
| Binance Smart Chain | COMP | 0xc00e94Cb662C3520282E6f5717214004A7f26888 | Compound | delisted, countervalues disabled | bsc/bep20/compound_ |
| Binance Smart Chain | COS | 0x96Dd399F9c3AFda1F194182F71600F1B65946501 | Contentos | countervalues disabled | bsc/bep20/contentos |
| Binance Smart Chain | CREAM | 0xd4CB328A82bDf5f03eB737f37Fa6B370aef3e888 | Cream | countervalues disabled | bsc/bep20/cream |
| Binance Smart Chain | CRADA | 0x81C15D3E956e55e77E1f3F257f0A65Bd2725fC55 | Cream Cardano Token | countervalues disabled | bsc/bep20/cream_cardano_token |
| Binance Smart Chain | CRP | 0x1Ad8D89074AFA789A027B9a31d0bd14e254711D0 | Cross Finance | countervalues disabled | bsc/bep20/cross_finance |
| Binance Smart Chain | CBIX | 0x34681C1035F97E1eDcccec5f142e02FF81a3A230 | Cubiex | countervalues disabled | bsc/bep20/cubiex |
| Binance Smart Chain | XCUR | 0x708C671Aa997da536869B50B6C67FA0C32Ce80B2 | Curate on BSC | countervalues disabled | bsc/bep20/curate_on_bsc |
| Binance Smart Chain | D100 | 0x9d8AAC497A4b8fe697dd63101d793F0C6A6EEbB6 | DEFI 100 | countervalues disabled | bsc/bep20/defi_100 |
| Binance Smart Chain | DODO | 0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2 | DODO bird | countervalues disabled | bsc/bep20/dodo_bird |
| Binance Smart Chain | DOGGY | 0x74926B3d118a63F6958922d3DC05eB9C6E6E00c6 | DOGGY | countervalues disabled | bsc/bep20/doggy |
| Binance Smart Chain | DOS | 0xDc0f0a5719c39764b011eDd02811BD228296887C | DOS Network Token BEP20 | countervalues disabled | bsc/bep20/dos_network_token_bep20 |
| Binance Smart Chain | DFY | 0xD98560689C6e748DC37bc410B4d3096B1aA3D8C2 | DeFi For You. | countervalues disabled | bsc/bep20/defi_for_you |
| Binance Smart Chain | DITTO | 0x233d91A0713155003fc4DcE0AFa871b508B3B715 | Ditto | countervalues disabled | bsc/bep20/ditto |
| Binance Smart Chain | DDIM | 0xc9132C76060F6b319764Ea075973a650A1a53bC9 | DuckDaoDime | countervalues disabled | bsc/bep20/duckdaodime |
| Binance Smart Chain | EZ | 0x5512014efa6Cd57764Fa743756F7a6Ce3358cC83 | Easy V2 | countervalues disabled | bsc/bep20/easy_v2 |
| Binance Smart Chain | ELTB | 0x380291A9A8593B39f123cF39cc1cc47463330b1F | Elite Swap Binance Token | countervalues disabled | bsc/bep20/elite_swap_binance_token |
| Binance Smart Chain | EPS | 0xA7f552078dcC247C2684336020c03648500C6d9F | Ellipsis | countervalues disabled | bsc/bep20/ellipsis |
| Binance Smart Chain | EXF | 0x6306e883493824Ccf606D90E25F68a28e47b98a3 | Extend Finance | countervalues disabled | bsc/bep20/extend_finance |
| Binance Smart Chain | FREE | 0x12e34cDf6A031a10FE241864c32fB03a4FDaD739 | FREE coin BSC | countervalues disabled | bsc/bep20/free_coin_bsc |
| Binance Smart Chain | FNX | 0xdFd9e2A17596caD6295EcFfDa42D9B6F63F7B5d5 | FinNexus | countervalues disabled | bsc/bep20/finnexus |
| Binance Smart Chain | FIRO | 0xd5d0322b6bAb6a762C79f8c81A0B674778E13aeD | Firo | countervalues disabled | bsc/bep20/firo |
| Binance Smart Chain | FSXU | 0xa94b7a842aADB617a0B08fA744e033C6De2f7595 | FlashX Ultra | countervalues disabled | bsc/bep20/flashx_ultra |
| Binance Smart Chain | FRONT | 0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b | Frontier Token | countervalues disabled | bsc/bep20/frontier_token |
| Binance Smart Chain | FUEL | 0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A | Fuel Token | countervalues disabled | bsc/bep20/fuel_token |
| Binance Smart Chain | FUSE | 0x5857c96DaE9cF8511B08Cb07f85753C472D36Ea3 | Fuse Token on BSC | countervalues disabled | bsc/bep20/fuse_token_on_bsc |
| Binance Smart Chain | FUSII | 0x3A50d6daacc82f17A2434184fE904fC45542A734 | Fusible - Fusible.io | countervalues disabled | bsc/bep20/fusible_-_fusible.io |
| Binance Smart Chain | GFCE | 0x94BaBBE728D9411612Ee41b20241a6FA251b26Ce | GFORCE | countervalues disabled | bsc/bep20/gforce |
| Binance Smart Chain | GFX | 0xE4fA3C576c31696322e8d7165C5965d5a1F6A1A5 | GamyFi | countervalues disabled | bsc/bep20/gamyfi |
| Binance Smart Chain | GENA | 0x7f4959528D4C9c7379b3437C7Eea40376fD96B8a | Genta | countervalues disabled | bsc/bep20/genta |
| Binance Smart Chain | GOFI | 0x6B8227A0E18bd35A10849601dB194B24aAB2C8ea | GoSwapp | countervalues disabled | bsc/bep20/goswapp |
| Binance Smart Chain | EGG | 0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6 | Goose Golden Egg | countervalues disabled | bsc/bep20/goose_golden_egg |
| Binance Smart Chain | GUM | 0xc53708664b99DF348dd27C3Ac0759d2DA9c40462 | GourmetGalaxy | countervalues disabled | bsc/bep20/gourmetgalaxy |
| Binance Smart Chain | HAKKA | 0x1D1eb8E8293222e1a29d2C0E4cE6C0Acfd89AaaC | Hakka Finance on xDai on BSC | countervalues disabled | bsc/bep20/hakka_finance_on_xdai_on_bsc |
| Binance Smart Chain | HPS | 0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D | HappinessToken | countervalues disabled | bsc/bep20/happinesstoken |
| Binance Smart Chain | HELMET | 0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8 | Helmet.insure Governance Token | countervalues disabled | bsc/bep20/helmet.insure_governance_token |
| Binance Smart Chain | HOTCROSS | 0x4FA7163E153419E0E1064e418dd7A99314Ed27b6 | Hot Cross Token | countervalues disabled | bsc/bep20/hot_cross_token |
| Binance Smart Chain | HTB | 0x4e840AADD28DA189B9906674B4Afcb77C128d9ea | Hotbit Token | countervalues disabled | bsc/bep20/hotbit_token |
| Binance Smart Chain | INNBC | 0xdF1F0026374d4BCc490BE5E316963Cf6Df2FfF19 | InnovativeBioresearchCoin | countervalues disabled | bsc/bep20/innovativebioresearchcoin |
| Binance Smart Chain | JNTR | 0x5f2Caa99Fc378248Ac02CbbAaC27e3Fa155Ed2C4 | Jointer | countervalues disabled | bsc/bep20/jointer |
| Binance Smart Chain | JULD | 0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea | JulSwap | countervalues disabled | bsc/bep20/julswap |
| Binance Smart Chain | KP3RB | 0x5EA29eEe799aA7cC379FdE5cf370BC24f2Ea7c81 | Keep3r BSC Network | countervalues disabled | bsc/bep20/keep3r_bsc_network |
| Binance Smart Chain | KIND | 0xE3Ba88c38D2789FE58465020CC0FB60b70c10d32 | Kindcow Finance | countervalues disabled | bsc/bep20/kindcow_finance |
| Binance Smart Chain | KIWI | 0xCfDf8A80fECAeeCC144fa74c0Df8691BFd0e26e3 | Kiwi Token | countervalues disabled | bsc/bep20/kiwi_token |
| Binance Smart Chain | LTO | 0x857B222Fc79e1cBBf8Ca5f78CB133d1b7CF34BBd | LTO Network | countervalues disabled | bsc/bep20/lto_network |
| Binance Smart Chain | LINA | 0x762539b45A1dCcE3D36d080F74d1AED37844b878 | Linear Token | countervalues disabled | bsc/bep20/linear_token |
| Binance Smart Chain | LIT | 0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723 | Litentry | countervalues disabled | bsc/bep20/litentry |
| Binance Smart Chain | MATH | 0xF218184Af829Cf2b0019F8E6F0b2423498a36983 | MATH Token | countervalues disabled | bsc/bep20/math_token |
| Binance Smart Chain | MDT | 0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1 | Measurable Data Token | countervalues disabled | bsc/bep20/measurable_data_token |
| Binance Smart Chain | MILK | 0x8E9f5173e16Ff93F81579d73A7f9723324d6B6aF | Milk Protocol | countervalues disabled | bsc/bep20/milk_protocol |
| Binance Smart Chain | MDA | 0xd72aA9e1cDDC2F6D6e0444580002170fbA1f8eED | Moeda Loyalty Points | countervalues disabled | bsc/bep20/moeda_loyalty_points |
| Binance Smart Chain | SEEDS | 0xeFb94d158206dfa5CB8c30950001713106440928 | Moeda SEEDS | countervalues disabled | bsc/bep20/moeda_seeds |
| Binance Smart Chain | BMXX | 0x4131b87F74415190425ccD873048C708F8005823 | Multiplier | countervalues disabled | bsc/bep20/multiplier |
| Binance Smart Chain | NWC | 0x968F6f898a6Df937fC1859b323aC2F14643e3fED | Newscrypto | countervalues disabled | bsc/bep20/newscrypto |
| Binance Smart Chain | NMX | 0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65 | Nominex | countervalues disabled | bsc/bep20/nominex |
| Binance Smart Chain | ORE | 0x93d5a19a993D195cfC75AcdD736A994428290a59 | OREO | countervalues disabled | bsc/bep20/oreo |
| Binance Smart Chain | OVR | 0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe | OVR | countervalues disabled | bsc/bep20/ovr |
| Binance Smart Chain | OCT | 0x49277cC5be56b519901E561096bfD416277b4F6d | Octree Finance | countervalues disabled | bsc/bep20/octree_finance |
| Binance Smart Chain | CAKE | 0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82 | PancakeSwap Token | countervalues disabled | bsc/bep20/pancakeswap_token |
| Binance Smart Chain | PASTA | 0xAB9D0Fae6eB062F2698C2D429a1BE9185A5D4F6E | Pasta Token | countervalues disabled | bsc/bep20/pasta_token |
| Binance Smart Chain | PERL | 0x0F9E4D49f25de22c2202aF916B681FBB3790497B | Perlin | countervalues disabled | bsc/bep20/perlin |
| Binance Smart Chain | PHO | 0xb9784C1633ef3b839563B988c323798634714368 | Phoswap | countervalues disabled | bsc/bep20/phoswap |
| Binance Smart Chain | PIZZA | 0x2cc26dd730F548dc4ac291ae7D84a0C96980d2cB | PizzaSwap | countervalues disabled | bsc/bep20/pizzaswap |
| Binance Smart Chain | POLS | 0x7e624FA0E1c4AbFD309cC15719b7E2580887f570 | PolkastarterToken | countervalues disabled | bsc/bep20/polkastartertoken |
| Binance Smart Chain | PROM | 0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5 | Prometeus | countervalues disabled | bsc/bep20/prometeus |
| Binance Smart Chain | PROPEL | 0x9B44Df3318972bE845d83f961735609137C4C23c | Propel | countervalues disabled | bsc/bep20/propel |
| Binance Smart Chain | RFOX | 0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5 | RFOX | countervalues disabled | bsc/bep20/rfox |
| Binance Smart Chain | BROOBEE | 0xE64F5Cb844946C1F102Bd25bBD87a5aB4aE89Fbe | ROOBEE | countervalues disabled | bsc/bep20/roobee |
| Binance Smart Chain | RAMEN | 0x4F47A0d15c1E53F3d94c069C7D16977c29F9CB6B | Ramen Token | countervalues disabled | bsc/bep20/ramen_token |
| Binance Smart Chain | RAVEN | 0xcD7C5025753a49f1881B31C48caA7C517Bb46308 | Raven Protocol | countervalues disabled | bsc/bep20/raven_protocol |
| Binance Smart Chain | REEF | 0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e | Reef.finance | countervalues disabled | bsc/bep20/reef.finance |
| Binance Smart Chain | FINE | 0x4e6415a5727ea08aAE4580057187923aeC331227 | Refinable | countervalues disabled | bsc/bep20/refinable |
| Binance Smart Chain | RGP | 0xFA262F303Aa244f9CC66f312F0755d89C3793192 | RigelToken | countervalues disabled | bsc/bep20/rigeltoken |
| Binance Smart Chain | SAFEMOON | 0x8076C74C5e3F5852037F31Ff0093Eeb8c8ADd8D3 | SafeMoon | countervalues disabled | bsc/bep20/safemoon |
| Binance Smart Chain | SFP | 0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb | SafePal Token | countervalues disabled | bsc/bep20/safepal_token |
| Binance Smart Chain | SAKE | 0x8BD778B12b15416359A227F0533Ce2D91844e1eD | SakeToken | countervalues disabled | bsc/bep20/saketoken |
| Binance Smart Chain | 7UP | 0x29f350B3822F51dc29619C583AdBC9628646E315 | Seven Up Token | countervalues disabled | bsc/bep20/seven_up_token |
| Binance Smart Chain | SHARD | 0xD8a1734945b9Ba38eB19a291b475E31F49e59877 | Shard | countervalues disabled | bsc/bep20/shard |
| Binance Smart Chain | SHIELD | 0x60b3BC37593853c04410c4F07fE4D6748245BF77 | Shield Protocol | countervalues disabled | bsc/bep20/shield_protocol |
| Binance Smart Chain | SATT | 0x448BEE2d93Be708b54eE6353A7CC35C4933F1156 | Smart Advertising Transaction Token | countervalues disabled | bsc/bep20/smart_advertising_transaction_token |
| Binance Smart Chain | SPARTA | 0x3910db0600eA925F63C36DdB1351aB6E2c6eb102 | Spartan Protocol Token V2 | countervalues disabled | bsc/bep20/spartan_protocol_token_v2 |
| Binance Smart Chain | SPORE | 0x33A3d962955A3862C8093D1273344719f03cA17C | Spore | countervalues disabled | bsc/bep20/spore |
| Binance Smart Chain | SPORE | 0x77f6A5f1B7a2b6D6C322Af8581317D6Bb0a52689 | Spore Token | countervalues disabled | bsc/bep20/spore_token |
| Binance Smart Chain | NUTS | 0x8893D5fA71389673C5c4b9b3cb4EE1ba71207556 | Squirrel Finance | countervalues disabled | bsc/bep20/squirrel_finance |
| Binance Smart Chain | STAX | 0x0Da6Ed8B13214Ff28e9Ca979Dd37439e8a88F6c4 | StableX Token | countervalues disabled | bsc/bep20/stablex_token |
| Binance Smart Chain | XMARK | 0x26A5dFab467d4f58fB266648CAe769503CEC9580 | Standard on xDai on BSC | countervalues disabled | bsc/bep20/standard_on_xdai_on_bsc |
| Binance Smart Chain | BTCST | 0x78650B139471520656b9E7aA7A5e9276814a38e9 | StandardBTCHashrateToken | countervalues disabled | bsc/bep20/standardbtchashratetoken |
| Binance Smart Chain | SBS | 0xc1D99537392084Cc02D3F52386729b79d01035ce | StaysBASE | countervalues disabled | bsc/bep20/staysbase |
| Binance Smart Chain | STM | 0x90DF11a8ccE420675e73922419e3f4f3Fe13CCCb | Streamity | countervalues disabled | bsc/bep20/streamity |
| Binance Smart Chain | LAUNCH | 0xb5389A679151C4b8621b1098C6E0961A3CFEe8d4 | Super Launcher | countervalues disabled | bsc/bep20/super_launcher |
| Binance Smart Chain | SWFTC | 0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3 | SwftCoin | countervalues disabled | bsc/bep20/swftcoin |
| Binance Smart Chain | SXP | 0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A | Swipe | countervalues disabled | bsc/bep20/swipe |
| Binance Smart Chain | THUGS | 0xE10e9822A5de22F8761919310DDA35CD997d63c0 | THUGS | countervalues disabled | bsc/bep20/thugs |
| Binance Smart Chain | TOZ | 0xcF0Bea8B08fd28E339EFF49F717A828f79F7F5eC | TOZEX | countervalues disabled | bsc/bep20/tozex |
| Binance Smart Chain | TRX | 0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B | TRON | countervalues disabled | bsc/bep20/tron |
| Binance Smart Chain | TACO | 0x9066e87Bac891409D690cfEfA41379b34af06391 | Taco | countervalues disabled | bsc/bep20/taco |
| Binance Smart Chain | FOR | 0x658A109C5900BC6d2357c87549B651670E5b0539 | The Force Token | countervalues disabled | bsc/bep20/the_force_token |
| Binance Smart Chain | TKO | 0x9f589e3eabe42ebC94A44727b3f3531C0c877809 | Tokocrypto Token | countervalues disabled | bsc/bep20/tokocrypto_token |
| Binance Smart Chain | XTM | 0x3f526A5A8811cC1812d923D5dbb20E4B1c6028Db | Torum | countervalues disabled | bsc/bep20/torum |
| Binance Smart Chain | XTF | 0x0377FACbDDbeE59d40869808bb67fa741038bC67 | Torum Finance | countervalues disabled | bsc/bep20/torum_finance |
| Binance Smart Chain | TREE | 0x9BD547446Ea13C0c13Df2c1885e1f5B019a77441 | Tree Token | countervalues disabled | bsc/bep20/tree_token |
| Binance Smart Chain | TWT | 0x4B0F1812e5Df2A09796481Ff14017e6005508003 | Trust Wallet | countervalues disabled | bsc/bep20/trust_wallet |
| Binance Smart Chain | TWIN | 0xAF83F292fcED83032f52ced45ef7DBDdb586441a | Twinci | countervalues disabled | bsc/bep20/twinci |
| Binance Smart Chain | UBU | 0xd2DdFba7bb12f6e70c2AAB6B6bf9EdaEf42ed22F | UBUToken | countervalues disabled | bsc/bep20/ubutoken |
| Binance Smart Chain | VAI | 0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7 | VAI Stablecoin | countervalues disabled | bsc/bep20/vai_stablecoin |
| Binance Smart Chain | VANCII | 0x8F9b482b74Afc0B7E8AEfc704f1f04DF208EE332 | VANCI.FINANCE | countervalues disabled | bsc/bep20/vanci.finance |
| Binance Smart Chain | VFOX | 0x4D61577d8Fd2208A0afb814ea089fDeAe19ed202 | VFOX | countervalues disabled | bsc/bep20/vfox |
| Binance Smart Chain | XVS | 0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63 | Venus | countervalues disabled | bsc/bep20/venus |
| Binance Smart Chain | VADA | 0x9A0AF7FDb2065Ce470D72664DE73cAE409dA28Ec | Venus ADA | countervalues disabled | bsc/bep20/venus_ada |
| Binance Smart Chain | VBCH | 0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176 | Venus BCH | countervalues disabled | bsc/bep20/venus_bch |
| Binance Smart Chain | VBETH | 0x972207A639CC1B374B893cc33Fa251b55CEB7c07 | Venus BETH | countervalues disabled | bsc/bep20/venus_beth |
| Binance Smart Chain | VBTC | 0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B | Venus BTC | countervalues disabled | bsc/bep20/venus_btc |
| Binance Smart Chain | VBUSD | 0x95c78222B3D6e262426483D42CfA53685A67Ab9D | Venus BUSD | countervalues disabled | bsc/bep20/venus_busd |
| Binance Smart Chain | VDAI | 0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1 | Venus DAI | countervalues disabled | bsc/bep20/venus_dai |
| Binance Smart Chain | VDOGE | 0xec3422Ef92B2fb59e84c8B02Ba73F1fE84Ed8D71 | Venus DOGE | countervalues disabled | bsc/bep20/venus_doge |
| Binance Smart Chain | VDOT | 0x1610bc33319e9398de5f57B33a5b184c806aD217 | Venus DOT | countervalues disabled | bsc/bep20/venus_dot |
| Binance Smart Chain | VETH | 0xf508fCD89b8bd15579dc79A6827cB4686A3592c8 | Venus ETH | countervalues disabled | bsc/bep20/venus_eth |
| Binance Smart Chain | VFIL | 0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343 | Venus FIL | countervalues disabled | bsc/bep20/venus_fil |
| Binance Smart Chain | VLINK | 0x650b940a1033B8A1b1873f78730FcFC73ec11f1f | Venus LINK | countervalues disabled | bsc/bep20/venus_link |
| Binance Smart Chain | VLTC | 0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B | Venus LTC | countervalues disabled | bsc/bep20/venus_ltc |
| Binance Smart Chain | VRT | 0x5F84ce30DC3cF7909101C69086c50De191895883 | Venus Reward Token | countervalues disabled | bsc/bep20/venus_reward_token |
| Binance Smart Chain | VSXP | 0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0 | Venus SXP | countervalues disabled | bsc/bep20/venus_sxp |
| Binance Smart Chain | VUSDC | 0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8 | Venus USDC | countervalues disabled | bsc/bep20/venus_usdc |
| Binance Smart Chain | VUSDT | 0xfD5840Cd36d94D7229439859C0112a4185BC0255 | Venus USDT | countervalues disabled | bsc/bep20/venus_usdt |
| Binance Smart Chain | VXRP | 0xB248a295732e0225acd3337607cc01068e3b9c10 | Venus XRP | countervalues disabled | bsc/bep20/venus_xrp |
| Binance Smart Chain | VXVS | 0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D | Venus XVS | countervalues disabled | bsc/bep20/venus_xvs |
| Binance Smart Chain | WIN | 0xaeF0d72a118ce24feE3cD1d43d383897D05B4e99 | WINk | countervalues disabled | bsc/bep20/wink |
| Binance Smart Chain | WEATHER | 0xbe3E4CFD929156F612DF36042D79201Ecf5344D7 | Weather | countervalues disabled | bsc/bep20/weather |
| Binance Smart Chain | WBNB | 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c | Wrapped BNB | countervalues disabled | bsc/bep20/wrapped_bnb |
| Binance Smart Chain | MIR | 0x5B6DcF557E2aBE2323c48445E8CC948910d8c2c9 | Wrapped MIR Token | countervalues disabled | bsc/bep20/wrapped_mir_token |
| Binance Smart Chain | UST | 0x23396cF899Ca06c4472205fC903bDB4de249D6fC | Wrapped UST Token | countervalues disabled | bsc/bep20/wrapped_ust_token |
| Binance Smart Chain | ZMN | 0xFCb8a4B1a0B645e08064e05B98E9cc6f48D2aa57 | ZMINE Token | countervalues disabled | bsc/bep20/zmine_token |
| Binance Smart Chain | ZIL | 0xb86AbCb37C3A4B64f74f59301AFF131a1BEcC787 | Zilliqa | countervalues disabled | bsc/bep20/zilliqa |
| Binance Smart Chain | BIFI | 0xCa3F508B8e4Dd382eE878A314789373D80A5190A | beefy.finance | countervalues disabled | bsc/bep20/beefy.finance |
| Binance Smart Chain | CHS | 0xaDD8A06fd58761A5047426e160B2B88AD3B9D464 | cheesemaker.farm | countervalues disabled | bsc/bep20/cheesemaker.farm |
| Binance Smart Chain | DF | 0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623 | dForce | countervalues disabled | bsc/bep20/dforce |
| Binance Smart Chain | DGN | 0x72f28c09be1342447fa01Ebc76eF508473d08c5c | degen.trade | countervalues disabled | bsc/bep20/degen.trade |
| Binance Smart Chain | KHP | 0x15B3d410fCd0d695E1bbe4F717F8E1B6D0Fb2D0C | fry.KetchupV2 | countervalues disabled | bsc/bep20/fry.ketchupv2 |
| Binance Smart Chain | FRIES | 0x393B312C01048b3ed2720bF1B090084C09e408A1 | fry.world | countervalues disabled | bsc/bep20/fry.world |
| Binance Smart Chain | VBSWAP | 0x4f0ed527e8A95ecAA132Af214dFd41F30b361600 | vSWAP.fi | countervalues disabled | bsc/bep20/vswap.fi |
| Binance Smart Chain | WRX | 0x8e17ed70334C87eCE574C9d537BC153d8609e2a3 | wazirx token | countervalues disabled | bsc/bep20/wazirx_token |
| Ethereum | INJ | 0x84bFFfFD702d924C6d9b25F87151bf0FB1A8913E | Injective Protocol | countervalues disabled | ethereum/erc20/_injective_protocol |
| Ethereum | $AAPL | 0x41eFc0253ee7Ea44400abB5F907FDbfdEbc82bec | $AAPL | countervalues disabled | ethereum/erc20/$aapl |
| Ethereum | $BASED | 0x68A118Ef45063051Eac49c7e647CE5Ace48a68a5 | $BASED | countervalues disabled | ethereum/erc20/$based |
| Ethereum | POOLZ | 0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23 | $Poolz Finance | countervalues disabled | ethereum/erc20/$poolz_finance |
| Ethereum | $ROPE | 0x9D47894f8BECB68B9cF3428d256311Affe8B068B | $ROPE | countervalues disabled | ethereum/erc20/$rope |
| Ethereum | ZCN | 0xb9EF770B6A5e12E45983C5D80545258aA38F3B78 | 0chain | | ethereum/erc20/0chain |
| Ethereum | ZRX | 0xE41d2489571d322189246DaFA5ebDe1F4699F498 | 0x Project | | ethereum/erc20/0x_project |
| Ethereum | 0XBTC | 0xB6eD7644C69416d67B522e20bC294A9a9B405B31 | 0xBitcoin | | ethereum/erc20/0xbitcoin |
| Ethereum | ZXC | 0x83e2BE8d114F9661221384B3a50d24B96a5653F5 | 0xcert Protocol Token | | ethereum/erc20/0xcert_protocol_token |
| Ethereum | 10SET | 0x7FF4169a6B5122b664c51c95727d87750eC07c84 | 10Set Token | | ethereum/erc20/10set_token |
| Ethereum | TSHP | 0x525794473F7ab5715C81d06d10f52d11cC052804 | 12Ships | countervalues disabled | ethereum/erc20/12ships |
| Ethereum | WRHL1 | 0x4fBc1EdA20Cd8D1f39FCA41f646c317bcE0e13Af | 14 Small Electric Chairs Reversal Series | countervalues disabled | ethereum/erc20/14_small_electric_chairs_reversal_series |
| Ethereum | WT | 0xADc2BA7d69DBbf2DA3Fa998321dbD3edc1B60CF5 | 19 | | ethereum/erc20/19 |
| Ethereum | 1INCH | 0x111111111117dC0aa78b770fA6A738034120C302 | 1INCH Token | | ethereum/erc20/1inch_token |
| Ethereum | 1SG | 0x0F72714B35a366285Df85886A2eE174601292A17 | 1SG | | ethereum/erc20/1sg |
| Ethereum | 1WO | 0xfDBc1aDc26F0F8f8606a5d63b7D3a3CD21c22B23 | 1WO | | ethereum/erc20/1wo |
| Ethereum | FST | 0x310c93dfc1C5E34CDF51678103f63C41762089CD | 1irst | | ethereum/erc20/1irst |
| Ethereum | 22X | 0x0073e5E52E2B4fE218D75d994eE2B3c82f9C87EA | 22x Fund | | ethereum/erc20/22x_fund |
| Ethereum | 300 | 0xaEc98A708810414878c3BCDF46Aad31dEd4a4557 | 300 Token Sparta | | ethereum/erc20/300_token_sparta |
| Ethereum | FIT | 0x3c72fca8523686fd9e5740b0826FA4bB376E0241 | 300FIT Network | | ethereum/erc20/300fit_network |
| Ethereum | 420DOGE | 0x0e685b78279D58109e1F6b428caB3fa37Aea8285 | 420DOGE | countervalues disabled | ethereum/erc20/420doge |
| Ethereum | 4ART | 0x0944393ABCFc9879cEdc19E070C056F70703f9b8 | 4ArtCoin | | ethereum/erc20/4artcoin |
| Ethereum | KWATT | 0x241bA672574A78a3A604CDd0a94429A73a84a324 | 4NEW | | ethereum/erc20/4new |
| Ethereum | 808TA | 0x5b535EDfA75d7CB706044Da0171204E1c48D00e8 | 808TA | countervalues disabled | ethereum/erc20/808ta |
| Ethereum | MPH | 0x8888801aF4d980682e47f1A9036e589479e835C5 | 88mph.app | | ethereum/erc20/88mph.app |
| Ethereum | EXE | 0x412D397DDCa07D753E3E0C61e367fb1b474B3E7D | 8X8 Protocol | countervalues disabled | ethereum/erc20/8x8_protocol |
| Ethereum | RTB | 0xEC491c1088Eae992B7A214efB0a266AD0927A72A | AB-CHAIN RTB Token | | ethereum/erc20/ab_chain_rtb_token |
| Ethereum | ABCH | 0xcc7d26D8eA6281BB363C8448515F2C61F7BC19F0 | ABBC Cash | | ethereum/erc20/abbc_cash |
| Ethereum | ABYSS | 0x0E8d6b471e332F140e7d9dbB99E5E3822F728DA6 | ABYSS | | ethereum/erc20/abyss |
| Ethereum | ACAB | 0xF754620784E797f3681F9f295b2528455D2fC0d0 | ACAB Token | countervalues disabled | ethereum/erc20/acab_token |
| Ethereum | ACE | 0x06147110022B768BA8F99A8f385df11a151A9cc8 | ACE | countervalues disabled | ethereum/erc20/ace |
| Ethereum | ACE | 0xeC5483804e637D45cDe22Fa0869656B64b5AB1ab | ACENT | | ethereum/erc20/acent |
| Ethereum | AC | 0x9A0aBA393aac4dFbFf4333B06c407458002C6183 | ACoconut | countervalues disabled | ethereum/erc20/acoconut |
| Ethereum | ADABEAR | 0xb3299d4BaB93Bf04d5b11bc49CD6DFAD1f77d23f | ADABEAR | delisted, countervalues disabled | ethereum/erc20/adabear |
| Ethereum | ADABULL | 0x43dE1145Cd22f0a9Cc99e51c205e6e81161Df6B9 | ADABULL | delisted, countervalues disabled | ethereum/erc20/adabull |
| Ethereum | AGAR | 0xb453f1f2EE776dAF2586501361c457dB70e1ca0F | AGA Rewards | countervalues disabled | ethereum/erc20/aga_rewards |
| Ethereum | AGA | 0x2D80f5F5328FdcB6ECeb7Cacf5DD8AEDaEC94e20 | AGA Token | countervalues disabled | ethereum/erc20/aga_token |
| Ethereum | XAI | 0x268b7976e94e84a48bf8B2B57Ba34b59eD836A74 | AICoin | | ethereum/erc20/aicoin |
| Ethereum | APT | 0x23aE3C5B39B12f0693e05435EeaA1e51d8c61530 | AIGang | | ethereum/erc20/aigang_ |
| Ethereum | AIOZ | 0x626E8036dEB333b408Be468F951bdB42433cBF18 | AIOZ Network | countervalues disabled | ethereum/erc20/aioz_network |
| Ethereum | ATH | 0x1543d0F83489e82A1344DF6827B23d541F235A50 | AIgatha Token | countervalues disabled | ethereum/erc20/aigatha_token |
| Ethereum | ALCO | 0x181a63746d3Adcf356CBc73aCE22832FFBB1EE5A | ALCO | | ethereum/erc20/alco |
| Ethereum | ALGOBEAR | 0x057FB10e3fec001a40e6B75D3a30B99e23e54107 | ALGOBEAR | delisted, countervalues disabled | ethereum/erc20/algobear |
| Ethereum | ALGOBULL | 0x584936357D68f5143F12e2e64F0089dB93814dAd | ALGOBULL | delisted, countervalues disabled | ethereum/erc20/algobull |
| Ethereum | ALGOHEDGE | 0xfdc3D57eB7839ca68A2fAD7A93799c8e8aFA61B7 | ALGOHEDGE | delisted, countervalues disabled | ethereum/erc20/algohedge |
| Ethereum | ALICE | 0xAC51066d7bEC65Dc4589368da368b212745d63E8 | ALICE | | ethereum/erc20/alice |
| Ethereum | ALIS | 0xEA610B1153477720748DC13ED378003941d84fAB | ALIS Token | | ethereum/erc20/alis_token |
| Ethereum | ALPHR | 0xaa99199d1e9644b588796F3215089878440D58e0 | ALPHR | | ethereum/erc20/alphr |
| Ethereum | ALTBEAR | 0x90B417Ab462440Cf59767BCf72D0d91CA42F21ED | ALTBEAR | delisted, countervalues disabled | ethereum/erc20/altbear |
| Ethereum | ALTBULL | 0xd829664CDbF3195b2cE76047A65de29e7ED0a9A8 | ALTBULL | delisted, countervalues disabled | ethereum/erc20/altbull |
| Ethereum | ALTHEDGE | 0x258FEc90B7788E60dA3bc6f81d5839Dc5B36a110 | ALTHEDGE | delisted, countervalues disabled | ethereum/erc20/althedge |
| Ethereum | ALTS | 0x638AC149eA8EF9a1286C41B977017AA7359E6Cfa | ALTS Token | | ethereum/erc20/alts_token |
| Ethereum | ALX | 0x49b127Bc33ce7E1586EC28CEC6a65b112596C822 | ALX | | ethereum/erc20/alx |
| Ethereum | AMIS | 0x949bEd886c739f1A3273629b3320db0C5024c719 | AMIS | | ethereum/erc20/amis |
| Ethereum | AMLT | 0xCA0e7269600d353F70b14Ad118A49575455C0f2f | AMLT | | ethereum/erc20/amlt |
| Ethereum | AMO | 0x38c87AA89B2B8cD9B95b736e1Fa7b612EA972169 | AMO Coin | | ethereum/erc20/amo_coin |
| Ethereum | AMP | 0xfF20817765cB7f73d4bde2e66e067E58D11095C2 | AMP | delisted, countervalues disabled | ethereum/erc20/amp |
| Ethereum | AAPX | 0xbfD815347d024F449886c171f78Fa5B8E6790811 | AMPnet APX Token | countervalues disabled | ethereum/erc20/ampnet_apx_token |
| Ethereum | API3 | 0x0b38210ea11411557c13457D4dA7dC6ea731B88a | API3 | | ethereum/erc20/api3 |
| Ethereum | APIS | 0x4C0fBE1BB46612915E7967d2C3213cd4d87257AD | APIS | | ethereum/erc20/apis |
| Ethereum | APIX | 0xf51EBf9a26DbC02B13F8B3a9110dac47a4d62D78 | APIX | delisted, countervalues disabled | ethereum/erc20/apix |
| Ethereum | APW | 0x4104b135DBC9609Fc1A9490E61369036497660c8 | APWine Token | countervalues disabled | ethereum/erc20/apwine_token |
| Ethereum | APY | 0x95a4492F028aa1fd432Ea71146b433E7B4446611 | APY Governance Token | delisted, countervalues disabled | ethereum/erc20/apy_governance_token |
| Ethereum | APYS | 0xf7413489c474ca4399eeE604716c72879Eea3615 | APYSwap | countervalues disabled | ethereum/erc20/apyswap |
| Ethereum | ARBI | 0x5bffc45D740C213e19B68B40e9ed89705f495E44 | ARBI Token | | ethereum/erc20/arbi_token |
| Ethereum | ARB | 0xaFBeC4D65BC7b116d85107FD05d912491029Bf46 | ARBITRAGE | | ethereum/erc20/arbitrage |
| Ethereum | ARC | 0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5 | ARC | | ethereum/erc20/arc |
| Ethereum | STABLEX | 0xcD91538B91B4ba7797D39a2f66E63810b50A33d0 | ARC STABLEx | countervalues disabled | ethereum/erc20/arc_stablex |
| Ethereum | ARCA | 0x62A6738d887F47e297676FaB05b902709B106C64 | ARCA | | ethereum/erc20/arca |
| Ethereum | ARIA20 | 0xeDF6568618A00C6F0908Bf7758A16F76B6E04aF9 | ARIANEE | | ethereum/erc20/arianee |
| Ethereum | ARKE | 0xA9248F8e40d4b9c3Ca8ebd8E07E9BCB942C616d8 | ARKE | countervalues disabled | ethereum/erc20/arke |
| Ethereum | ARPA | 0xBA50933C268F567BDC86E1aC131BE072C6B0b71a | ARPA Token | | ethereum/erc20/arpa_token |
| Ethereum | ART | 0xfec0cF7fE078a500abf15F1284958F22049c2C7e | ART | | ethereum/erc20/art |
| Ethereum | ARTS | 0xF013e0ea26Cb386B3021783a3201BF2652778f93 | ARTISTA | | ethereum/erc20/artista |
| Ethereum | AKC | 0x1Ca43a170BaD619322e6f54d46b57e504dB663aA | ARTWOOK COIN | | ethereum/erc20/artwook_coin |
| Ethereum | ARTX | 0x741b0428Efdf4372A8DF6FB54B018dB5e5aB7710 | ARTX Token | countervalues disabled | ethereum/erc20/artx_token |
| Ethereum | ARX | 0x7705FaA34B16EB6d77Dfc7812be2367ba6B0248e | ARX | countervalues disabled | ethereum/erc20/arx |
| Ethereum | ASSY | 0xFA2562da1Bba7B954f26C74725dF51fb62646313 | ASSY Index | countervalues disabled | ethereum/erc20/assy_index |
| Ethereum | ELONONE | 0x97b65710D03E12775189F0D113202cc1443b0aa2 | ASTROELON | countervalues disabled | ethereum/erc20/astroelon |
| Ethereum | ATL | 0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05 | ATL | | ethereum/erc20/atl |
| Ethereum | ATM | 0x9B11EFcAAA1890f6eE52C6bB7CF8153aC5d74139 | ATMChain | | ethereum/erc20/atmchain |
| Ethereum | ATOMBEAR | 0x3B834A620751A811f65D8f599b3b72617A4418d0 | ATOMBEAR | delisted, countervalues disabled | ethereum/erc20/atombear |
| Ethereum | ATOMBULL | 0x75F0038B8fbfCCAFe2aB9a51431658871bA5182C | ATOMBULL | delisted, countervalues disabled | ethereum/erc20/atombull |
| Ethereum | AVA | 0xeD247980396B10169BB1d36f6e278eD16700a60f | AVA | countervalues disabled | ethereum/erc20/ava |
| Ethereum | AVT | 0x0d88eD6E74bbFD96B831231638b66C05571e824F | AVT | | ethereum/erc20/avt |
| Ethereum | AX1 | 0xCd4b4b0F3284a33AC49C67961EC6e111708318Cf | AX1 Mining Token | | ethereum/erc20/ax1_mining_token |
| Ethereum | AXIAV3 | 0x793786e2dd4Cc492ed366a94B88a3Ff9ba5E7546 | AXIA TOKEN | countervalues disabled | ethereum/erc20/axia_token |
| Ethereum | AXPR | 0xC39E626A04C5971D770e319760D7926502975e47 | AXPR (old) | countervalues disabled | ethereum/erc20/axpire_old |
| Ethereum | AAVE | 0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9 | Aave | | ethereum/erc20/aave |
| Ethereum | LEND | 0x80fB784B7eD66730e8b1DBd9820aFD29931aab03 | Aave (old) | | ethereum/erc20/aave_ |
| Ethereum | AAAVE | 0xba3D9687Cf50fE253cd2e1cFeEdE1d6787344Ed5 | Aave Interest bearing Aave Token (old) | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_aave_token |
| Ethereum | ABAT | 0xE1BA0FB44CCb0D11b80F92f4f8Ed94CA3fF51D00 | Aave Interest bearing BAT | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_bat |
| Ethereum | ABUSD | 0x6Ee0f7BB50a54AB5253dA0667B0Dc2ee526C30a8 | Aave Interest bearing Binance USD | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_binance_usd |
| Ethereum | ADAI | 0xfC1E690f61EFd961294b3e1Ce3313fBD8aa4f85d | Aave Interest bearing DAI | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_dai |
| Ethereum | AENJ | 0x712DB54daA836B53Ef1EcBb9c6ba3b9Efb073F40 | Aave Interest bearing ENJ | countervalues disabled | ethereum/erc20/aave_interest_bearing_enj |
| Ethereum | AETH | 0x3a3A65aAb0dd2A17E3F1947bA16138cd37d08c04 | Aave Interest bearing ETH | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_eth |
| Ethereum | AKNC | 0x9D91BE44C06d373a8a226E1f3b146956083803eB | Aave Interest bearing KNC | countervalues disabled | ethereum/erc20/aave_interest_bearing_knc |
| Ethereum | ALEND | 0x7D2D3688Df45Ce7C552E19c27e007673da9204B8 | Aave Interest bearing LEND | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_lend |
| Ethereum | ALINK | 0xA64BD6C70Cb9051F6A9ba1F163Fdc07E0DfB5F84 | Aave Interest bearing LINK | countervalues disabled | ethereum/erc20/aave_interest_bearing_link |
| Ethereum | AMANA | 0x6FCE4A401B6B80ACe52baAefE4421Bd188e76F6f | Aave Interest bearing MANA | countervalues disabled | ethereum/erc20/aave_interest_bearing_mana |
| Ethereum | AMKR | 0x7deB5e830be29F91E298ba5FF1356BB7f8146998 | Aave Interest bearing MKR | countervalues disabled | ethereum/erc20/aave_interest_bearing_mkr |
| Ethereum | AREN | 0x69948cC03f478B95283F7dbf1CE764d0fc7EC54C | Aave Interest bearing REN | countervalues disabled | ethereum/erc20/aave_interest_bearing_ren |
| Ethereum | AREP | 0x71010A9D003445aC60C4e6A7017c1E89A477B438 | Aave Interest bearing REP | countervalues disabled | ethereum/erc20/aave_interest_bearing_rep |
| Ethereum | ASNX | 0x328C4c80BC7aCa0834Db37e6600A6c49E12Da4DE | Aave Interest bearing SNX | countervalues disabled | ethereum/erc20/aave_interest_bearing_snx |
| Ethereum | ASUSD | 0x625aE63000f46200499120B906716420bd059240 | Aave Interest bearing SUSD | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_susd |
| Ethereum | ATUSD | 0x4DA9b813057D04BAef4e5800E36083717b4a0341 | Aave Interest bearing TUSD | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_tusd |
| Ethereum | AUSDC | 0x9bA00D6856a4eDF4665BcA2C2309936572473B7E | Aave Interest bearing USDC | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_usdc |
| Ethereum | AUSDT | 0x71fc860F7D3A592A4a98740e39dB31d25db65ae8 | Aave Interest bearing USDT | delisted, countervalues disabled | ethereum/erc20/aave_interest_bearing_usdt |
| Ethereum | AUNI | 0xB124541127A0A657f056D9Dd06188c4F1b0e5aab | Aave Interest bearing Uniswap | countervalues disabled | ethereum/erc20/aave_interest_bearing_uniswap |
| Ethereum | AWBTC | 0xFC4B8ED459e00e5400be803A9BB3954234FD50e3 | Aave Interest bearing WBTC | countervalues disabled | ethereum/erc20/aave_interest_bearing_wbtc |
| Ethereum | AYFI | 0x12e51E77DAAA58aA0E9247db7510Ea4B46F9bEAd | Aave Interest bearing YFI | countervalues disabled | ethereum/erc20/aave_interest_bearing_yfi |
| Ethereum | AZRX | 0x6Fb0855c404E09c47C3fBCA25f08d4E41f9F062f | Aave Interest bearing ZRX | countervalues disabled | ethereum/erc20/aave_interest_bearing_zrx |
| Ethereum | AAAVE | 0xFFC97d72E13E01096502Cb8Eb52dEe56f74DAD7B | Aave interest bearing AAVE v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_aave_v2 |
| Ethereum | ABAL | 0x272F97b7a56a387aE942350bBC7Df5700f8a4576 | Aave interest bearing BAL v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_bal_v2 |
| Ethereum | ABAT | 0x05Ec93c0365baAeAbF7AefFb0972ea7ECdD39CF1 | Aave interest bearing BAT v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_bat_v2 |
| Ethereum | ABUSD | 0xA361718326c15715591c299427c62086F69923D9 | Aave interest bearing BUSD v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_busd_v2 |
| Ethereum | ACRV | 0x8dAE6Cb04688C62d939ed9B68d32Bc62e49970b1 | Aave interest bearing CRV v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_crv_v2 |
| Ethereum | ADAI | 0x028171bCA77440897B824Ca71D1c56caC55b68A3 | Aave interest bearing DAI v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_dai_v2 |
| Ethereum | AENJ | 0xaC6Df26a590F08dcC95D5a4705ae8abbc88509Ef | Aave interest bearing ENJ v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_enj_v2 |
| Ethereum | AGUSD | 0xD37EE7e4f452C6638c96536e68090De8cBcdb583 | Aave interest bearing GUSD v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_gusd_v2 |
| Ethereum | AKNC | 0x39C6b3e42d6A679d7D776778Fe880BC9487C2EDA | Aave interest bearing KNC v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_knc_v2 |
| Ethereum | ALINK | 0xa06bC25B5805d5F8d82847D191Cb4Af5A3e873E0 | Aave interest bearing LINK v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_link_v2 |
| Ethereum | AMANA | 0xa685a61171bb30d4072B338c80Cb7b2c865c873E | Aave interest bearing MANA v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_mana_v2 |
| Ethereum | AMKR | 0xc713e5E149D5D0715DcD1c156a020976e7E56B88 | Aave interest bearing MKR v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_mkr_v2 |
| Ethereum | AREN | 0xCC12AbE4ff81c9378D670De1b57F8e0Dd228D77a | Aave interest bearing REN v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_ren_v2 |
| Ethereum | ASNX | 0x35f6B052C598d933D69A4EEC4D04c73A191fE6c2 | Aave interest bearing SNX v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_snx_v2 |
| Ethereum | ASUSD | 0x6C5024Cd4F8A59110119C56f8933403A539555EB | Aave interest bearing SUSD v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_susd_v2 |
| Ethereum | ATUSD | 0x101cc05f4A51C0319f570d5E146a8C625198e636 | Aave interest bearing TUSD v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_tusd_v2 |
| Ethereum | AUNI | 0xB9D7CB55f463405CDfBe4E90a6D2Df01C2B92BF1 | Aave interest bearing UNI v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_uni_v2 |
| Ethereum | AUSDC | 0xBcca60bB61934080951369a648Fb03DF4F96263C | Aave interest bearing USDC v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_usdc_v2 |
| Ethereum | AUSDT | 0x3Ed3B47Dd13EC9a98b44e6204A523E766B225811 | Aave interest bearing USDT v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_usdt_v2 |
| Ethereum | AWBTC | 0x9ff58f4fFB29fA2266Ab25e75e2A8b3503311656 | Aave interest bearing WBTC v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_wbtc_v2 |
| Ethereum | AWETH | 0x030bA81f1c18d280636F32af80b9AAd02Cf0854e | Aave interest bearing WETH v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_weth_v2 |
| Ethereum | AXSUSHI | 0xF256CC7847E919FAc9B808cC216cAc87CCF2f47a | Aave interest bearing XSUSHI v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_xsushi_v2 |
| Ethereum | AYFI | 0x5165d24277cD063F5ac44Efd447B27025e888f37 | Aave interest bearing YFI v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_yfi_v2 |
| Ethereum | AZRX | 0xDf7FF54aAcAcbFf42dfe29DD6144A69b629f8C9e | Aave interest bearing ZRX v2 | countervalues disabled | ethereum/erc20/aave_interest_bearing_zrx_v2 |
| Ethereum | GHST | 0x3F382DbD960E3a9bbCeaE22651E88158d2791550 | Aavegotchi GHST Token | delisted, countervalues disabled | ethereum/erc20/aavegotchi_ghst_token |
| Ethereum | ACC | 0x13F1b7FDFbE1fc66676D56483e21B1ecb40b58E2 | Accelerator Network | | ethereum/erc20/accelerator_network |
| Ethereum | ARD | 0x75Aa7B0d02532f3833b66c7f0Ad35376d373ddF8 | Accord | | ethereum/erc20/accord |
| Ethereum | ADB | 0x2baac9330Cf9aC479D819195794d79AD0c7616e3 | AdBank | | ethereum/erc20/adbank |
| Ethereum | ADX | 0xADE00C28244d5CE17D72E40330B1c318cD12B7c3 | AdEx Network | | ethereum/erc20/adex_network |
| Ethereum | ADX | 0x4470BB87d77b963A013DB939BE332f927f2b992e | AdEx Network (Old) | delisted, countervalues disabled | ethereum/erc20/adex_network_ |
| Ethereum | ADH | 0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31 | AdHive Token | | ethereum/erc20/adhive_token |
| Ethereum | ADST | 0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0 | AdShares | | ethereum/erc20/adshares |
| Ethereum | ADT | 0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD | AdToken | | ethereum/erc20/adtoken |
| Ethereum | ADL | 0x660e71483785f66133548B10f6926dC332b06e61 | Adelphoi | | ethereum/erc20/adelphoi |
| Ethereum | ADI | 0x8810C63470d38639954c6B41AaC545848C46484a | Aditus | | ethereum/erc20/aditus |
| Ethereum | ADCO | 0xB6c3DC857845a713d3531cea5ac546F6767992F4 | Advertise Coin | | ethereum/erc20/advertise_coin |
| Ethereum | AERGO | 0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6 | Aergo | | ethereum/erc20/aergo |
| Ethereum | AERGO | 0xAE31b85Bfe62747d0836B82608B4830361a3d37a | Aergo (old) | delisted, countervalues disabled | ethereum/erc20/aergo_ |
| Ethereum | ARNX | 0x0C37Bcf456bC661C14D596683325623076D7e283 | Aeron | | ethereum/erc20/aeron |
| Ethereum | ARN | 0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6 | Aeron Token | | ethereum/erc20/aeron_token |
| Ethereum | AVEX | 0x30211F7de9bF35334c7F61545E8ed09bf9d9cC15 | Aevolve | | ethereum/erc20/avex |
| Ethereum | DLT | 0x07e3c70653548B04f0A75970C1F81B4CBbFB606f | Agrello | | ethereum/erc20/agrello |
| Ethereum | ALI | 0x4289c043A12392F1027307fB58272D8EBd853912 | AiLink Token | | ethereum/erc20/ailink_token |
| Ethereum | AID | 0x37E8789bB9996CaC9156cD5F5Fd32599E6b91289 | AidCoin | | ethereum/erc20/aidcoin |
| Ethereum | AID | 0xD178b20c6007572bD1FD01D205cC20D32B4A6015 | Aidus | countervalues disabled | ethereum/erc20/aidus |
| Ethereum | AIX | 0x1063ce524265d5a3A624f4914acd573dD89ce988 | Aigang | | ethereum/erc20/aigang |
| Ethereum | AION | 0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466 | Aion | delisted, countervalues disabled | ethereum/erc20/aion |
| Ethereum | AIR | 0x27Dce1eC4d3f72C3E457Cc50354f1F975dDEf488 | AirToken | | ethereum/erc20/airtoken |
| Ethereum | AST | 0x27054b13b1B798B345b591a4d22e6562d47eA75a | Airswap | | ethereum/erc20/airswap |
| Ethereum | AKITA | 0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6 | Akita Inu | | ethereum/erc20/akita_inu |
| Ethereum | AKRO | 0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7 | Akropolis | | ethereum/erc20/akropolis |
| Ethereum | ADEL | 0x94d863173EE77439E4292284fF13fAD54b3BA182 | Akropolis Delphi | | ethereum/erc20/akropolis_delphi |
| Ethereum | ALCHEMIST | 0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB | Alchemist | countervalues disabled | ethereum/erc20/alchemist |
| Ethereum | ALCX | 0xdBdb4d16EdA451D0503b854CF79D55697F90c8DF | Alchemix | | ethereum/erc20/alchemix |
| Ethereum | ALUSD | 0xBC6DA0FE9aD5f3b0d58160288917AA56653660E9 | Alchemix USD | countervalues disabled | ethereum/erc20/alchemix_usd |
| Ethereum | ACH | 0xEd04915c23f00A313a544955524EB7DBD823143d | Alchemy | | ethereum/erc20/alchemy |
| Ethereum | ALEX | 0x8BA6DcC667d3FF64C1A2123cE72FF5F0199E5315 | AlexMasmej | countervalues disabled | ethereum/erc20/alexmasmej |
| Ethereum | SOC | 0x2d0E95bd4795D7aCe0da3C0Ff7b706a5970eb9D3 | All Sports Coin | | ethereum/erc20/all_sports_coin |
| Ethereum | ATS | 0xE5f55a3b74874531a99359b833b92866A6609f6B | All The Smoke | countervalues disabled | ethereum/erc20/all_the_smoke |
| Ethereum | ALBT | 0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0 | AllianceBlock Token | | ethereum/erc20/allianceblock_token |
| Ethereum | ALV | 0x744c9c36D1Cc3268a4b9b2e28c60B1752C85E97d | Alluva | countervalues disabled | ethereum/erc20/alluva |
| Ethereum | A | 0xFFc63b9146967A1ba33066fB057EE3722221aCf0 | Alpha | countervalues disabled | ethereum/erc20/alpha |
| Ethereum | IMPACT | 0xFAc3f6391C86004289A186Ae0198180fCB4D49Ab | Alpha Impact | | ethereum/erc20/alpha_impact |
| Ethereum | ALPHAOHM | 0x24eCfd535675f36BA1Ab9C5d39b50dC097b0792e | Alpha Olympus | countervalues disabled | ethereum/erc20/alpha_olympus |
| Ethereum | ALPHA | 0xa1faa113cbE53436Df28FF0aEe54275c13B40975 | AlphaToken | | ethereum/erc20/alphatoken |
| Ethereum | ALP | 0x454B9f249bC1492eE995793Bbc3e57b830F1A5e9 | Alphacon | | ethereum/erc20/alphacon |
| Ethereum | ALT | 0x419B8ED155180A8c9C64145e76DaD49c0A4Efb97 | AltEstate token | | ethereum/erc20/altestate_token |
| Ethereum | ALN | 0x8185Bc4757572Da2a610f887561c32298f1A5748 | Aluna | countervalues disabled | ethereum/erc20/aluna |
| Ethereum | ALV | 0xfC17986Eec07b49348D24238755FF3bA7F7Fd282 | Alvado | countervalues disabled | ethereum/erc20/alvado |
| Ethereum | ALXO | 0x4317Ea4820F8D9ea6A103553A89Cb261B6Ea7F2a | Alxocity | countervalues disabled | ethereum/erc20/alxocity |
| Ethereum | AMB | 0x4DC3643DbC642b72C158E7F3d2ff232df61cb6CE | Amber Token | | ethereum/erc20/amber_token |
| Ethereum | AMTC | 0x84936cF7630AA3e27Dd9AfF968b140d5AEE49F5a | AmberTime Coin | | ethereum/erc20/ambertime_coin |
| Ethereum | AMN | 0x737F98AC8cA59f2C68aD658E3C3d8C8963E40a4c | Amon | | ethereum/erc20/amon |
| Ethereum | AMPL | 0xD46bA6D942050d489DBd938a2C909A5d5039A161 | Ampleforth | | ethereum/erc20/ampleforth |
| Ethereum | FORTH | 0x77FbA179C79De5B7653F68b5039Af940AdA60ce0 | Ampleforth Governance | | ethereum/erc20/ampleforth_governance |
| Ethereum | $ANRX | 0xCae72A7A0Fd9046cf6b165CA54c9e3a3872109E0 | AnRKey X | | ethereum/erc20/anrkey_x |
| Ethereum | AETH | 0xE95A203B1a91a908F9B9CE46459d101078c2c3cb | Ankr Eth2 Reward Bearing Bond | countervalues disabled | ethereum/erc20/ankr_eth2_reward_bearing_bond |
| Ethereum | ANKR | 0x8290333ceF9e6D528dD5618Fb97a76f268f3EDD4 | Ankr Network | | ethereum/erc20/ankr_network |
| Ethereum | FREE | 0xC2Bd7a597391f31D2E36c2cb769fcE0E5bd6d482 | Anti-Lockdown | countervalues disabled | ethereum/erc20/anti-lockdown |
| Ethereum | XAMP | 0xf911a7ec46a2c6fa49193212fe4a2a9B95851c27 | Antiample | delisted, countervalues disabled | ethereum/erc20/antiample |
| Ethereum | MATTER | 0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F | Antimatter Finance Governance Token | | ethereum/erc20/antimatter_finance_governance_token |
| Ethereum | ANY | 0xf99d58e463A2E07e5692127302C20A191861b4D6 | Anyswap | countervalues disabled | ethereum/erc20/anyswap |
| Ethereum | APO | 0xaEb0472bc3b158DC1690c7979Ee45B76243b4dA5 | Apollo | | ethereum/erc20/apollo |
| Ethereum | A18 | 0xBa7DCBa2Ade319Bc772DB4df75A76BA00dFb31b0 | Apollo18 | | ethereum/erc20/apollo18 |
| Ethereum | APOT | 0x16c1E5BAF21b9Fa4BC9f2C374E4dC19fAB5Ac5Dc | Apot | | ethereum/erc20/apot |
| Ethereum | APPC | 0x1a7a8BD9106F2B8D977E08582DC7d24c723ab0DB | AppCoins | | ethereum/erc20/appcoins |
| Ethereum | ARGO | 0x28Cca76f6e8eC81e4550ecd761f899110b060E97 | ArGo Token | countervalues disabled | ethereum/erc20/argo_token |
| Ethereum | ARA | 0xa92E7c82B11d10716aB534051B271D2f6aEf7Df5 | Ara Token | | ethereum/erc20/ara_token |
| Ethereum | ANT | 0x960b236A07cf122663c4303350609A66A7B288C0 | Aragon (old) | delisted, countervalues disabled | ethereum/erc20/aragon_ |
| Ethereum | ANJ | 0xcD62b1C403fa761BAadFC74C525ce2B51780b184 | Aragon Network Juror | countervalues disabled | ethereum/erc20/aragon_network_juror |
| Ethereum | ANT | 0xa117000000f279D81A1D3cc75430fAA017FA5A2e | Aragon Network Token | | ethereum/erc20/aragon_network_token |
| Ethereum | ARCT | 0x1245ef80F4d9e02ED9425375e8F649B9221b31D8 | ArbitrageCT | | ethereum/erc20/arbitragect |
| Ethereum | ABT | 0xB98d4C97425d9908E66E53A6fDf673ACcA0BE986 | ArcBlock Token | | ethereum/erc20/arcblock_token |
| Ethereum | ARCH | 0x1F3f9D3068568F8040775be2e8C03C103C61f3aF | Archer DAO Governance Token | | ethereum/erc20/archer_dao_governance_token |
| Ethereum | ARES | 0x358AA737e033F34df7c54306960a38d09AaBd523 | Ares Protocol | countervalues disabled | ethereum/erc20/ares_protocol |
| Ethereum | GZM | 0x0A680E503fd9ae14B62444C75ffB4BEf1F105666 | Arma Coin | | ethereum/erc20/arma_coin |
| Ethereum | ARMOR | 0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a | Armor | | ethereum/erc20/armor |
| Ethereum | ARNXM | 0x1337DEF18C680aF1f9f45cBcab6309562975b1dD | Armor NXM | countervalues disabled | ethereum/erc20/armor_nxm |
| Ethereum | ARX | 0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5 | Assistive Reality ARX | delisted, countervalues disabled | ethereum/erc20/assistive_reality_arx |
| Ethereum | ATX | 0x1A0F2aB46EC630F9FD638029027b552aFA64b94c | Aston X | | ethereum/erc20/aston_x |
| Ethereum | ASTRO | 0x7B22938ca841aA392C93dBB7f4c42178E3d65E88 | AstroTokens | | ethereum/erc20/astrotokens |
| Ethereum | ASTRO | 0xcbd55D4fFc43467142761A764763652b48b969ff | AstroTools.io | countervalues disabled | ethereum/erc20/astrotools.io |
| Ethereum | ATRI | 0xdacD69347dE42baBfAEcD09dC88958378780FB62 | AtariToken | countervalues disabled | ethereum/erc20/ataritoken |
| Ethereum | ATH | 0x17052d51E954592C1046320c2371AbaB6C73Ef10 | Athenian Warrior Token | countervalues disabled | ethereum/erc20/athenian_warrior_token |
| Ethereum | ATT | 0x887834D3b8D450B6bAB109c252Df3DA286d73CE4 | Atmatrix Token | | ethereum/erc20/atmatrix_token |
| Ethereum | ATMI | 0x97AEB5066E1A590e868b511457BEb6FE99d329F5 | Atonomi | | ethereum/erc20/atonomi |
| Ethereum | ATTN | 0x6339784d9478dA43106A429196772A029C2f177d | Attention Token | | ethereum/erc20/attention_token |
| Ethereum | AUC | 0xc12d099be31567add4e4e4d0D45691C3F58f5663 | Auctus | | ethereum/erc20/auctus |
| Ethereum | AUDIO | 0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998 | Audius | | ethereum/erc20/audius |
| Ethereum | REP | 0x1985365e9f78359a9B6AD760e32412f4a445E862 | Augur | countervalues disabled | ethereum/erc20/augur |
| Ethereum | AURA | 0xCdCFc0f66c522Fd086A1b725ea3c0Eeb9F9e8814 | Aura DAO | | ethereum/erc20/aura_dao |
| Ethereum | ARE | 0x92afBa413BF9E5DA3919A522E371884bEAC76309 | Aurei | | ethereum/erc20/aurei |
| Ethereum | AOA | 0x9ab165D795019b6d8B3e971DdA91071421305e5a | Aurora | | ethereum/erc20/aurora |
| Ethereum | URUS | 0x6c5fbc90E4D78F70Cc5025dB005B39B03914fC0c | Aurox Token | | ethereum/erc20/aurox_token |
| Ethereum | AWX | 0x54E46cC89588318e3964ca2c1Be94Db9D5cA3dFb | AurusCoin (old) | countervalues disabled | ethereum/erc20/auruscoin_old |
| Ethereum | AWX | 0xA51Fc71422a30FA7FFa605B360c3B283501b5bf6 | AurusDeFi | | ethereum/erc20/aurusdefi |
| Ethereum | AWX | 0x1EFdfC6146cAd8909817284AE99325EF1cAF623e | AurusDeFi (old) | countervalues disabled | ethereum/erc20/aurusdefi_old |
| Ethereum | AWG | 0x696Acc2De564b48682D71D0847B3632f87c9A402 | AurusGOLD | | ethereum/erc20/aurusgold |
| Ethereum | AWP | 0xA96D47c621a8316d4F9539E3B38180C7067e84CA | AurusPLATINUM | | ethereum/erc20/aurusplatinum |
| Ethereum | AWS | 0xb89903ddE3899f0280B99913168Ee833a7896B93 | AurusSILVER | | ethereum/erc20/aurussilver |
| Ethereum | ATS | 0x2dAEE1AA61D60A252DC80564499A69802853583A | Authorship | | ethereum/erc20/authorship |
| Ethereum | ATA | 0xA2120b9e674d3fC3875f415A7DF52e382F141225 | Automata | | ethereum/erc20/automata |
| Ethereum | NIOX | 0xc813EA5e3b48BEbeedb796ab42A30C5599b01740 | Autonio | | ethereum/erc20/autonio |
| Ethereum | NIO | 0x5554e04e76533E1d14c52f05beEF6c9d329E1E30 | Autonio (old) | countervalues disabled | ethereum/erc20/autonio_old |
| Ethereum | AVAL | 0xBCf9dBf8B14eD096B2BA08b7269356197fDd1b5D | Avaluse | countervalues disabled | ethereum/erc20/avaluse |
| Ethereum | WORK | 0xA686514FAF7d54289266F483D1e4852C99E13EC7 | Aworker | | ethereum/erc20/aworker |
| Ethereum | AXS | 0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b | Axie Infinity Shard | | ethereum/erc20/axie_infinity_shard |
| Ethereum | AXS | 0xF5D669627376EBd411E34b98F19C868c8ABA5ADA | Axie Infinity Shard (old) | countervalues disabled | ethereum/erc20/axie_infinity_shard_(old) |
| Ethereum | AXN | 0x71F85B2E46976bD21302B64329868fd15eb0D127 | Axion | | ethereum/erc20/axion |
| Ethereum | B20 | 0xc4De189Abf94c57f396bD4c52ab13b954FebEfD8 | B.20 | countervalues disabled | ethereum/erc20/b.20 |
| Ethereum | B26 | 0x481dE76d5ab31e28A33B0EA1c1063aDCb5B1769A | B26 | countervalues disabled | ethereum/erc20/b26 |
| Ethereum | BBC | 0xe7D3e4413E29ae35B0893140F4500965c74365e5 | B2BCoin | | ethereum/erc20/b2bcoin |
| Ethereum | B2BX | 0x5d51FCceD3114A8bb5E90cDD0f9d682bCbCC5393 | B2BX | | ethereum/erc20/b2bx |
| Ethereum | BAC | 0x3449FC1Cd036255BA1EB19d65fF4BA2b8903A69a | BAC | countervalues disabled | ethereum/erc20/bac |
| Ethereum | BAEPAY | 0x6BFfa07a1B0ceBC474cE6833eAf2bE6326252449 | BAEPAY | countervalues disabled | ethereum/erc20/baepay |
| Ethereum | BANCA | 0x998b3B82bC9dBA173990Be7afb772788B5aCB8Bd | BANCA | | ethereum/erc20/banca |
| Ethereum | BKX | 0x45245bc59219eeaAF6cD3f382e078A461FF9De7B | BANKEX | | ethereum/erc20/bankex |
| Ethereum | BANX | 0xF87F0D9153fea549c728Ad61cb801595a68b73de | BANX | | ethereum/erc20/banx |
| Ethereum | BAS | 0xa7ED29B253D8B4E3109ce07c80fc570f81B63696 | BAS | countervalues disabled | ethereum/erc20/bas |
| Ethereum | BASIC | 0xF25c91C87e0B1fd9B4064Af0F427157AaB0193A7 | BASIC Token | countervalues disabled | ethereum/erc20/basic_token |
| Ethereum | BAT | 0x0D8775F648430679A709E98d2b0Cb6250d2887EF | BAT | | ethereum/erc20/bat |
| Ethereum | BAX | 0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB | BAX | | ethereum/erc20/bax |
| Ethereum | BBN | 0x35a69642857083BA2F30bfaB735dacC7F0bac969 | BBN | | ethereum/erc20/bbn |
| Ethereum | BCAP | 0x1f41E42D0a9e3c0Dd3BA15B527342783B43200A9 | BCAP | | ethereum/erc20/bcap |
| Ethereum | BCDN | 0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40 | BCDN | | ethereum/erc20/bcdn |
| Ethereum | BCHBEAR | 0xa9fC65Da36064cE545e87690e06f5de10C52C690 | BCHBEAR | delisted, countervalues disabled | ethereum/erc20/bchbear |
| Ethereum | BCHBULL | 0x4C133E081dFB5858e39ccA74E69bf603d409e57A | BCHBULL | delisted, countervalues disabled | ethereum/erc20/bchbull |
| Ethereum | BCHHEDGE | 0x02E88a689fdfB920e7Aa6174Fb7AB72add3C5694 | BCHHEDGE | delisted, countervalues disabled | ethereum/erc20/bchhedge |
| Ethereum | BCL | 0xbc1234552EBea32B5121190356bBa6D3Bb225bb5 | BCL | | ethereum/erc20/bcl |
| Ethereum | BCPT | 0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd | BCPT | | ethereum/erc20/bcpt |
| Ethereum | BDP | 0xf3dcbc6D72a4E1892f7917b7C43b74131Df8480e | BDP | countervalues disabled | ethereum/erc20/bdp |
| Ethereum | BEAR | 0x016ee7373248a80BDe1fD6bAA001311d233b3CFa | BEAR | countervalues disabled | ethereum/erc20/bear |
| Ethereum | BEARSHIT | 0x48dEE19C81B89A9aB473361bAE7a19210f2DEaA4 | BEARSHIT | delisted, countervalues disabled | ethereum/erc20/bearshit |
| Ethereum | BEAT | 0x2Fb12bccF6f5Dd338b76Be784A93ade072425690 | BEAT Token | | ethereum/erc20/beat_token |
| Ethereum | BET | 0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2 | BET | | ethereum/erc20/bet |
| Ethereum | BHR | 0xfe5D908c9Ad85f651185dAa6a4770726E2b27d09 | BETHER | | ethereum/erc20/bether |
| Ethereum | BETR | 0x763186eB8d4856D536eD4478302971214FEbc6A9 | BETR | | ethereum/erc20/betr |
| Ethereum | BFT | 0x01fF50f8b7f74E4f00580d9596cd3D0d6d6E326f | BF Token | countervalues disabled | ethereum/erc20/bf_token |
| Ethereum | BGG | 0xEA54C81fe0f72DE8e86B6dC78a9271AA3925E3B5 | BGGToken | | ethereum/erc20/bggtoken |
| Ethereum | BHPC | 0xEE74110fB5A1007b06282e0DE5d73A61bf41d9Cd | BHPCash | | ethereum/erc20/bhpcash |
| Ethereum | BITPARK | 0xF3d29Fb98D2DC5E78c87198DEEF99377345fD6F1 | BITPARK | | ethereum/erc20/bitpark |
| Ethereum | BITTO | 0xa101E27f06A97985B925E244111b61560Ecd97DB | BITTO | | ethereum/erc20/bitto |
| Ethereum | BIX | 0xb3104b4B9Da82025E8b9F8Fb28b3553ce2f67069 | BIX Token | | ethereum/erc20/bix_token |
| Ethereum | BK | 0xD0Bd12A8D5EBCA1E2FA46dA59F1993EC51C3d75c | BKEX Token | delisted, countervalues disabled | ethereum/erc20/bkex_token |
| Ethereum | VEE | 0x340D2bdE5Eb28c1eed91B2f790723E3B160613B7 | BLOCKv | | ethereum/erc20/blockv |
| Ethereum | BLO | 0x1C3BB10dE15C31D5DBE48fbB7B87735d1B7d8c32 | BLONDCOIN | | ethereum/erc20/blondcoin |
| Ethereum | BLUE | 0x539EfE69bCDd21a83eFD9122571a64CC25e0282b | BLUE | | ethereum/erc20/blue |
| Ethereum | BMT | 0xf028ADEe51533b1B47BEaa890fEb54a457f51E89 | BMT | | ethereum/erc20/bmt |
| Ethereum | BNB | 0xB8c77482e45F1F44dE1745F52C74426C631bDD52 | BNB | delisted, countervalues disabled | ethereum/erc20/bnb |
| Ethereum | BNBBEAR | 0x6FeBdFC0A9d9502C45343fCE0dF08828dEF44795 | BNBBEAR | delisted, countervalues disabled | ethereum/erc20/bnbbear |
| Ethereum | BNBBULL | 0x9D1a62c2AD99019768b9126fdA004a9952853F6E | BNBBULL | delisted, countervalues disabled | ethereum/erc20/bnbbull |
| Ethereum | BNBHEDGE | 0x2840aD41cf25Ad58303Ba24C416E79dCe4161b4F | BNBHEDGE | delisted, countervalues disabled | ethereum/erc20/bnbhedge |
| Ethereum | BNC | 0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F | BNC | countervalues disabled | ethereum/erc20/bnc |
| Ethereum | BOND | 0x5Dc02Ea99285E17656b8350722694c35154DB1E8 | BOND | countervalues disabled | ethereum/erc20/bond |
| Ethereum | BOX | 0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD | BOX Token | | ethereum/erc20/box_token |
| Ethereum | BOXX | 0x780116D91E5592E58a3b3c76A351571b39abCEc6 | BOXX | | ethereum/erc20/boxx |
| Ethereum | BRAT | 0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891 | BRAT | | ethereum/erc20/brat |
| Ethereum | BBK | 0x4a6058666cf1057eaC3CD3A5a614620547559fc9 | BRICKBLOCK TOKEN | | ethereum/erc20/brickblock_token |
| Ethereum | BSDC | 0xF26ef5E0545384b7Dcc0f297F2674189586830DF | BSDC | | ethereum/erc20/bsdc |
| Ethereum | BSG | 0xB34Ab2f65c6e4F764fFe740ab83F982021Faed6d | BSG | countervalues disabled | ethereum/erc20/bsg |
| Ethereum | BSGS | 0xA9d232cC381715aE791417B624D7C4509D2c28DB | BSGS | countervalues disabled | ethereum/erc20/bsgs |
| Ethereum | CBSN | 0x7d4B1d793239707445305D8d2456D2c735F6B25B | BSNcommunitynet | | ethereum/erc20/bsncommunitynet |
| Ethereum | BSVBEAR | 0xCe49c3c92b33a1653F34811a9d7e34502bF12B89 | BSVBEAR | delisted, countervalues disabled | ethereum/erc20/bsvbear |
| Ethereum | BSVBULL | 0x6e13A9e4AE3d0678E511Fb6d2ad531fcF0e247bf | BSVBULL | delisted, countervalues disabled | ethereum/erc20/bsvbull |
| Ethereum | BSVHEDGE | 0xf6254cd565c5E78dfB0030b0B14D1E6F482a2413 | BSVHEDGE | delisted, countervalues disabled | ethereum/erc20/bsvhedge |
| Ethereum | BTCETH50 | 0xc06aEc5191bE16b94FfC97B6Fc01393527367365 | BTC ETH Equal Weight Set | delisted, countervalues disabled | ethereum/erc20/btc_eth_equal_weight_set |
| Ethereum | BTCL | 0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50 | BTC Lite | | ethereum/erc20/btc_lite |
| Ethereum | BTCMINVOL | 0x81c55017F7Ce6E72451cEd49FF7bAB1e3DF64d0C | BTC Min Volatility Set | delisted, countervalues disabled | ethereum/erc20/btc_min_volatility_set |
| Ethereum | BYTE | 0xAC8Ea871e2d5F4Be618905F36f73c760f8cFDC8E | BTC Network Demand Set | delisted, countervalues disabled | ethereum/erc20/btc_network_demand_set |
| Ethereum | BTE | 0x73dD069c299A5d691E9836243BcaeC9c8C1D8734 | BTE | | ethereum/erc20/bte |
| Ethereum | BTL | 0x2accaB9cb7a48c3E82286F0b2f8798D201F4eC3f | BTL (Battle) | countervalues disabled | ethereum/erc20/btl__battle_ |
| Ethereum | BTMXBEAR | 0xdBF637f78624F896B92F801E81f6031b7865eD20 | BTMXBEAR | delisted, countervalues disabled | ethereum/erc20/btmxbear |
| Ethereum | BTMXBULL | 0x9885cA101DFd8f23D364874F799554C52BFee820 | BTMXBULL | delisted, countervalues disabled | ethereum/erc20/btmxbull |
| Ethereum | BTO | 0x36905Fc93280f52362A1CBAB151F25DC46742Fb5 | BTOCoin | | ethereum/erc20/btocoin |
| Ethereum | BTRN | 0x03C780cD554598592B97b7256dDAad759945b125 | BTRN | | ethereum/erc20/btrn |
| Ethereum | BDAI | 0x6a4FFAafa8DD400676Df8076AD6c724867b0e2e8 | BTU Incentivized DAI | countervalues disabled | ethereum/erc20/btu_incentivized_dai |
| Ethereum | BTU | 0xb683D83a532e2Cb7DFa5275eED3698436371cc9f | BTU Protocol | | ethereum/erc20/btu_protocol |
| Ethereum | BTZ | 0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0 | BTZ by Bunz | countervalues disabled | ethereum/erc20/btz_by_bunz |
| Ethereum | BUILD | 0x6e36556B3ee5Aa28Def2a8EC3DAe30eC2B208739 | BUILD Finance | countervalues disabled | ethereum/erc20/build_finance |
| Ethereum | BULL | 0x68eb95Dc9934E19B86687A10DF8e364423240E94 | BULL | countervalues disabled | ethereum/erc20/bull |
| Ethereum | BULLSHIT | 0xd06b25F67A17f12b41F615b34D87ECd716fF55a0 | BULLSHIT | delisted, countervalues disabled | ethereum/erc20/bullshit |
| Ethereum | BZ | 0x4375E7aD8A01B8eC3Ed041399f62D9Cd120e0063 | BZ | | ethereum/erc20/bz |
| Ethereum | BZZ | 0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb | BZZ | | ethereum/erc20/bzz |
| Ethereum | BHIBA | 0x4A6Be56a211a4c4E0dd4474D524138933c17f3e3 | Baby Shiba | countervalues disabled | ethereum/erc20/baby_shiba |
| Ethereum | BADGER | 0x3472A5A71965499acd81997a54BBA8D852C6E53d | Badger | | ethereum/erc20/badger |
| Ethereum | BDIGG | 0x7e7E112A68d8D2E221E11047a72fFC1065c38e1a | Badger Sett Digg | countervalues disabled | ethereum/erc20/badger_sett_digg |
| Ethereum | BAL | 0xba100000625a3754423978a60c9317c58a424e3D | Balancer | | ethereum/erc20/balancer |
| Ethereum | BAM | 0x22B3FAaa8DF978F6bAFe18aaDe18DC2e3dfA0e0C | Bamboo | countervalues disabled | ethereum/erc20/bamboo |
| Ethereum | BNT | 0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C | Bancor | | ethereum/erc20/bancor |
| Ethereum | USDB | 0x309627af60F0926daa6041B8279484312f2bf060 | Bancor USD Token | countervalues disabled | ethereum/erc20/bancor_usd_token |
| Ethereum | BAND | 0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55 | BandToken | delisted, countervalues disabled | ethereum/erc20/bandtoken |
| Ethereum | BCASH | 0xb5BB48567BfD0bFE9e4B08EF8b7f91556CC2a112 | Bankcoin | | ethereum/erc20/bankcoin |
| Ethereum | BKC | 0xc88Be04c809856B75E3DfE19eB4dCf0a3B15317a | Bankcoin Cash | | ethereum/erc20/bankcoin_cash |
| Ethereum | BNK | 0xC80c5E40220172B36aDee2c951f26F2a577810C5 | Banker Token | | ethereum/erc20/banker_token |
| Ethereum | BANK | 0x2d94AA3e47d9D5024503Ca8491fcE9A2fB4DA198 | Bankless Token | countervalues disabled | ethereum/erc20/bankless_token |
| Ethereum | BAO | 0x374CB8C27130E2c9E04F44303f3c8351B9De61C1 | BaoToken | | ethereum/erc20/baotoken |
| Ethereum | BOND | 0x0391D2021f89DC339F60Fff84546EA23E337750f | BarnBridge Governance Token | | ethereum/erc20/barnbridge_governance_token |
| Ethereum | BART | 0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba | BarterTrade | countervalues disabled | ethereum/erc20/bartertrade |
| Ethereum | BASE | 0x07150e919B4De5fD6a63DE1F9384828396f25fDC | Base Protocol | countervalues disabled | ethereum/erc20/base_protocol |
| Ethereum | BSKT | 0xC03841B5135600312707d39Eb2aF0D2aD5d51A91 | BasketCoin | | ethereum/erc20/basketcoin |
| Ethereum | BDI | 0x0309c98B1bffA350bcb3F9fB9780970CA32a5060 | BasketDAO DeFi Index | countervalues disabled | ethereum/erc20/basketdao_defi_index |
| Ethereum | BASK | 0x44564d0bd94343f72E3C8a0D22308B7Fa71DB0Bb | BasketDAO Gov | countervalues disabled | ethereum/erc20/basketdao_gov |
| Ethereum | BEE | 0x4D8fc1453a0F359e99c9675954e656D80d996FbF | Bee Token | | ethereum/erc20/bee_token |
| Ethereum | BUC | 0xCa3c18a65b802eC267f8f4802545e7F53D24C75e | BeeUnity Chain | | ethereum/erc20/beeunity_chain |
| Ethereum | BEERCOIN | 0x74C1E4b8caE59269ec1D85D3D4F324396048F4ac | BeerCoin | | ethereum/erc20/beercoin_ |
| Ethereum | BCBC | 0x7367A68039d4704f30BfBF6d948020C3B07DFC59 | Beercoin | | ethereum/erc20/beercoin |
| Ethereum | BEL | 0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14 | Bella | countervalues disabled | ethereum/erc20/bella |
| Ethereum | BBI | 0x37D40510a2F5Bc98AA7a0f7BF4b3453Bcfb90Ac1 | Beluga Banking Infrastructure Token | | ethereum/erc20/beluga_banking_infrastructure_token |
| Ethereum | MARK | 0x67c597624B17b16fb77959217360B7cD18284253 | Benchmark | | ethereum/erc20/benchmark |
| Ethereum | BNFT | 0xdA2C424Fc98c741c2d4ef2f42897CEfed897CA75 | Benefits Coin | | ethereum/erc20/benefits_coin |
| Ethereum | BERRY | 0x6aEB95F06CDA84cA345c2dE0F3B7f96923a44f4c | Berry | | ethereum/erc20/berry |
| Ethereum | BPC | 0xE865A04Fb0d565107eaF9049Ef22c27DD0c4bBEf | BestPick Coin | | ethereum/erc20/bestpick_coin |
| Ethereum | BKB | 0xB2Bfeb70B903F1BAaC7f2ba2c62934C7e5B974C4 | BetKing Bankroll Token | countervalues disabled | ethereum/erc20/betking_bankroll_token |
| Ethereum | BEPRO | 0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A | BetProtocolToken | | ethereum/erc20/betprotocoltoken |
| Ethereum | BETHER | 0x14C926F2290044B647e1Bf2072e67B495eff1905 | Bethereum | | ethereum/erc20/bethereum |
| Ethereum | BETTER | 0xA7925aA2A6e4575ab0C74D169f3BC3e03D4C319A | Better Money | countervalues disabled | ethereum/erc20/better_money |
| Ethereum | BYN | 0x4Bb3205bf648B7F59EF90Dee0F1B62F6116Bc7ca | Beyond Finance | countervalues disabled | ethereum/erc20/beyond_finance |
| Ethereum | BZNT | 0xE1Aee98495365fc179699C1bB3E761FA716beE62 | BezantToken | | ethereum/erc20/bezanttoken |
| Ethereum | BEZ | 0x3839d8ba312751Aa0248fEd6a8bACB84308E20Ed | Bezop | | ethereum/erc20/bezop |
| Ethereum | BIFI | 0x2791BfD60D232150Bff86b39B7146c0eaAA2BA81 | BiFi | countervalues disabled | ethereum/erc20/bifi |
| Ethereum | TRYB | 0x2C537E5624e4af88A7ae4060C022609376C8D0EB | BiLira | delisted, countervalues disabled | ethereum/erc20/bilira |
| Ethereum | BID | 0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa | Bidao | countervalues disabled | ethereum/erc20/bidao |
| Ethereum | BBO | 0x84F7c44B6Fed1080f647E354D552595be2Cc602F | Bigboom | | ethereum/erc20/bigboom |
| Ethereum | KEY | 0x4Cd988AfBad37289BAAf53C13e98E2BD46aAEa8c | BihuKey | | ethereum/erc20/bihukey |
| Ethereum | BAR | 0xc73f2474001aD1D6aEd615aF53631148CF98dE6b | Billionaire Ambition | | ethereum/erc20/billionaire_ambition |
| Ethereum | XBL | 0x49AeC0752E68D0282Db544C677f6BA407BA17ED7 | Billionaire Token | | ethereum/erc20/billionaire_token |
| Ethereum | BUSD | 0x4Fabb145d64652a948d72533023f6E7A623C7C53 | Binance USD | | ethereum/erc20/binance_usd |
| Ethereum | BBTC | 0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541 | Binance Wrapped BTC | countervalues disabled | ethereum/erc20/binance_wrapped_btc |
| Ethereum | BDOT | 0x7884F51dC1410387371ce61747CB6264E1dAeE0B | Binance Wrapped DOT | | ethereum/erc20/binance_wrapped_dot |
| Ethereum | BFIL | 0x8E16bf47065Fe843A82f4399bAF5aBac4E0822B7 | Binance Wrapped FIL | | ethereum/erc20/binance_wrapped_fil |
| Ethereum | BIOT | 0xc07A150ECAdF2cc352f5586396e344A6b17625EB | BioPassport Coin | | ethereum/erc20/biopassport_coin |
| Ethereum | BNC | 0xEf51c9377FeB29856E61625cAf9390bD0B67eA18 | Bionic | countervalues disabled | ethereum/erc20/bionic |
| Ethereum | BIRD | 0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0 | Bird.Money | | ethereum/erc20/bird.money |
| Ethereum | BTCA | 0x02725836ebF3eCDb1cDf1c7b02FcbBfaa2736AF8 | BitAir | | ethereum/erc20/bitair |
| Ethereum | BAS | 0x2A05d22DB079BC40C2f77a1d1fF703a56E631cc1 | BitAsean | | ethereum/erc20/bitasean |
| Ethereum | BCV | 0x1014613E2B3CBc4d575054D4982E580d9b99d7B1 | BitCapitalVendor Token | | ethereum/erc20/bitcapitalvendor_token |
| Ethereum | BITCAR | 0x08b4c866aE9D1bE56a06e0C302054B4FFe067b43 | BitCar Token | | ethereum/erc20/bitcar_token |
| Ethereum | BTCONE | 0x87f5E8c3425218837f3CB67dB941aF0C01323E56 | BitCoin ONE | | ethereum/erc20/bitcoin_one |
| Ethereum | BTCR | 0x6Aac8CB9861E42bf8259F5AbDC6aE3Ae89909E11 | BitCoin Red | | ethereum/erc20/bitcoin_red |
| Ethereum | BDG | 0x1961B3331969eD52770751fC718ef530838b6dEE | BitDegree Token | | ethereum/erc20/bitdegree_token |
| Ethereum | CSNO | 0x29D75277aC7F0335b2165D0895E8725cbF658d73 | BitDice | | ethereum/erc20/bitdice |
| Ethereum | ETHBTC752 | 0xA6c040045d962e4B8eFa00954c7d23CCd0a2b8AD | BitEth2575RebalancingSetToken | delisted, countervalues disabled | ethereum/erc20/biteth2575rebalancingsettoken |
| Ethereum | BTCETH752 | 0xA35Fc5019C4dc509394Bd4d74591a0bF8852c195 | BitEth7525RebalancingSetToken | delisted, countervalues disabled | ethereum/erc20/biteth7525rebalancingsettoken |
| Ethereum | FLX | 0x70b147E01E9285E7cE68B9BA437Fe3a9190E756a | BitFlux | | ethereum/erc20/bitflux |
| Ethereum | BHAO | 0x6d7c7d764d6f1DFa256C74AbB4C4d7861d8EE64C | BitHao Token | | ethereum/erc20/bithao_token |
| Ethereum | BKB | 0x5c39bC68e58a242A624E4FC96be77A383C52002D | BitKeep Token | | ethereum/erc20/bitkeep_token |
| Ethereum | ORGN | 0x1e95a0d39c3D98a926a77565108aD084f1e9DF5c | BitKings Origin | delisted, countervalues disabled | ethereum/erc20/bitkings origin |
| Ethereum | BTK | 0xF83C911Be97C84c78D7328c4db89c307906F90DC | BitKings Token | countervalues disabled | ethereum/erc20/bitkings_token |
| Ethereum | BMX | 0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8 | BitMartToken | | ethereum/erc20/bitmarttoken |
| Ethereum | BTMX | 0xcca0c9c383076649604eE31b20248BC04FdF61cA | BitMax token | countervalues disabled | ethereum/erc20/bitmax_token |
| Ethereum | BTMX | 0x1C289a12A8552B314D0d153d6991fd27a54Aa640 | BitMax token (Old) | delisted, countervalues disabled | ethereum/erc20/bitmax_token_ |
| Ethereum | BTZ | 0xA76942D04cfbbb7A3f20687ac1D11D150185f38d | Bitazza | | ethereum/erc20/bitazza |
| Ethereum | BTQ | 0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3 | Bitcoin Boutique | | ethereum/erc20/bitcoin_boutique |
| Ethereum | VD | 0x9a9bB9b4b11BF8eccff84B58a6CCCCD4058A7f0D | Bitcoin Card | | ethereum/erc20/bitcoin_card |
| Ethereum | BTCF | 0x225927F8fa71d16EE07968B8746364D1d9F839bD | Bitcoin Fast | | ethereum/erc20/bitcoin_fast |
| Ethereum | BTK | 0xdb8646F5b487B5Dd979FAC618350e85018F557d4 | Bitcoin Token | | ethereum/erc20/bitcoin_token |
| Ethereum | BTC0 | 0xc4f33F15ed2F2C5F8D5B542dD30518A50D9f843f | Bitcoin Zero | countervalues disabled | ethereum/erc20/bitcoin_zero |
| Ethereum | BSOV | 0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1 | BitcoinSoV | | ethereum/erc20/bitcoinsov |
| Ethereum | BCVT | 0x8D717AB5eaC1016b64C2A7fD04720Fd2D27D1B86 | BitcoinVend | countervalues disabled | ethereum/erc20/bitcoinvend |
| Ethereum | BTT | 0x080aa07E2C7185150d7e4DA98838A8d2feac3dfC | Bitether | delisted, countervalues disabled | ethereum/erc20/bitether |
| Ethereum | BTR | 0x499A6B77bc25C26bCf8265E2102B1B3dd1617024 | Bitether | countervalues disabled | ethereum/erc20/bitether_ |
| Ethereum | GEAR | 0x1b980e05943dE3dB3a459C72325338d327B6F5a9 | Bitgear | countervalues disabled | ethereum/erc20/bitgear |
| Ethereum | BTR | 0xcbf15FB8246F679F9Df0135881CB29a3746f734b | Bither Platform Token | countervalues disabled | ethereum/erc20/bither_platform_token |
| Ethereum | BTL | 0x92685E93956537c25Bb75D5d47fca4266dd628B8 | Bitlle Token | | ethereum/erc20/bitlle_token |
| Ethereum | BPP | 0x52d904eFf2605463c2F0b338d34aBc9B7c3e3b08 | Bitpower | countervalues disabled | ethereum/erc20/bitpower |
| Ethereum | BTR | 0xd433138d12beB9929FF6fd583DC83663eea6Aaa5 | Bitrue Coin | | ethereum/erc20/bitrue_coin |
| Ethereum | BLACK | 0x2DE4ef1Eb481cF4a7b8C9f88f6D2E47387cFAf5F | Black | countervalues disabled | ethereum/erc20/black |
| Ethereum | BLC | 0x42DbC00e14F711260E606EdbD4F14394aB4780d8 | Black Lion Coin | delisted, countervalues disabled | ethereum/erc20/black_lion_coin |
| Ethereum | BMC | 0xDf6Ef343350780BF8C3410BF062e0C015B1DD671 | Blackmoon Crypto BMC Token | | ethereum/erc20/blackmoon_crypto_bmc_token |
| Ethereum | BLANK | 0xAec7e1f531Bb09115103C53ba76829910Ec48966 | Blank Token (old) | countervalues disabled | ethereum/erc20/blank_token_old |
| Ethereum | BLES | 0xE796d6ca1ceb1b022EcE5296226BF784110031Cd | Blind Boxes Token | | ethereum/erc20/blind_boxes_token |
| Ethereum | BLINK | 0x42BEdD647E387daBeC65A7dc3A3bAbCc68BB664d | Blink | | ethereum/erc20/blink |
| Ethereum | XBP | 0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40 | BlitzPredict | | ethereum/erc20/blitzpredict |
| Ethereum | ARY | 0xa5F8fC0921880Cb7342368BD128eb8050442B1a1 | Block Array | | ethereum/erc20/block_array |
| Ethereum | BC | 0x2ecB13A8c458c379c4d9a7259e202De03c8F3D19 | Block-Chain.com | | ethereum/erc20/block_chain_com |
| Ethereum | BIT | 0x089B85FA15f72c1088CBbef23a49DB80B91DD521 | BlockEstate Investment Token | | ethereum/erc20/blockestate_investment_token |
| Ethereum | MESH | 0xF03045a4C8077e38f3B8e2Ed33b8aEE69edF869F | BlockMesh | | ethereum/erc20/blockmesh |
| Ethereum | BOP | 0x7F1E2C7d6A69bf34824D72C53B4550E895C0D8C2 | BlockOptiopns Token | | ethereum/erc20/blockoptiopns_token |
| Ethereum | BKRX | 0x3cf9E0c385a5ABEC9FD2a71790AA344C4e8E3570 | BlockRx | | ethereum/erc20/blockrx |
| Ethereum | BCDT | 0xAcfa209Fb73bF3Dd5bBfb1101B9Bc999C49062a5 | Blockchain Certified Data Token | | ethereum/erc20/blockchain_certified_data_token |
| Ethereum | BCUG | 0x14Da7b27b2E0FedEfe0a664118b0c9bc68e2E9AF | Blockchain Cuties Universe Governance Token | countervalues disabled | ethereum/erc20/blockchain_cuties_universe_governance_token |
| Ethereum | BCT | 0x5C523d6aBe17e98eAA58C2dF62A6eC9162F3B9a1 | Blockchain Token 2.0 | countervalues disabled | ethereum/erc20/blockchain_token_2.0 |
| Ethereum | BCIO | 0xCDC412F306e0C51e3249B88C65423Cd16b322673 | Blockchain.io | | ethereum/erc20/blockchain.io |
| Ethereum | BLOC | 0x6F919D67967a97EA36195A2346d9244E60FE0dDB | Blockcloud | | ethereum/erc20/blockcloud |
| Ethereum | BPT | 0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8 | Blockport Token | | ethereum/erc20/blockport_token |
| Ethereum | BST | 0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a | BlocksquareToken | | ethereum/erc20/blocksquaretoken |
| Ethereum | TIX | 0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4 | Blocktix | | ethereum/erc20/blocktix |
| Ethereum | BTT | 0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff | Blocktrade.com | countervalues disabled | ethereum/erc20/blocktrade_com |
| Ethereum | BPC | 0xF21D65979bD89b28f05EF19F3c65dd2A1D02946D | BloodyPercent | countervalues disabled | ethereum/erc20/bloodypercent |
| Ethereum | BLT | 0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e | Bloom | | ethereum/erc20/bloom |
| Ethereum | BDOGE | 0x37092DBF8C26DA9Cc805683B4Cc0B942E92DE2fd | Blue-Eyes White Doge | countervalues disabled | ethereum/erc20/blue-eyes_white_doge |
| Ethereum | BWX | 0xbD168CbF9d3a375B38dC51A202B5E8a4E52069Ed | BlueWhaleToken | | ethereum/erc20/bluewhaletoken |
| Ethereum | BLZ | 0x5732046A883704404F284Ce41FfADd5b007FD668 | Bluzelle | | ethereum/erc20/bluezelle |
| Ethereum | BOB | 0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134 | Bob's repair | | ethereum/erc20/bob_s_repair |
| Ethereum | BLN | 0xCA29db4221c111888a7e80b12eAc8a266Da3Ee0d | Boleno | | ethereum/erc20/boleno |
| Ethereum | BOLT | 0xD5930C307d7395Ff807F2921F12C5EB82131a789 | Bolt Token | | ethereum/erc20/bolt_token |
| Ethereum | BOLT | 0x9F235D23354857EfE6c541dB92a9eF1877689BCB | Bolt token (Old) | delisted, countervalues disabled | ethereum/erc20/bolt_token_ |
| Ethereum | BNF | 0x1DE5e000C41C8d35b9f1f4985C23988f05831057 | BonFi | | ethereum/erc20/bonfi |
| Ethereum | BAG | 0x28A06c02287e657ec3F8e151A13C36A1D43814b0 | BondAppetit Governance | countervalues disabled | ethereum/erc20/bondappetit_governance |
| Ethereum | BONDLY | 0xD2dDa223b2617cB616c1580db421e4cFAe6a8a85 | Bondly Token | | ethereum/erc20/bondly_token |
| Ethereum | BONES | 0x3A75731f9e16244dE01DD431636Db7c07D42A166 | Bones | countervalues disabled | ethereum/erc20/bones |
| Ethereum | FIDA | 0xF40D9507a7d4850c52a45698c9410e2c345F7A94 | Bonfida Token | | ethereum/erc20/bonfida_token |
| Ethereum | BON | 0xCc34366E3842cA1BD36c1f324d15257960fCC801 | Bonpay | | ethereum/erc20/bonpay |
| Ethereum | BOOST | 0x3e780920601D61cEdb860fe9c4a90c9EA6A35E78 | Boosted Finance | countervalues disabled | ethereum/erc20/boosted_finance |
| Ethereum | BOR | 0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9 | BoringDAO | countervalues disabled | ethereum/erc20/boringdao |
| Ethereum | OBTC | 0x8064d9Ae6cDf087b1bcd5BDf3531bD5d8C537a68 | BoringDAO BTC | countervalues disabled | ethereum/erc20/boringdao_btc |
| Ethereum | BOSON | 0xC477D038d5420C6A9e0b031712f61c5120090de9 | Boson Token | | ethereum/erc20/boson_token |
| Ethereum | BOTS | 0xf9FBE825BFB2bF3E387af0Dc18caC8d87F29DEa8 | Bot Ocean | | ethereum/erc20/bot_ocean |
| Ethereum | BOU | 0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d | Boule Coin | | ethereum/erc20/boule_coin |
| Ethereum | BOT | 0x5bEaBAEBB3146685Dd74176f68a0721F91297D37 | Bounce Token | countervalues disabled | ethereum/erc20/bounce_token_ |
| Ethereum | AUCTION | 0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096 | Bounce Token Auction | countervalues disabled | ethereum/erc20/bounce_token_auction |
| Ethereum | BNTY | 0xd2d6158683aeE4Cc838067727209a0aAF4359de3 | Bounty0x Token | | ethereum/erc20/bounty0x_token |
| Ethereum | BOUTS | 0x139d9397274bb9E2C29A9aa8Aa0b5874d30D62E3 | BoutsPro | | ethereum/erc20/boutspro |
| Ethereum | BRZ | 0x420412E765BFa6d85aaaC94b4f7b708C89be2e2B | Brazilian Real | | ethereum/erc20/brazilian_real |
| Ethereum | BRD | 0x558EC3152e2eb2174905cd19AeA4e34A23DE9aD6 | Bread | | ethereum/erc20/bread |
| Ethereum | BMI | 0x725C263e32c72dDC3A19bEa12C5a0479a81eE688 | Bridge Mutual | | ethereum/erc20/bridge_mutual |
| Ethereum | BNN | 0xDA80B20038BDF968C7307BB5907A469482CF6251 | BrokerNekoNetwork | | ethereum/erc20/brokernekonetwork |
| Ethereum | BUBO | 0xCCbf21ba6EF00802AB06637896B799f7101F54A2 | Budbo | | ethereum/erc20/budbo |
| Ethereum | BLX | 0xcE59d29b09aAE565fEEEf8E52f47c3CD5368C663 | Bullion Crypto | countervalues disabled | ethereum/erc20/bullion_crypto |
| Ethereum | BURNX | 0x106238737b85b4220C7A7DdFD5c4cAF8597281fe | BurnXToken | | ethereum/erc20/burnxtoken |
| Ethereum | BURP | 0x33f391F4c4fE802b70B77AE37670037A92114A7c | Burp | | ethereum/erc20/burp |
| Ethereum | BFLY | 0xf680429328caaaCabee69b7A9FdB21a71419c063 | Butterfly Protocol Governance Token | countervalues disabled | ethereum/erc20/butterfly_protocol_governance_token |
| Ethereum | BTH | 0xFAd572db566E5234AC9Fc3d570c4EdC0050eAA92 | Bytether | | ethereum/erc20/bytether |
| Ethereum | BTM | 0xcB97e65F07DA24D46BcDD078EBebd7C6E6E3d750 | Bytom | | ethereum/erc20/bytom |
| Ethereum | CGT | 0xF5238462E7235c7B62811567E63Dd17d12C2EAA0 | CACHE Gold | delisted, countervalues disabled | ethereum/erc20/cache_gold |
| Ethereum | CAMI | 0xA809CeDeE9B61956c768EAa10272dd5E0FD1A985 | CAMI | countervalues disabled | ethereum/erc20/cami |
| Ethereum | CAN | 0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0 | CAN | | ethereum/erc20/can |
| Ethereum | CAPP | 0x11613b1f840bb5A40F8866d857e24DA126B79D73 | CAPP Token | | ethereum/erc20/capp_token |
| Ethereum | CARDS | 0x3d6F0DEa3AC3C607B3998e6Ce14b6350721752d9 | CARD.STARTER | countervalues disabled | ethereum/erc20/card.starter |
| Ethereum | CAS | 0x779492d3644dDF4495Aa2d80C468E1B7be6AF1d2 | CAS Coin | countervalues disabled | ethereum/erc20/cas_coin |
| Ethereum | CTT | 0x1A4743Cf1af4C289351390A2B3fe7c13D2F7C235 | CASTWEET | delisted, countervalues disabled | ethereum/erc20/castweet |
| Ethereum | CAT | 0x1234567461d3f8Db7496581774Bd869C83D51c93 | CAT (BitClave) | | ethereum/erc20/cat__bitclave_ |
| Ethereum | CAT | 0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8 | CAT (Blockcat) | countervalues disabled | ethereum/erc20/cat__blockcat_ |
| Ethereum | CATS | 0x8293bBd92C42608B20af588620a76128A33e4De9 | CATCOIN | | ethereum/erc20/catcoin |
| Ethereum | CAT | 0x68e14bb5A45B9681327E16E528084B9d962C1a39 | CATs (BitClave)_Old | delisted, countervalues disabled | ethereum/erc20/cats__bitclave__old |
| Ethereum | BREE | 0x4639cd8cd52EC1CF2E496a606ce28D8AfB1C792F | CBDAO | countervalues disabled | ethereum/erc20/cbdao |
| Ethereum | CCC | 0xBE11eEb186e624b8f26A5045575a1340E4054552 | CCC (ICONOMI) | countervalues disabled | ethereum/erc20/ccc__iconomi_ |
| Ethereum | CDX | 0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b | CDX | | ethereum/erc20/cdx |
| Ethereum | CEEK | 0xb056c38f6b7Dc4064367403E26424CD2c60655e1 | CEEK VR Token | | ethereum/erc20/ceek_vr_token |
| Ethereum | CFI | 0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e | CFI | delisted, countervalues disabled | ethereum/erc20/cfi |
| Ethereum | C3 | 0xf1a91C7d44768070F711c68f33A7CA25c8D30268 | CHARLI3 | countervalues disabled | ethereum/erc20/charli3 |
| Ethereum | CHF+ | 0x18aA37548ADc1826411b5da2AA026E7E7af9Ca4f | CHF+ Dukascash | delisted, countervalues disabled | ethereum/erc20/chf+_dukascash |
| Ethereum | CHONK | 0x84679bc467DC6c2c40ab04538813AfF3796351f1 | CHONK | countervalues disabled | ethereum/erc20/chonk |
| Ethereum | CHSB | 0xba9d4199faB4f26eFE3551D490E3821486f135Ba | CHSB | | ethereum/erc20/chsb |
| Ethereum | CIM | 0x456c636cA9fD54DBdd66de6C1C0fEaf5637DdB7B | CIMTOKEN | | ethereum/erc20/cimtoken |
| Ethereum | CK | 0x06012c8cf97BEaD5deAe237070F9587f8E7A266d | CK | | ethereum/erc20/ck |
| Ethereum | XCL | 0x0843971B4ac6e842a518AA184e0271d88B5cB74F | CLASSIE | | ethereum/erc20/classie |
| Ethereum | CMBT | 0x3EDD235C3E840C1F29286B2e39370a255C7B6fdb | CMBToken | | ethereum/erc20/cmbtoken |
| Ethereum | CNN | 0x8713d26637CF49e1b6B4a7Ce57106AaBc9325343 | CNN Token | countervalues disabled | ethereum/erc20/cnn_token |
| Ethereum | CO2BIT | 0x574B36BceD443338875d171CC377E691f7d4F887 | CO2Bit | | ethereum/erc20/co2bit |
| Ethereum | CODEO | 0x46b4a7d906F1A943b7744Df23625E63726d79035 | CODEO Token | delisted, countervalues disabled | ethereum/erc20/codeo_token |
| Ethereum | CPL | 0x248C27F814EF2c9C51c26398d09715Cd35142fC4 | COPYLOCK | | ethereum/erc20/copylock |
| Ethereum | CPY | 0xf44745fBd41F6A1ba151df190db0564c5fCc4410 | COPYTRACK | | ethereum/erc20/copytrack |
| Ethereum | COR | 0x9C2dc0c3CC2BADdE84B0025Cf4df1c5aF288D835 | COR Token | countervalues disabled | ethereum/erc20/cor_token |
| Ethereum | COSS | 0x65292EeadF1426Cd2dF1C4793a3d7519f253913b | COSS | countervalues disabled | ethereum/erc20/coss |
| Ethereum | COTI | 0xDDB3422497E61e13543BeA06989C0789117555c5 | COTI | delisted, countervalues disabled | ethereum/erc20/coti |
| Ethereum | CPAY | 0x0Ebb614204E47c09B6C3FeB9AAeCad8EE060E23E | CPAY | | ethereum/erc20/cpay |
| Ethereum | CPC | 0xfAE4Ee59CDd86e3Be9e8b90b53AA866327D7c090 | CPChain | | ethereum/erc20/cpchain |
| Ethereum | CPLO | 0x7064aAb39A0Fcf7221c3396719D0917a65E35515 | CPOLLO | | ethereum/erc20/cpollo |
| Ethereum | CR7 | 0x7F585B9130c64e9e9F470b618A7badD03D79cA7E | CR7Coin | | ethereum/erc20/cr7coin |
| Ethereum | CRB | 0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5 | CRB | | ethereum/erc20/crb |
| Ethereum | CRED | 0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD | CRED | | ethereum/erc20/cred |
| Ethereum | CS | 0x46b9Ad944d1059450Da1163511069C718F699D31 | CREDITS | | ethereum/erc20/credits |
| Ethereum | CRPT | 0x08389495D7456E1951ddF7c3a1314A4bfb646d8B | CRPT | countervalues disabled | ethereum/erc20/crpt |
| Ethereum | CRBT | 0x2cF618c19041D9Db330d8222B860A624021F30fb | CRUISEBIT | | ethereum/erc20/cruisebit |
| Ethereum | CRU | 0x32a7C02e79c4ea1008dD6564b35F131428673c41 | CRUST | countervalues disabled | ethereum/erc20/crust |
| Ethereum | C10 | 0x000C100050E98C91f9114fa5Dd75CE6869Bf4F53 | CRYPTO10 Hedged | | ethereum/erc20/crypto10_hedged |
| Ethereum | C20 | 0x26E75307Fc0C021472fEb8F727839531F112f317 | CRYPTO20 | | ethereum/erc20/crypto20 |
| Ethereum | DEPO | 0x7cF271966F36343Bf0150F25E5364f7961c58201 | CRYPTODEPOZIT | countervalues disabled | ethereum/erc20/cryptodepozit |
| Ethereum | NEBO | 0x7f0c8B125040f707441cad9e5eD8a8408673b455 | CSP DAO | countervalues disabled | ethereum/erc20/csp_dao |
| Ethereum | CTG | 0xC87c5dD86A3d567fF28701886fB0745aaa898da4 | CT Global Token | | ethereum/erc20/ct_global_token |
| Ethereum | CTL | 0xBf4cFD7d1eDeeEA5f6600827411B41A21eB08abd | CTL | | ethereum/erc20/ctl |
| Ethereum | AUTO | 0x622dFfCc4e83C64ba959530A5a5580687a57581b | CUBE | | ethereum/erc20/cube |
| Ethereum | CURRY | 0xc2D3AE29c8309c14994D02Ecd228cf86f3Efde77 | CURRYSWAP | | ethereum/erc20/curryswap |
| Ethereum | CVC | 0x41e5560054824eA6B0732E656E3Ad64E20e94E45 | CVC | | ethereum/erc20/cvc |
| Ethereum | CZR | 0x0223fc70574214F65813fE336D870Ac47E147fAe | CZR | | ethereum/erc20/czr |
| Ethereum | CCS | 0x315cE59FAFd3A8d562b7Ec1C8542382d2710b06c | CacaoShares | | ethereum/erc20/cacaoshares |
| Ethereum | CALVIN | 0xdc8092AaF83e00Ebf9B01A2e90b7B7eF867ba503 | Calvin | countervalues disabled | ethereum/erc20/calvin |
| Ethereum | CNB | 0xEBf2F9E8De960f64ec0fDCDa6Cb282423133347B | Canabio | | ethereum/erc20/canabio |
| Ethereum | CAP | 0x43044f861ec040DB59A7e324c40507adDb673142 | Cap | countervalues disabled | ethereum/erc20/cap |
| Ethereum | CAPP | 0x04F2E7221fdb1B52A68169B25793E51478fF0329 | Cappasity (old) | delisted, countervalues disabled | ethereum/erc20/cappasity (old) |
| Ethereum | CAPS | 0x03Be5C903c727Ee2C8C4e9bc0AcC860Cca4715e2 | Capsule Coin | countervalues disabled | ethereum/erc20/capsule_coin |
| Ethereum | CAR | 0x423e4322CDDa29156b49a17dfbd2aCC4b280600D | Car Sharing Community | countervalues disabled | ethereum/erc20/car_sharing_community |
| Ethereum | CAR | 0x4D9e23a3842fE7Eb7682B9725cF6c507C424A41B | CarBlock | | ethereum/erc20/carblock |
| Ethereum | CTX | 0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66 | CarTaxi | | ethereum/erc20/cartaxi |
| Ethereum | CARB | 0xA517a46Baad6B054A76bD19c46844f717fe69fea | CarbCoin | | ethereum/erc20/carbcoin |
| Ethereum | CDX | 0x2cb101d7dA0ebaA57D3F2fEf46D7FFB7BB64592B | Carbon Dollar X | countervalues disabled | ethereum/erc20/carbon_dollar_x |
| Ethereum | CGRID | 0xeb6486b13B56314B37aacAc2Ec6889d11a763de1 | Carbon Grid | | ethereum/erc20/carbon_grid |
| Ethereum | C8 | 0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d | Carboneum | | ethereum/erc20/carboneum |
| Ethereum | CARD | 0x954b890704693af242613edEf1B603825afcD708 | Cardstack Token | | ethereum/erc20/cardstack_token |
| Ethereum | CRGO | 0xf49CDD50aD408d387d611F88A647179C3de3492b | CargoCoin | | ethereum/erc20/cargocoin |
| Ethereum | CXO | 0xb6EE9668771a79be7967ee29a63D4184F8097143 | CargoX | | ethereum/erc20/cargox |
| Ethereum | CRE | 0x115eC79F1de567eC68B7AE7eDA501b406626478e | CarryToken | delisted, countervalues disabled | ethereum/erc20/carrytoken |
| Ethereum | CTSI | 0x491604c0FDF08347Dd1fa4Ee062a822A5DD06B5D | Cartesi Token | | ethereum/erc20/cartesi_token |
| Ethereum | CATE | 0xa42F266684ac2aD6ecb00df95b1c76EFbb6f136c | Cash Tech | countervalues disabled | ethereum/erc20/cash_tech |
| Ethereum | CBC | 0x26DB5439F651CAF491A87d48799dA81F191bDB6b | CashBetCoin | | ethereum/erc20/cashbetcoin |
| Ethereum | CAS | 0xe8780B48bdb05F928697A5e8155f672ED91462F7 | Cashaa | | ethereum/erc20/cashaa |
| Ethereum | CCO | 0x679BADc551626e01B23CeecEFBc9B877EA18fc46 | Ccore | | ethereum/erc20/ccore |
| Ethereum | CELR | 0x4F9254C83EB525f9FCf346490bbb3ed28a81C667 | Celer | | ethereum/erc20/celer |
| Ethereum | CELL | 0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099 | Cellframe Token | countervalues disabled | ethereum/erc20/cellframe_token |
| Ethereum | CEL | 0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d | Celsius | | ethereum/erc20/celsius |
| Ethereum | XCF | 0x010D14d36C3eA6570D240ae3ac9d660398f7C48e | Cenfura Token | delisted, countervalues disabled | ethereum/erc20/cenfura_token |
| Ethereum | CNTR | 0x03042482d64577A7bdb282260e2eA4c8a89C064B | Centaur Token | delisted, countervalues disabled | ethereum/erc20/centaur_token |
| Ethereum | CTR | 0x96A65609a7B84E8842732DEB08f56C3E21aC6f8a | Centra | | ethereum/erc20/centra |
| Ethereum | CENNZ | 0x1122B6a0E00DCe0563082b6e2953f3A943855c1F | Centrality Token | | ethereum/erc20/centrality_token |
| Ethereum | CHAI | 0x06AF07097C9Eeb7fD685c692751D5C66dB49c215 | Chai | countervalues disabled | ethereum/erc20/chai |
| Ethereum | CHAIN | 0xC4C2614E694cF534D407Ee49F8E44D125E4681c4 | Chain Games | delisted, countervalues disabled | ethereum/erc20/chain_games |
| Ethereum | CGG | 0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43 | ChainGuardians Governance Token | countervalues disabled | ethereum/erc20/chainguardians_governance_token |
| Ethereum | CTT | 0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5 | ChainTrade Token | | ethereum/erc20/chaintrade_token |
| Ethereum | CHX | 0x1460a58096d80a50a2F1f956DDA497611Fa4f165 | Chainium | | ethereum/erc20/chainium |
| Ethereum | CAG | 0x7d4b8Cce0591C9044a22ee543533b72E976E36C3 | Change Bank | | ethereum/erc20/change_bank |
| Ethereum | CHART | 0x1d37986F252d0e349522EA6C3B98Cb935495E63E | ChartEx | | ethereum/erc20/chartex |
| Ethereum | CHERRY | 0x4eCB692B0fEDeCD7B486b4c99044392784877E8C | Cherry | countervalues disabled | ethereum/erc20/cherry |
| Ethereum | CHI | 0x0000000000004946c0e9F43F4Dee607b0eF1fA1c | Chi Gastoken by 1inch | countervalues disabled | ethereum/erc20/chi_gastoken_by_1inch |
| Ethereum | CHIHUA | 0x26fF6D16549A00BA8b36ce3159b5277E6e798d18 | Chihua Token | countervalues disabled | ethereum/erc20/chihua_token |
| Ethereum | CCLC | 0xd348e07A2806505B856123045d27aeeD90924b50 | Christ Coin | | ethereum/erc20/christ_coin |
| Ethereum | CHR | 0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2 | Chroma | | ethereum/erc20/chroma |
| Ethereum | TIME | 0x485d17A6f1B8780392d53D64751824253011A260 | ChronoTech Token | | ethereum/erc20/chronotech_token |
| Ethereum | TIME | 0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53 | Chronobank (old) | countervalues disabled | ethereum/erc20/chronobank |
| Ethereum | CND | 0xd4c435F5B09F855C3317c8524Cb1F586E42795fa | Cindicator | | ethereum/erc20/cindicator |
| Ethereum | COVAL | 0x3D658390460295FB963f54dC0899cfb1c30776Df | CircuitsOfValue | countervalues disabled | ethereum/erc20/circuitsofvalue |
| Ethereum | CLM | 0x0ED8343dfdEE32E38b4c4cE15a3b00A59E90F3dB | Claymore | | ethereum/erc20/claymore |
| Ethereum | XCLR | 0x1E26b3D07E57F453caE30F7DDd2f945f5bF3EF33 | ClearCoin | | ethereum/erc20/clearcoin |
| Ethereum | POLL | 0x705EE96c1c160842C92c1aeCfCFfccc9C412e3D9 | ClearPoll | | ethereum/erc20/clearpoll |
| Ethereum | CO2 | 0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b | Climatecoin | | ethereum/erc20/climatecoin |
| Ethereum | CTI | 0x8c18D6a985Ef69744b9d57248a45c0861874f244 | ClinTex | delisted, countervalues disabled | ethereum/erc20/clintex |
| Ethereum | CKCT | 0xf6BC5dDB21B22b76A31c719a8Ae904232055d876 | Clink | | ethereum/erc20/clink |
| Ethereum | CXC | 0x213FBEE1394B460eeD9D1F87f0066C4CA5B85cEA | ClipX | delisted, countervalues disabled | ethereum/erc20/clipx |
| Ethereum | CCCX | 0x378903a03FB2C3AC76BB52773e3CE11340377A32 | Clipper Coin Capital | | ethereum/erc20/clipper_coin_capital |
| Ethereum | CLB | 0xb1c1Cb8C7c1992dba24e628bF7d38E71daD46aeB | Cloudbric | | ethereum/erc20/cloudbric |
| Ethereum | COFI | 0x1a23a6BfBAdB59fa563008c0fB7cf96dfCF34Ea1 | CoFi Token | countervalues disabled | ethereum/erc20/cofi_token |
| Ethereum | COSHI | 0x668C50B1c7f46EFFBE3f242687071d7908AAB00A | CoShi Inu | countervalues disabled | ethereum/erc20/coshi_inu |
| Ethereum | COT | 0x5c872500c00565505F3624AB435c222E558E9ff8 | CoTrader | countervalues disabled | ethereum/erc20/cotrader |
| Ethereum | CC3 | 0xc166038705FFBAb3794185b3a9D925632A1DF37D | Coal Coin | | ethereum/erc20/coal_coin |
| Ethereum | CBLT | 0x29a99c126596c0Dc96b02A88a9EAab44EcCf511e | Cobalt | delisted, countervalues disabled | ethereum/erc20/cobalt |
| Ethereum | COB | 0xb2F7EB1f2c37645bE61d73953035360e768D81E6 | Cobinhood Token | | ethereum/erc20/cobinhood_token |
| Ethereum | COCOS | 0x0C6f5F7D555E7518f6841a79436BD2b1Eef03381 | CocosToken (old) | countervalues disabled | ethereum/erc20/cocostoken_old |
| Ethereum | COCOS | 0xc4c7Ea4FAB34BD9fb9a5e1B1a98Df76E26E6407c | CocosTokenV2 | | ethereum/erc20/cocostokenv2 |
| Ethereum | COIN | 0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850 | Coin Utility Token | countervalues disabled | ethereum/erc20/coin_utility_token |
| Ethereum | CCX | 0x395dc9A82e3Eef962b0355A3d4E6819e9Af776D2 | CoinCasso Exchange Token | | ethereum/erc20/coincasso_exchange_token |
| Ethereum | XCC | 0x4d829f8C92a6691c56300D020c9e0dB984Cfe2BA | CoinCrowd | | ethereum/erc20/coincrowd |
| Ethereum | CDT | 0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af | CoinDash | | ethereum/erc20/coindash |
| Ethereum | CET | 0x081F67aFA0cCF8c7B17540767BBe95DF2bA8D97F | CoinEx Token | | ethereum/erc20/coinex_token |
| Ethereum | COFI | 0x3136eF851592aCf49CA4C825131E364170FA32b3 | CoinFi Token | | ethereum/erc20/coinfi_token |
| Ethereum | XCM | 0x36ac219f90f5A6A3C77f2a7B660E3cC701f68e25 | CoinMetro Token | | ethereum/erc20/coinmetro_token |
| Ethereum | XCM | 0x44E2ca91ceA1147f1B503e669f06CD11FB0C5490 | CoinMetro Token (old) | countervalues disabled | ethereum/erc20/coinmetro_token_old |
| Ethereum | COIL | 0x0C91B015AbA6f7B4738dcD36E7410138b29ADC29 | CoinOil | | ethereum/erc20/coinoil |
| Ethereum | CPEX | 0xb787d4eAc8899730bb8C57fc3c998c49c5244ec0 | CoinPulseToken | | ethereum/erc20/coinpulsetoken |
| Ethereum | CGI | 0xAdA0A1202462085999652Dc5310a7A9e2BF3eD42 | CoinShares Gold and Cryptoassets Index Lite | countervalues disabled | ethereum/erc20/coinshares_gold_and_cryptoassets_index_lite |
| Ethereum | CL | 0xe81D72D14B1516e68ac3190a46C93302Cc8eD60f | Coinlancer | | ethereum/erc20/coinlancer |
| Ethereum | COINS | 0xa48D3B79F43477224933E492E42f5CACf4091ECc | Coinstar | | ethereum/erc20/coinstar |
| Ethereum | COIN | 0xeb547ed1D8A3Ff1461aBAa7F0022FED4836E00A4 | Coinvest V3 Token | | ethereum/erc20/coinvest_v3_token |
| Ethereum | CLS | 0x675BBC7514013E2073DB7a919F6e4cbeF576de37 | Coldstack | countervalues disabled | ethereum/erc20/coldstack |
| Ethereum | CLN | 0x4162178B78D6985480A308B2190EE5517460406D | ColuLocalNetwork | | ethereum/erc20/colulocalnetwork |
| Ethereum | CBT | 0x076C97e1c869072eE22f8c91978C99B4bcB02591 | CommerceBlock | | ethereum/erc20/commerceblock |
| Ethereum | COM | 0x1B4052d98fb1888C2Bf3B8d3b930e0aFf8A910dF | Community Token | countervalues disabled | ethereum/erc20/community_token |
| Ethereum | COMFI | 0x752Efadc0a7E05ad1BCCcDA22c141D01a75EF1e4 | CompliFi | countervalues disabled | ethereum/erc20/complifi |
| Ethereum | COMP | 0xc00e94Cb662C3520282E6f5717214004A7f26888 | Compound | | ethereum/erc20/compound |
| Ethereum | CZRX | 0xB3319f5D18Bc0D84dD1b4825Dcde5d5f7266d407 | Compound 0x | countervalues disabled | ethereum/erc20/compound_0x |
| Ethereum | CREP | 0x158079Ee67Fce2f58472A96584A73C7Ab9AC95c1 | Compound Augur | countervalues disabled | ethereum/erc20/compound_augur |
| Ethereum | CBAT | 0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E | Compound Basic Attention Token | countervalues disabled | ethereum/erc20/compound_basic_attention_token |
| Ethereum | CDAI | 0x5d3a536E4D6DbD6114cc1Ead35777bAB948E3643 | Compound DAI | delisted, countervalues disabled | ethereum/erc20/compound_dai |
| Ethereum | CETH | 0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5 | Compound Ether | | ethereum/erc20/compound_ether |
| Ethereum | CSAI | 0xF5DCe57282A584D2746FaF1593d3121Fcac444dC | Compound SAI | delisted, countervalues disabled | ethereum/erc20/compound_sai |
| Ethereum | CUSDC | 0x39AA39c021dfbaE8faC545936693aC917d5E7563 | Compound USD Coin | delisted, countervalues disabled | ethereum/erc20/compound_usd_coin |
| Ethereum | CUSDT | 0xf650C3d88D12dB855b8bf7D11Be6C55A4e07dCC9 | Compound USDT | delisted, countervalues disabled | ethereum/erc20/compound_usdt |
| Ethereum | CUNI | 0x35A18000230DA775CAc24873d00Ff85BccdeD550 | Compound Uniswap | countervalues disabled | ethereum/erc20/compound_uniswap |
| Ethereum | CWBTC | 0xC11b1268C1A384e55C48c2391d8d480264A3A7F4 | Compound Wrapped BTC | countervalues disabled | ethereum/erc20/compound_wrapped_btc |
| Ethereum | CVP | 0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1 | Concentrated Voting Power | countervalues disabled | ethereum/erc20/concentrated_voting_power |
| Ethereum | CDL | 0x8a95ca448A52C0ADf0054bB3402dC5e09CD6B232 | Confideal | | ethereum/erc20/confideal |
| Ethereum | CNFI | 0xEABB8996eA1662cAd2f7fB715127852cd3262Ae9 | Connect Financial | countervalues disabled | ethereum/erc20/connect_financial |
| Ethereum | CJT | 0x3abdfF32F76b42E7635bdb7e425f0231A5F3aB17 | ConnectJob | | ethereum/erc20/connectjob |
| Ethereum | DAG | 0xA8258AbC8f2811dd48EccD209db68F25E3E34667 | Constellation token | | ethereum/erc20/constellation_token |
| Ethereum | BOX | 0x63f584FA56E60e4D0fE8802b27C7e6E3b33E007f | ContentBox | | ethereum/erc20/contentbox |
| Ethereum | COS | 0x589891a198195061Cb8ad1a75357A3b7DbaDD7Bc | Contentos | | ethereum/erc20/contentos |
| Ethereum | CPT | 0x9B62513c8a27290CF6A7A9e29386e600245EA819 | Contents Protocol Token | | ethereum/erc20/contents_protocol_token |
| Ethereum | TRIB | 0xe09216F1d343Dd39D6Aa732a08036fee48555Af0 | Contribute | delisted, countervalues disabled | ethereum/erc20/contribute |
| Ethereum | CTGC | 0x9E7D29bd499B6c7da2a5B2EaFCF4A39d3BD845D1 | Convenient To Go | | ethereum/erc20/convenient_to_go |
| Ethereum | CONV | 0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50 | Convergence | | ethereum/erc20/convergence |
| Ethereum | CVXCRV | 0x62B9c7356A2Dc64a1969e19C23e4f579F9810Aa7 | Convex CRV | countervalues disabled | ethereum/erc20/convex_crv |
| Ethereum | CVX | 0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B | Convex Token | countervalues disabled | ethereum/erc20/convex_token |
| Ethereum | COOK | 0xFF75CEd57419bcaEBe5F05254983b013B0646eF5 | Cook Token | countervalues disabled | ethereum/erc20/cook_token |
| Ethereum | CORGI | 0xE50006781F435AE43096288334AFd9Ae5Ba50065 | Corgi Inu | countervalues disabled | ethereum/erc20/corgi_inu |
| Ethereum | CTXC | 0xEa11755Ae41D889CeEc39A63E6FF75a02Bc1C00d | Cortex Coin | | ethereum/erc20/cortex_coin |
| Ethereum | COSM | 0xC4Bcd64CB216D49fD3C643A32762F34626b45a1a | CosmoCoin | | ethereum/erc20/cosmocoin |
| Ethereum | COSS | 0x9e96604445Ec19fFed9a5e8dd7B50a29C899A10C | Coss Token | | ethereum/erc20/coss_token |
| Ethereum | CQT | 0xD417144312DbF50465b1C641d016962017Ef6240 | Covalent Query Token | | ethereum/erc20/covalent_query_token |
| Ethereum | COVER | 0x4688a8b1F292FDaB17E9a90c8Bc379dC1DBd8713 | Cover Protocol Governance Token | | ethereum/erc20/cover_protocol_governance_token |
| Ethereum | COV | 0xADA86b1b313D1D5267E3FC0bB303f0A2b66D0Ea7 | Covesting | | ethereum/erc20/covesting |
| Ethereum | COV | 0xE2FB6529EF566a080e6d23dE0bd351311087D567 | Covesting (Old) | delisted, countervalues disabled | ethereum/erc20/covesting_ |
| Ethereum | CXC | 0x2134057C0b461F898D375Cead652Acae62b59541 | CoxxxCoin | | ethereum/erc20/coxxxcoin |
| Ethereum | CFTY | 0x6956983F8B3Ce173B4AB84361AA0ad52f38D936f | Crafty Token | | ethereum/erc20/crafty_token |
| Ethereum | CREAM | 0x2ba592F78dB6436527729929AAf6c908497cB200 | Cream | | ethereum/erc20/cream |
| Ethereum | CRT | 0xF0da1186a4977226b9135d0613ee72e229EC3F4d | CreamtoeCoin | | ethereum/erc20/creamtoecoin |
| Ethereum | CPAL | 0x31910AFF5545784755970aE1fBE7fE65d5F0eEa2 | CreatorPAL | | ethereum/erc20/creatorpal |
| Ethereum | LBA | 0xfe5F141Bf94fE84bC28deD0AB966c16B17490657 | Cred | countervalues disabled | ethereum/erc20/libratoken |
| Ethereum | CREDO | 0x4E0603e2A27A30480E5e3a4Fe548e29EF12F64bE | Credo / Bitbounce | | ethereum/erc20/credo___bitbounce |
| Ethereum | CRMT | 0x9238bfB781A55eACC3Cf05F7DF94038c198CD9B9 | Cremit | | ethereum/erc20/cremit |
| Ethereum | CMCT | 0x47bc01597798DCD7506DCCA36ac4302fc93a8cFb | Crowd Machine Compute Token | | ethereum/erc20/crowd_machine_compute_token |
| Ethereum | CWS | 0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0 | Crowns | countervalues disabled | ethereum/erc20/crowns |
| Ethereum | CRWNY | 0xDBdDf072d7aae7B9288e31A4eebe6C54e3a143b1 | Crowny Token | countervalues disabled | ethereum/erc20/crowny_token |
| Ethereum | CRC | 0xF41e5Fbc2F6Aac200Dd8619E121CE1f05D150077 | CryCash | countervalues disabled | ethereum/erc20/crycash |
| Ethereum | CFC | 0x5Dff89a2caa4D76bc286F74D67Bd718eb834da61 | CryptFillCoin | | ethereum/erc20/cryptfillcoin |
| Ethereum | CRD | 0xcAaa93712BDAc37f736C323C93D4D5fDEFCc31CC | CryptalDash | countervalues disabled | ethereum/erc20/cryptaldash |
| Ethereum | CPT | 0x88d50B466BE55222019D71F9E8fAe17f5f45FCA1 | Cryptaur | countervalues disabled | ethereum/erc20/cryptaur |
| Ethereum | CRPT | 0x80A7E048F37A50500351C204Cb407766fA3baE7f | CrypteriumToken (old) | delisted, countervalues disabled | ethereum/erc20/crypteriumtoken_ |
| Ethereum | CTX | 0x321C2fE4446C7c963dc41Dd58879AF648838f98D | Cryptex | countervalues disabled | ethereum/erc20/cryptex |
| Ethereum | CBRL | 0xA6FA6531acDf1f9F96EDdD66a0F9481E35c2e42A | Crypto BRL | delisted, countervalues disabled | ethereum/erc20/crypto_brl |
| Ethereum | CRO | 0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b | Crypto.com | | ethereum/erc20/cro |
| Ethereum | MCO | 0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d | Crypto.com | | ethereum/erc20/crypto_com |
| Ethereum | CBM | 0x95eFD1Fe6099F65a7ED524DEF487483221094947 | CryptoBonusMiles | | ethereum/erc20/cryptobonusmiles |
| Ethereum | CCRB | 0xE4c94d45f7Aef7018a5D66f44aF780ec6023378e | CryptoCarbon | | ethereum/erc20/cryptocarbon |
| Ethereum | CC | 0x9e547061A345015869D26C7B6Ee4aB5b63424441 | CryptoCart | countervalues disabled | ethereum/erc20/cryptocart |
| Ethereum | CCC | 0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7 | CryptoCrashCourse | countervalues disabled | ethereum/erc20/cryptocrashcourse |
| Ethereum | 3CS | 0x4f56221252d117f35E2f6Ab937A3F77CAd38934D | CryptoCricketClub | countervalues disabled | ethereum/erc20/cryptocricketclub |
| Ethereum | XCHF | 0xB4272071eCAdd69d933AdcD19cA99fe80664fc08 | CryptoFranc | | ethereum/erc20/cryptofranc |
| Ethereum | KEE | 0x72D32ac1c5E66BfC5b08806271f8eEF915545164 | CryptoKEE | | ethereum/erc20/cryptokee |
| Ethereum | CLP | 0x7FCE2856899a6806eeEf70807985fc7554C66340 | CryptoLending | | ethereum/erc20/cryptolending |
| Ethereum | CLL | 0x3dC9a42fa7Afe57BE03c58fD7F4411b1E466C508 | CryptoLiveLeak | | ethereum/erc20/cryptoliveleak |
| Ethereum | CMC | 0x7e667525521cF61352e2E01b50FaaaE7Df39749a | CryptoMart | | ethereum/erc20/cryptomart |
| Ethereum | CMS | 0x1f22AD99C334e6689bAe751CC225bCC38fe54F82 | CryptoMoonShots | countervalues disabled | ethereum/erc20/cryptomoonshots |
| Ethereum | SOUL | 0xBb1f24C0c1554b9990222f036b0AaD6Ee4CAec29 | CryptoSoul | | ethereum/erc20/cryptosoul |
| Ethereum | CTF | 0x4545750F39aF6Be4F237B6869D4EccA928Fd5A85 | CryptoTask | | ethereum/erc20/cryptotask |
| Ethereum | CC10 | 0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3 | Cryptocurrency Top 10 Tokens Index | | ethereum/erc20/cryptocurrency_top_10_tokens_index |
| Ethereum | KEK | 0x3fa400483487A489EC9b1dB29C4129063EEC4654 | Cryptokek.com | countervalues disabled | ethereum/erc20/cryptokek.com |
| Ethereum | CST | 0xBB49A51Ee5a66ca3a8CbE529379bA44Ba67E6771 | Cryptosolartech | | ethereum/erc20/cryptosolartech |
| Ethereum | CCT | 0x336F646F87D9f6bC6Ed42Dd46E8b3fD9DbD15C22 | Crystal Clear Token | | ethereum/erc20/crystal_clear_token |
| Ethereum | CBIX | 0x05C3617cBf1304b9260AA61ec960F115D67beCEA | Cubrix | | ethereum/erc20/cubrix |
| Ethereum | CUDOS | 0x817bbDbC3e8A1204f3691d14bB44992841e3dB35 | CudosToken | countervalues disabled | ethereum/erc20/cudostoken |
| Ethereum | CUR | 0x13339fD07934CD674269726EdF3B5ccEE9DD93de | CurToken | | ethereum/erc20/curtoken |
| Ethereum | XCUR | 0xE1c7E30C42C24582888C758984f6e382096786bd | Curate | countervalues disabled | ethereum/erc20/curate |
| Ethereum | CRNC | 0xC9a1e678c9025f0D4Cf129D6De0d80f07d97A36F | Current | | ethereum/erc20/current |
| Ethereum | CRV | 0xD533a949740bb3306d119CC777fa900bA034cd52 | Curve DAO Token | | ethereum/erc20/curve_dao_token |