-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustomCoinDatat.json
More file actions
2840 lines (2840 loc) · 159 KB
/
customCoinDatat.json
File metadata and controls
2840 lines (2840 loc) · 159 KB
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
{
"f71aff6180995945": {
"name": "Bitcoin",
"symbol": "btc",
"price": 67927,
"livePrice": {
"value": 67927,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd"
},
"rank": 1,
"cap": 1358702143378,
"addedDate": "1774924746052",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "2009-01-03",
"token": true,
"description": "Bitcoin is the world's first decentralized cryptocurrency, created in 2009 by the pseudonymous Satoshi Nakamoto. It enables peer-to-peer electronic cash transactions without intermediaries like banks or governments, operating on a blockchain secured by Proof of Work mining and the SHA-256 cryptographic algorithm. \n\nWith a fixed supply cap of 21 million coins and programmatic halvings every four years that reduce miner rewards, Bitcoin is designed as a deflationary digital asset often called \"digital gold.\" Its value stems from solving the double-spending problem without trusted intermediaries, creating the first truly scarce digital asset with censorship resistance and permissionless access that no government, corporation, or individual can control.\n\nBitcoin operates as a decentralized peer-to-peer network where transactions are recorded on a public ledger called the blockchain, distributed across thousands of computers globally. Transactions are grouped into blocks added approximately every 10 minutes through mining, where specialized computers compete to solve complex mathematical puzzles. \n\nBitcoin has achieved mainstream adoption through multiple vectors. The January 2024 SEC approval of 11 spot Bitcoin ETFs opened Bitcoin investment to traditional finance participants, and corporations like Strategy (formerly MicroStrategy) are using Bitcoin as a treasury reserve asset to protect against currency debasement, offering MSTR holders amplified exposure to Bitcoin. \n\nThe Bitcoin ecosystem continues to evolve with innovations like Ordinals, which emerged in January 2023 to enable NFT-like functionality directly on Bitcoin, and BRC-20 tokens, an experimental standard for creating fungible tokens using Ordinal inscriptions. BTCFi (Bitcoin Finance) represents emerging financial applications extending beyond Bitcoin's traditional role, with protocols like Babylon allowing Bitcoin holders to stake BTC to secure Proof of Stake chains. ",
"explorerLink": "https://mempool.space/",
"address": {},
"website": "http://www.bitcoin.org",
"reddit": "https://www.reddit.com/r/Bitcoin/",
"telegram": "",
"twitter": "https://twitter.com/bitcoin",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/1/large/bitcoin.png?1696501400",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 41309908343,
"high_24h": 68130,
"low_24h": 66258,
"price_change_24h": 1354,
"price_change_percentage_24h": 2.03448,
"market_cap_change_24h": 26593223277,
"market_cap_change_percentage_24h": 1.99632,
"circulating_supply": 20009356,
"total_supply": 20009356,
"max_supply": 21000000,
"last_updated": "2026-03-31T02:39:00.725Z",
"platforms": {}
},
"22cd37e11f659b82": {
"name": "Ethereum",
"symbol": "eth",
"price": 2073.63,
"livePrice": {
"value": 2073.63,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=ethereum&vs_currencies=usd"
},
"rank": 2,
"cap": 250251324231,
"addedDate": "1774924761088",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "2015-07-30",
"token": true,
"description": "Ethereum is a global, open-source platform for decentralized applications. In other words, it is a decentralized blockchain platform that enables developers to build and deploy smart contracts and applications without central authority control. Unlike Bitcoin, which primarily functions as digital currency, Ethereum operates as a programmable global computer where developers can create any type of decentralized service. \n\nThe platform hosts over $14 billion in DeFi applications with hundreds of thousands of active users across financial protocols, NFT marketplaces, and gaming platforms. Its transition to Proof of Stake in September 2022 reduced energy consumption by over 99%, addressing environmental concerns while strengthening network security.\n\nThe network operates through thousands of independent validator nodes that process transactions and execute smart contracts on the Ethereum Virtual Machine. Smart contracts are self-executing programs written in Solidity that automatically carry out agreements when conditions are met, eliminating intermediaries like banks or brokers. \n\nValidators stake ETH as collateral to propose and validate blocks, earning rewards for honest participation while facing penalties for malicious behavior. The EIP-1559 upgrade introduced a dynamic base fee mechanism that burns ETH with each transaction, creating deflationary pressure during high network activity when more ETH is burned than issued to validators.\n\nVitalik Buterin proposed Ethereum in 2013, but seven co-founders helped build it, including Gavin Wood who created Solidity and the EVM technical specification, and Joseph Lubin who founded ConsenSys. The project launched in July 2015 after raising over $18 million through crowdfunding, quickly becoming the largest blockchain developer community. Major milestones include the 2020 Beacon Chain launch, the 2021 London hard fork implementing fee burning, and the 2022 Merge to Proof of Stake. \n\nEther (ETH) serves multiple functions: paying transaction fees (gas), staking to secure the network and earn 3-5% annual yields, serving as collateral in DeFi protocols, and purchasing NFTs and digital assets. The asset is increasingly adopted by traditional institutions, with publicly traded companies adding ETH to corporate treasuries to generate staking yields while maintaining blockchain exposure, and in 2024, the SEC approved spot Ethereum ETFs, allowing traditional investors to gain exposure through conventional brokerage accounts.\n\nEthereum's roadmap focuses on dramatically increasing transaction capacity to over 100,000 per second, reducing confirmation times, and enhancing decentralization while maintaining security against future threats like quantum computing.",
"explorerLink": "https://etherscan.io/",
"address": {},
"website": "https://www.ethereum.org/",
"reddit": "https://www.reddit.com/r/ethereum",
"telegram": "",
"twitter": "https://twitter.com/ethereum",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/279/large/ethereum.png?1696501628",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 17376203513,
"high_24h": 2078.69,
"low_24h": 2008.14,
"price_change_24h": 65.491,
"price_change_percentage_24h": 3.26127,
"market_cap_change_24h": 7862218821,
"market_cap_change_percentage_24h": 3.24364,
"circulating_supply": 120691414.5176662,
"total_supply": 120691414.5176662,
"max_supply": 0,
"last_updated": "2026-03-31T02:38:10.935Z",
"platforms": {}
},
"770e6db709fa0984": {
"name": "Tether",
"symbol": "usdt",
"price": 0.999154,
"livePrice": {
"value": 0.999154,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=tether&vs_currencies=usd"
},
"rank": 3,
"cap": 184067076501,
"addedDate": "1774924776128",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "",
"token": true,
"description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar. The idea was to create a stable cryptocurrency that can be used like digital dollars. Coins that serve this purpose of being a stable dollar substitute are called “stable coins.” Tether is the most popular stable coin and even acts as a dollar replacement on many popular exchanges! According to their site, Tether converts cash into digital currency, to anchor or “tether” the value of the coin to the price of national currencies like the US dollar, the Euro, and the Yen. Like other cryptos it uses blockchain. Unlike other cryptos, it is [according to the official Tether site] “100% backed by USD” (USD is held in reserve). The primary use of Tether is that it offers some stability to the otherwise volatile crypto space and offers liquidity to exchanges who can’t deal in dollars and with banks (for example to the sometimes controversial but leading exchange Bitfinex)\n\nThe digital coins are issued by a company called Tether Limited that is governed by the laws of the British Virgin Islands, according to the legal part of its website. It is incorporated in Hong Kong. It has emerged that Jan Ludovicus van der Velde is the CEO of cryptocurrency exchange Bitfinex, which has been accused of being involved in the price manipulation of bitcoin, as well as tether. Many people trading on exchanges, including Bitfinex, will use tether to buy other cryptocurrencies like bitcoin. Tether Limited argues that using this method to buy virtual currencies allows users to move fiat in and out of an exchange more quickly and cheaply. Also, exchanges typically have rocky relationships with banks, and using Tether is a way to circumvent that.\n\nUSDT is fairly simple to use. Once on exchanges like Poloniex or Bittrex, it can be used to purchase Bitcoin and other cryptocurrencies. It can be easily transferred from an exchange to any Omni Layer enabled wallet. Tether has no transaction fees, although external wallets and exchanges may charge one. In order to convert USDT to USD and vise versa through the Tether.to Platform, users must pay a small fee. Buying and selling Tether for Bitcoin can be done through a variety of exchanges like the ones mentioned previously or through the Tether.to platform, which also allows the conversion between USD to and from your bank account.\n\n",
"explorerLink": "https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7",
"address": {
"ethereum": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"klay-token": "0xd077a400968890eacc75cdc901f0356c943e4fdb",
"tezos": "KT1XnTn74bUtxHfDtBmm2bGZAQfhPbvKWR8o",
"tron": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"solana": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"near-protocol": "usdt.tether-token.near",
"kava": "0x919c1c267bc06a7039e03fcc2ef738525769109c",
"celo": "0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e",
"the-open-network": "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs",
"aptos": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b",
"avalanche": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7"
},
"website": "https://tether.to/",
"reddit": "",
"telegram": "",
"twitter": "https://twitter.com/Tether_to",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/325/large/Tether.png?1696501661",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 64720629053,
"high_24h": 0.999348,
"low_24h": 0.999049,
"price_change_24h": 0.0000642,
"price_change_percentage_24h": 0.00643,
"market_cap_change_24h": 14298881,
"market_cap_change_percentage_24h": 0.00777,
"circulating_supply": 184222004209.0281,
"total_supply": 189688943150.6462,
"max_supply": 0,
"last_updated": "2026-03-31T02:39:14.138Z",
"platforms": {
"ethereum": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"klay-token": "0xd077a400968890eacc75cdc901f0356c943e4fdb",
"tezos": "KT1XnTn74bUtxHfDtBmm2bGZAQfhPbvKWR8o",
"tron": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
"solana": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
"near-protocol": "usdt.tether-token.near",
"kava": "0x919c1c267bc06a7039e03fcc2ef738525769109c",
"celo": "0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e",
"the-open-network": "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs",
"aptos": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b",
"avalanche": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7"
}
},
"40c9acca3592f3c7": {
"name": "BNB",
"symbol": "bnb",
"price": 616.38,
"livePrice": {
"value": 616.38,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=binancecoin&vs_currencies=usd"
},
"rank": 4,
"cap": 84011117142,
"addedDate": "1774924791166",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "2017-07-08",
"token": true,
"description": "Binance Coin is the cryptocurrency of the Binance platform. It is a trading platform exclusively for cryptocurrencies. The name \"Binance\" is a combination of binary and finance.\n\nThus, the startup name shows that only cryptocurrencies can be traded against each other. It is not possible to trade crypto currencies against Fiat. The platform achieved an enormous success within a very short time and is focused on worldwide market with Malta headquarters. The cryptocurrency currently has a daily trading volume of 1.5 billion - 2 billion US dollars and is still increasing.\n\nIn total, there will only be 200 million BNBs. Binance uses the ERC20 token standard from Ethereum and has distributed it as follow: 50% sold on ICO, 40% to the team and 10% to Angel investors. The coin can be used to pay fees on Binance. These include trading fees, transaction fees, listing fees and others. Binance gives you a huge discount when fees are paid in BNB. \n\nThe schedule of BNB fees discount is as follow: In the first year, 50% discount on all fees, second year 25% discount, third year 12.5% discount, fourth year 6.75 % discount, and from the fifth year onwards there is no discount. This structure is used to incentivize users to buy BNB and do trades within Binance.\n\nBinance announced in a buyback plan that it would buy back up to 100 million BNB in Q1 2018. The coins are then burned. This means that they are devaluated to increase the value of the remaining coins. This benefits investors. In the future, the cryptocurrency will remain an asset on the trading platform and will be used as gas.\n\nOther tokens that are issued by exchanges include Bibox Token, OKB, Huobi Token, and more.",
"explorerLink": "https://bscscan.com",
"address": {
"ethereum": "0xb8c77482e45f1f44de1745f52c74426c631bdd52"
},
"website": "https://www.binance.com",
"reddit": "https://www.reddit.com/r/binance",
"telegram": "",
"twitter": "https://twitter.com/binance",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/825/large/bnb-icon2_2x.png?1696501970",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 941763226,
"high_24h": 620.05,
"low_24h": 607.38,
"price_change_24h": 3.795601,
"price_change_percentage_24h": 0.6196,
"market_cap_change_24h": 478012034,
"market_cap_change_percentage_24h": 0.57224,
"circulating_supply": 136357157.72,
"total_supply": 136357157.72,
"max_supply": 200000000,
"last_updated": "2026-03-31T02:39:21.086Z",
"platforms": {
"ethereum": "0xb8c77482e45f1f44de1745f52c74426c631bdd52"
}
},
"6642f03ae77ea987": {
"name": "XRP",
"symbol": "xrp",
"price": 1.34,
"livePrice": {
"value": 1.34,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=ripple&vs_currencies=usd"
},
"rank": 5,
"cap": 81963860059,
"addedDate": "1774924806208",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "",
"token": true,
"description": "XRP is a decentralized digital asset and the native token of the XRP Ledger, a Layer 1 blockchain designed for high-performance global payments. Its primary value proposition is offering a fast, cost-effective alternative to traditional banking systems by enabling near-instant cross-border settlements that finalize in three to five seconds. By serving as a neutral bridge asset between different fiat currencies, it helps financial institutions lower liquidity costs and eliminates the need for pre-funded accounts.\n\nThe network is unique because it utilizes a federated consensus protocol instead of energy-intensive mining or staking. This system achieves deterministic finality through a Unique Node List of trusted validators who must reach an eighty percent agreement threshold to permanently record transactions. This infrastructure supports a sustained throughput of 1,500 transactions per second and includes a built-in decentralized exchange that allows for the automated trading of any tokenized asset without intermediaries.\n\nThe project traces its origins back to 2004 with Ryan Fugger before being co-founded in its modern form by Jed McCaleb and Chris Larsen. The company, now known as Ripple, works with major financial institutions as partners and investors to build global payment solutions. To protect the network from spam, a small amount of XRP is burned during every transaction, and the token is further utilized by institutions as collateral to access traditional markets and manage digital asset infrastructure.\n\nInstitutional adoption of the asset reached a major milestone in November 2025 when the SEC approved the first wave of spot XRP ETFs. These products, offered by major issuers including Bitwise, Grayscale, 21Shares, Canary Capital, and Franklin Templeton, are now listed on prominent exchanges like the NYSE Arca, Nasdaq, and Cboe BZX. While Ripple remains a key contributor to the ecosystem, the underlying XRP Ledger continues to operate as an open-source and decentralized network.",
"explorerLink": "https://xrpscan.com/",
"address": {},
"website": "https://ripple.com/currency/",
"reddit": "https://www.reddit.com/r/ripple",
"telegram": "",
"twitter": "https://twitter.com/Ripple",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/44/large/xrp-symbol-white-128.png?1696501442",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 1975887363,
"high_24h": 1.36,
"low_24h": 1.32,
"price_change_24h": -0.004861054281972,
"price_change_percentage_24h": -0.36257,
"market_cap_change_24h": -250274431.91435,
"market_cap_change_percentage_24h": -0.30442,
"circulating_supply": 61344583754,
"total_supply": 99985695443,
"max_supply": 100000000000,
"last_updated": "2026-03-31T02:39:23.280Z",
"platforms": {}
},
"5bfb0fea74ec807d": {
"name": "USDC",
"symbol": "usdc",
"price": 0.999626,
"livePrice": {
"value": 0.999626,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=usd-coin&vs_currencies=usd"
},
"rank": 6,
"cap": 77353327189,
"addedDate": "1774924821234",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "",
"token": true,
"description": "USDC is a fully collateralized US dollar stablecoin. USDC is the bridge between dollars and trading on cryptocurrency exchanges. The technology behind CENTRE makes it possible to exchange value between people, businesses and financial institutions just like email between mail services and texts between SMS providers. We believe by removing artificial economic borders, we can create a more inclusive global economy.",
"explorerLink": "https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"address": {
"ethereum": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"monad": "0x754704bc059f8c67012fed69bc8a327a5aafb603",
"moonriver": "0xffffffff7d2b0b761af01ca8e25242976ac0ad7d",
"sui": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
"polkadot": "1337",
"xrp": "5553444300000000000000000000000000000000.rGm7WCVp9gb4jZHWTEtGUr4dd74z2XuWhE",
"sonic": "0x29219dd400f2bf60e5a23d13be72b486d4038894",
"zksync": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4",
"hedera-hashgraph": "0.0.456858",
"ink": "0x2d270e6886d130d724215a266106e6832161eaed",
"unichain": "0x078d782b760474a361dda0af3839290b0ef57ad6",
"xdc-network": "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1",
"hyperevm": "0xb88339cb7199b77e23db6e890353e22632ba630f",
"plume-network": "0x222365ef19f7947e5484218551b56bb3965aa7af",
"sei-v2": "0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392",
"near-protocol": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1",
"base": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"algorand": "31566704",
"tron": "TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8",
"celo": "0xceba9300f2b948710d2653dd7b07f33a8b32118c",
"morph-l2": "0xcfb1186f4e93d60e60a8bdd997427d1f33bc372b",
"stellar": "CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75",
"world-chain": "0x79a02482a880bce3f13e09da970dc34db4cd24d1",
"polygon-pos": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
"arbitrum-one": "0xaf88d065e77c8cc2239327c5edb3a432268e5831",
"solana": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"starknet": "0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb",
"optimistic-ethereum": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"aptos": "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b",
"avalanche": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e"
},
"website": "https://www.circle.com/en/usdc",
"reddit": "",
"telegram": "",
"twitter": "",
"insta": "",
"youtube": "",
"discord": "https://discord.com/invite/buildoncircle",
"coinLogo": "https://coin-images.coingecko.com/coins/images/6319/large/USDC.png?1769615602",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 6366074675,
"high_24h": 0.99984,
"low_24h": 0.999577,
"price_change_24h": -0.0001695876029528,
"price_change_percentage_24h": -0.01696,
"market_cap_change_24h": -316983459.30354,
"market_cap_change_percentage_24h": -0.40811,
"circulating_supply": 77382961903.87253,
"total_supply": 77390134380.2657,
"max_supply": 0,
"last_updated": "2026-03-31T02:39:03.957Z",
"platforms": {
"ethereum": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"monad": "0x754704bc059f8c67012fed69bc8a327a5aafb603",
"moonriver": "0xffffffff7d2b0b761af01ca8e25242976ac0ad7d",
"sui": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC",
"polkadot": "1337",
"xrp": "5553444300000000000000000000000000000000.rGm7WCVp9gb4jZHWTEtGUr4dd74z2XuWhE",
"sonic": "0x29219dd400f2bf60e5a23d13be72b486d4038894",
"zksync": "0x1d17cbcf0d6d143135ae902365d2e5e2a16538d4",
"hedera-hashgraph": "0.0.456858",
"ink": "0x2d270e6886d130d724215a266106e6832161eaed",
"unichain": "0x078d782b760474a361dda0af3839290b0ef57ad6",
"xdc-network": "0xfa2958cb79b0491cc627c1557f441ef849ca8eb1",
"hyperevm": "0xb88339cb7199b77e23db6e890353e22632ba630f",
"plume-network": "0x222365ef19f7947e5484218551b56bb3965aa7af",
"sei-v2": "0xe15fc38f6d8c56af07bbcbe3baf5708a2bf42392",
"near-protocol": "17208628f84f5d6ad33f0da3bbbeb27ffcb398eac501a31bd6ad2011e36133a1",
"base": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"algorand": "31566704",
"tron": "TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8",
"celo": "0xceba9300f2b948710d2653dd7b07f33a8b32118c",
"morph-l2": "0xcfb1186f4e93d60e60a8bdd997427d1f33bc372b",
"stellar": "CCW67TSZV3SSS2HXMBQ5JFGCKJNXKZM7UQUWUZPUTHXSTZLEO7SJMI75",
"world-chain": "0x79a02482a880bce3f13e09da970dc34db4cd24d1",
"polygon-pos": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359",
"arbitrum-one": "0xaf88d065e77c8cc2239327c5edb3a432268e5831",
"solana": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"starknet": "0x33068f6539f8e6e6b131e6b2b814e6c34a5224bc66947c47dab9dfee93b35fb",
"optimistic-ethereum": "0x0b2c639c533813f4aa9d7837caf62653d097ff85",
"aptos": "0xbae207659db88bea0cbead6da0ed00aac12edcdda169e591cd41c94180b46f3b",
"avalanche": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e"
}
},
"a1a24586a5e715d5": {
"name": "Solana",
"symbol": "sol",
"price": 83.8,
"livePrice": {
"value": 83.8,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=solana&vs_currencies=usd"
},
"rank": 7,
"cap": 47972885397,
"addedDate": "1774924836275",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "",
"token": true,
"description": "Solana is a high-performance Layer 1 blockchain designed for mass adoption by providing a fast, secure, and low-cost environment for decentralized applications. It distinguishes itself by scaling globally without the use of complex sharding or multiple layers, instead maintaining a single, unified ledger to avoid liquidity fragmentation. This architecture allows it to process thousands of transactions per second with sub-second finality, often at a cost of less than a penny per transaction.\n\nThe network operates on a unique hybrid model that combines Proof of Stake with an innovation called Proof of History, which functions as a decentralized clock to timestamp transactions. This system reduces the need for constant node communication, allowing the Sealevel engine to run non-conflicting smart contracts in parallel across multiple CPU cores. Further efficiency is gained through the Gulf Stream protocol, which reduces confirmation times by forwarding transactions to validators before the current block is finished.\n\nFounded in 2017 by Anatoly Yakovenko, Solana is now supported by the Switzerland-based Solana Foundation and significant institutional investors like Andreessen Horowitz and Polychain Capital. The platform’s native token, SOL, serves as the primary currency for paying transaction fees, participating in network governance, and securing the system through staking. \n\nSolana has also seen significant institutional adoption ranging from spot Solana ETFs to major partnerships including Visa's 2025 launch of USDC settlement on the network and the tokenization of public equity by firms like Galaxy Digital.",
"explorerLink": "https://solscan.io/",
"address": {},
"website": "https://solana.com/",
"reddit": "https://www.reddit.com/r/solana",
"telegram": "",
"twitter": "",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/4128/large/solana.png?1718769756",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 3545417041,
"high_24h": 84.69,
"low_24h": 82.13,
"price_change_24h": 1.184152,
"price_change_percentage_24h": 1.43332,
"market_cap_change_24h": 701214844,
"market_cap_change_percentage_24h": 1.48337,
"circulating_supply": 572616047.6451652,
"total_supply": 572616047.3818239,
"max_supply": 0,
"last_updated": "2026-03-31T02:39:40.902Z",
"platforms": {}
},
"f31a40fee6a2f882": {
"name": "TRON",
"symbol": "trx",
"price": 0.319618,
"livePrice": {
"value": 0.319618,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=tron&vs_currencies=usd"
},
"rank": 8,
"cap": 30290642027,
"addedDate": "1774924851305",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "2017-08-28",
"token": true,
"description": "What is Tron?\nTron's mission is to build a truly decentralized internet and aims to be the largest blockchain-based operating system in the world, known as the TRON protocol. The TRON protocol will offer high scalability, high availability, and high throughput computing to serve decentralized applications via smart contracts. Ethereum EVM-based smart contracts will be compatible and deployable on the TRON network as such Solidity developers do not have to rewrite their applications.\n\nWhy Tron?\nSince TRON protocol does not rely on proof of work or mining, instead governed by nodes located around the world, it is decentralized while providing high throughput for transactions on the blockchain. This is suitable for dapps that require high speed transactions especially games. There are a number of tokens already issued on the TRON network and the decentralized exchanges TRX.market has launched.\n\nOn July 24th 2018, TRON acquired BitTorrent, one of the largest P2P file sharing protocol. As a result of the acquisition, BitTorrent Token (BTT) was launched as the cryptocurrency to power the economics on the BitTorrent network. The Token will be used to inceltivize file sharing and storage within the network.\n",
"explorerLink": "https://tronscan.org/",
"address": {},
"website": "https://tron.network",
"reddit": "https://www.reddit.com/r/Tronix",
"telegram": "https://t.me/tronnetworkEN",
"twitter": "https://twitter.com/trondao",
"insta": "",
"youtube": "",
"discord": "https://discord.com/invite/hqKvyAM",
"coinLogo": "https://coin-images.coingecko.com/coins/images/1094/large/tron-logo.png?1696502193",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 642583587,
"high_24h": 0.323852,
"low_24h": 0.316608,
"price_change_24h": -0.0026160759405666,
"price_change_percentage_24h": -0.81186,
"market_cap_change_24h": -235914102.11205,
"market_cap_change_percentage_24h": -0.77282,
"circulating_supply": 94762794745.56999,
"total_supply": 94763425010.8982,
"max_supply": 0,
"last_updated": "2026-03-31T02:39:57.921Z",
"platforms": {}
},
"9b7d6b0db89fc6a6": {
"name": "Figure Heloc",
"symbol": "figr_heloc",
"price": 1.012,
"livePrice": {
"value": 1.012,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=figure-heloc&vs_currencies=usd"
},
"rank": 9,
"cap": 16454382242,
"addedDate": "1774924866346",
"coinMarketCap": true,
"coingecko": true,
"chain": "provenance",
"launchDate": "",
"token": true,
"description": "This project is building the foundational protocol layer for institutional debt markets on blockchain. Powered by Provenance Blockchain, Figure Connect and Figure Markets are transforming the way loan assets are originated, traded, and settled. Figure Connect functions as a primary market for credit—standardizing and tokenizing debt assets such as HELOCs and private credit into composable on-chain formats. Figure Markets acts as a secondary trading venue, enabling 24/7 settlement of these digital loan assets through decentralized custody, with support for both crypto and fiat on/off ramps. Together, they offer an integrated protocol for real-world asset finance, with deep roots in the lending ecosystem.",
"explorerLink": "https://explorer.provenance.io/nft/scope1qrm5d0wjzamyywvjuws6774ljmrqu8kh9x",
"address": {
"provenance": "scope1qrm5d0wjzamyywvjuws6774ljmrqu8kh9x"
},
"website": "https://www.figure.com",
"reddit": "",
"telegram": "",
"twitter": "https://twitter.com/Figure",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/68480/large/figure.png?1755863954",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 925082732,
"high_24h": 1.029,
"low_24h": 1,
"price_change_24h": 0.0123627,
"price_change_percentage_24h": 1.23627,
"market_cap_change_24h": 200936474,
"market_cap_change_percentage_24h": 1.23627,
"circulating_supply": 16253445768.157,
"total_supply": 16253445768.157,
"max_supply": 0,
"last_updated": "2026-03-31T02:41:01.584Z",
"platforms": {
"provenance": "scope1qrm5d0wjzamyywvjuws6774ljmrqu8kh9x"
}
},
"4f303c86a8a0df7a": {
"name": "Dogecoin",
"symbol": "doge",
"price": 0.092127,
"livePrice": {
"value": 0.092127,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=dogecoin&vs_currencies=usd"
},
"rank": 10,
"cap": 14151040462,
"addedDate": "1774924881384",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "2013-12-08",
"token": true,
"description": "Dogecoin is an open-source digital currency based on the \"Doge\" meme that functions as a peer-to-peer medium for fast payments and digital tipping. Unlike projects backed by corporate entities, its value is driven by a global community, and the project is managed by a decentralized group of volunteers and the non-profit Dogecoin Foundation rather than a formal company.\n\nOriginally created in 2013 by software engineers Billy Markus and Jackson Palmer as a market parody, the project held no public sale or venture capital rounds. The network operates as a fork of LuckyCoin, which itself was a fork of Litecoin, using a proof of work consensus mechanism. It employs the Scrypt algorithm to ensure the mining process remains fast and efficient, with new blocks processed every 60 seconds. A unique technical feature is its use of merged mining, allowing miners to secure Dogecoin simultaneously with other Scrypt-based networks like Litecoin.\n\nTo keep transaction fees low and the network running indefinitely, Dogecoin features an uncapped supply where new coins are added forever. In a major regulatory milestone in March 2026, a joint SEC and CFTC framework officially classified Dogecoin as a digital commodity, placing it in the same asset category as gold or oil.",
"explorerLink": "https://doge.tokenview.io/",
"address": {},
"website": "http://dogecoin.com/",
"reddit": "https://www.reddit.com/r/dogecoin/",
"telegram": "",
"twitter": "https://twitter.com/dogecoin",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/5/large/dogecoin.png?1696501409",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 1168269358,
"high_24h": 0.093521,
"low_24h": 0.090513,
"price_change_24h": 0.00050867,
"price_change_percentage_24h": 0.55521,
"market_cap_change_24h": 86424672,
"market_cap_change_percentage_24h": 0.61448,
"circulating_supply": 153630436383.7052,
"total_supply": 153630886383.7052,
"max_supply": 0,
"last_updated": "2026-03-31T02:41:02.140Z",
"platforms": {}
},
"63fdf94cecf6be02": {
"name": "USDS",
"symbol": "usds",
"price": 0.999544,
"livePrice": {
"value": 0.999544,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=usds&vs_currencies=usd"
},
"rank": 11,
"cap": 11832055554,
"addedDate": "1774924896461",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "",
"token": true,
"description": "USDS is the stablecoin of the decentralized Sky ecosystem, designed to maintain a soft peg (a value intended to stay close) to the U.S. dollar. It functions as a versatile tool for decentralized finance (DeFi), allowing value to move through the system via peer-to-peer lending and saving without a middleman. The token is 'put to work' by being supplied to various protocol modules; for example, users can convert USDS into sUSDS to earn interest from protocol revenue or lock it to receive SKY governance tokens. As the ecosystem grows, this scales through \"Sky Stars,\" which are semi-autonomous projects that expand the stablecoin’s utility into specialized areas like institutional credit and advanced lending.",
"explorerLink": "https://etherscan.io/token/0xdc035d45d973e3ec169d2276ddab16f1e407384f",
"address": {
"ethereum": "0xdc035d45d973e3ec169d2276ddab16f1e407384f",
"base": "0x820c137fa70c8691f0e44dc420a5e53c168921dc",
"arbitrum-one": "0x6491c05a82219b8d1479057361ff1654749b876b",
"solana": "USDSwr9ApdHk5bvJKMjzff41FfuX8bSxdKcR81vTwcA"
},
"website": "https://sky.money/",
"reddit": "",
"telegram": "",
"twitter": "https://twitter.com/SkyEcosystem",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/39926/large/usds.webp?1726666683",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 76077937,
"high_24h": 0.999918,
"low_24h": 0.999065,
"price_change_24h": -0.0000889290119583,
"price_change_percentage_24h": -0.0089,
"market_cap_change_24h": 198355662,
"market_cap_change_percentage_24h": 1.70501,
"circulating_supply": 11837488899.69641,
"total_supply": 11837488899.69641,
"max_supply": 0,
"last_updated": "2026-03-31T02:40:42.684Z",
"platforms": {
"ethereum": "0xdc035d45d973e3ec169d2276ddab16f1e407384f",
"base": "0x820c137fa70c8691f0e44dc420a5e53c168921dc",
"arbitrum-one": "0x6491c05a82219b8d1479057361ff1654749b876b",
"solana": "USDSwr9ApdHk5bvJKMjzff41FfuX8bSxdKcR81vTwcA"
}
},
"07659f2058103a99": {
"name": "WhiteBIT Coin",
"symbol": "wbt",
"price": 52.21,
"livePrice": {
"value": 52.21,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=whitebit&vs_currencies=usd"
},
"rank": 12,
"cap": 11141282884,
"addedDate": "1774924911567",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "",
"token": true,
"description": "What is WhiteBIT Token?\n\nWBT is a utility token of the largest European cryptocurrency exchange, WhiteBIT. The platform was established in 2018 and has already become one of the leading crypto exchanges with 3+ mln users worldwide. WhiteBIT’s goal is to contribute to the mass adoption and popularization of blockchain technologies by implementing the most effective trading and staking tools on the most convenient terms. The most popular and efficient trading orders for spot and margin trading, up to 20x leverage for margin and perpetual Bitcoin futures trading, unique passive income tools, a referral program, and the lowest trading fees on the market are only part of the functionality available on WhiteBIT. Discover the full potential of the platform at the link: https://whitebit.com/.\n\nWBT is a full-fledged product of the whole WhiteBIT ecosystem that is integrated into all WhiteBIT services, making it easier for the users to interact on the platform. WBT is a solid base for dozens of blockchain startups, new projects, and fruitful trading. Moreover, WhiteBIT Token is a reliable asset that can be used for staking on its native platform, which provides numerous perks to its holders and owners. \n\nKey advantages:\n\nincreased referral interest rate (up to 50%);\ndecreased trading fees; \nfree daily ERC-20/ETH withdrawals;\nfree daily AML checks; \nintegration with the current and future products of WhiteBIT and much more.\n\nWBT tokenomics\n\nThe token supply is limited to 400 000 000 WBT, with no new tokens to be created in the future. 200M of this amount is treasury tokens that are backing the total amount and will be unlocked within the next three months after the launch. \n\nTrading competitions, airdrops, bounties, beneficial holding programs, and access to the token from other exchange platforms are part of activities associated with the WBT cryptocurrency available on WhiteBIT. \n",
"explorerLink": "https://etherscan.io/token/0x925206b8a707096ed26ae47c84747fe0bb734f59",
"address": {
"ethereum": "0x925206b8a707096ed26ae47c84747fe0bb734f59",
"tron": "TFptbWaARrWTX5Yvy3gNG5Lm8BmhPx82Bt"
},
"website": "https://whitebit.com/wbt",
"reddit": "",
"telegram": "https://t.me/White_Bit",
"twitter": "https://twitter.com/WhiteBit",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/27045/large/wbt_token.png?1696526096",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 68239087,
"high_24h": 52.45,
"low_24h": 51.06,
"price_change_24h": 0.829677,
"price_change_percentage_24h": 1.61485,
"market_cap_change_24h": 180218462,
"market_cap_change_percentage_24h": 1.64417,
"circulating_supply": 213418274,
"total_supply": 319790563,
"max_supply": 400000000,
"last_updated": "2026-03-31T02:41:34.616Z",
"platforms": {
"ethereum": "0x925206b8a707096ed26ae47c84747fe0bb734f59",
"tron": "TFptbWaARrWTX5Yvy3gNG5Lm8BmhPx82Bt"
}
},
"d0957d581db533fa": {
"name": "Bitcoin Cash",
"symbol": "bch",
"price": 465.47,
"livePrice": {
"value": 465.47,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin-cash&vs_currencies=usd"
},
"rank": 13,
"cap": 9311491521,
"addedDate": "1774924926608",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "",
"token": true,
"description": "Bitcoin Cash is a hard fork of Bitcoin with a protocol upgrade to fix on-chain capacity. Bitcoin Cash intends to be a Bitcoin without Segregated Witness (SegWit) as soft fork, where upgrades of the protocol are done mainly through hard forks and without changing the original economic rules of the Bitcoin.\n\nBitcoin Cash (BCH) is released on 1st August 2017 as an upgraded version of the original Bitcoin Core software. The main upgrade is the increase in the block size limit from 1MB to 8MB. This effectively allows miners on the BCH chain to process up to 8 times more payments per second in comparison to Bitcoin. This makes for faster, cheaper transactions and a much smoother user experience.\n\nWhy was Bitcoin Cash Created?\n\nThe main objective of Bitcoin Cash is to to bring back the essential qualities of money inherent in the original Bitcoin software. Over the years, these qualities were filtered out of Bitcoin Core and progress was stifled by various people, organizations, and companies involved in Bitcoin protocol development. The result is that Bitcoin Core is currently unusable as money due to increasingly high fees per transactions and transfer times taking hours to complete. This is all because of the 1MB limitation of Bitcoin Core’s block size, causing it unable to accommodate to large number of transactions.\n\nEssentially Bitcoin Cash is a community-activated upgrade (otherwise known as a hard fork) of Bitcoin that increased the block size to 8MB, solving the scaling issues that plague Bitcoin Core today.\n\nNov 16th 2018: A hashwar resulted in a split between Bitcoin SV and Bitcoin ABC",
"explorerLink": "https://bch.tokenview.io/",
"address": {},
"website": "https://bch.info/",
"reddit": "https://www.reddit.com/r/btc",
"telegram": "https://t.me/bchchannel",
"twitter": "",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/780/large/bitcoin-cash-circle.png?1696501932",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 234386793,
"high_24h": 466.59,
"low_24h": 452.24,
"price_change_24h": 9.00034,
"price_change_percentage_24h": 1.97173,
"market_cap_change_24h": 176100338,
"market_cap_change_percentage_24h": 1.92767,
"circulating_supply": 20014593.64665078,
"total_supply": 20014606.14665078,
"max_supply": 21000000,
"last_updated": "2026-03-31T02:41:34.832Z",
"platforms": {}
},
"d1e6252df7aa55e7": {
"name": "Cardano",
"symbol": "ada",
"price": 0.248306,
"livePrice": {
"value": 0.248306,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=cardano&vs_currencies=usd"
},
"rank": 14,
"cap": 9155971941,
"addedDate": "1774924941652",
"coinMarketCap": true,
"coingecko": true,
"chain": "",
"launchDate": "",
"token": true,
"description": "Cardano is a blockchain platform built on academic research that enables smart contracts and decentralized applications while using significantly less energy than traditional cryptocurrencies like Bitcoin. \n\nWhat sets Cardano apart is its methodical, research-driven approach — every major feature is peer-reviewed by scientists and cryptographers before being added to the network. This careful process aims to create a more secure and stable foundation compared to platforms that prioritize speed over thorough testing. The platform's native cryptocurrency, ADA, is used to send money, pay transaction fees, and participate in network governance.\n\nCardano uses a proof-of-stake system to process transactions, which works differently from Bitcoin's mining approach. Instead of competing to solve complex puzzles, users can \"stake\" their ADA — essentially locking it up temporarily — to become validators who verify transactions. The system selects validators based on how much ADA they've staked and for how long, then rewards them with additional ADA for their participation. This approach uses far less energy than traditional mining while keeping the network secure. The platform also features a two-layer design that separates basic payment transactions from smart contract operations, allowing each function to be optimized independently for better performance. \n\nADA holders can earn staking rewards by locking up their tokens to help secure the network, vote on proposed changes to the platform, and use ADA for international money transfers with lower fees than traditional services.\n\nCardano was founded in 2017 by Charles Hoskinson, who previously helped create Ethereum. Hoskinson leads Input Output Global (IOG), the technology company that builds and maintains Cardano's core software. The ecosystem operates through three organizations: IOG handles technical development, the Cardano Foundation promotes adoption and standardization, and Emurgo helps businesses integrate blockchain technology into their operations. This structure distributes responsibilities across multiple groups rather than concentrating control in a single entity. \n\nIn February 2025, major asset manager Grayscale Investments filed to create an exchange-traded fund (ETF) for Cardano with the U.S. Securities and Exchange Commission, which would allow traditional investors to buy ADA through their regular brokerage accounts without needing to set up cryptocurrency wallets.Retry",
"explorerLink": "https://cardanoscan.io/",
"address": {},
"website": "https://cardano.org/",
"reddit": "https://www.reddit.com/r/cardano",
"telegram": "https://t.me/Cardano",
"twitter": "https://twitter.com/Cardano_CF",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/975/large/cardano.png?1696502090",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 400229214,
"high_24h": 0.250993,
"low_24h": 0.24268,
"price_change_24h": 0.00391423,
"price_change_percentage_24h": 1.60162,
"market_cap_change_24h": 157353401,
"market_cap_change_percentage_24h": 1.74864,
"circulating_supply": 36877209763.52091,
"total_supply": 45000000000,
"max_supply": 45000000000,
"last_updated": "2026-03-31T02:41:11.982Z",
"platforms": {}
},
"4e1cd0c8e0866068": {
"name": "LEO Token",
"symbol": "leo",
"price": 9.74,
"livePrice": {
"value": 9.74,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=leo-token&vs_currencies=usd"
},
"rank": 15,
"cap": 8975923101,
"addedDate": "1774924956833",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "2019-05-20",
"token": true,
"description": "No description available",
"explorerLink": "https://eosflare.io/account/bitfinexleo1",
"address": {
"ethereum": "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3",
"sora": "0x009e199267a6a2c8ae075bb8d4c40ee8d05c1b769085ee59ce98e50c2b2d8756"
},
"website": "https://www.bitfinex.com/",
"reddit": "https://www.reddit.com/r/bitfinex/",
"telegram": "https://t.me/bitfinex",
"twitter": "https://twitter.com/bitfinex",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/8418/large/leo-token.png?1696508607",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 471441,
"high_24h": 9.75,
"low_24h": 9.64,
"price_change_24h": 0.04698778,
"price_change_percentage_24h": 0.48489,
"market_cap_change_24h": 51039552,
"market_cap_change_percentage_24h": 0.57188,
"circulating_supply": 920975471.9,
"total_supply": 985239504,
"max_supply": 0,
"last_updated": "2026-03-31T02:42:31.436Z",
"platforms": {
"ethereum": "0x2af5d2ad76741191d15dfe7bf6ac92d4bd912ca3",
"sora": "0x009e199267a6a2c8ae075bb8d4c40ee8d05c1b769085ee59ce98e50c2b2d8756"
}
},
"1f23c93c99b4475d": {
"name": "Hyperliquid",
"symbol": "hype",
"price": 37.42,
"livePrice": {
"value": 37.42,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=hyperliquid&vs_currencies=usd"
},
"rank": 16,
"cap": 8923832233,
"addedDate": "1774924971944",
"coinMarketCap": true,
"coingecko": true,
"chain": "hyperliquid",
"launchDate": "",
"token": true,
"description": "Hyperliquid is a performant L1 optimized from the ground up. The vision is a fully onchain open financial system with user built applications interfacing with performant native components, all without compromising end user experience. \n\nThe Hyperliquid L1 is performant enough to operate an entire ecosystem of permissionless financial applications – every order, cancel, trade, and liquidation happens transparently on-chain with block latency <1 second. The chain currently supports 100k orders / second.\n\nThe Hyperliquid L1 uses a custom consensus algorithm called HyperBFT which is heavily inspired by Hotstuff and its successors. Both the algorithm and networking stack are optimized from the ground up to support the L1. \n\nThe flagship native application is a fully onchain order book perpetuals exchange, the Hyperliquid DEX. Further developments include a native token standard, spot trading, permissionless liquidity, etc.",
"explorerLink": "https://app.hyperliquid.xyz/explorer/token/0x0d01dc56dcaaca66ad901c959b4011ec",
"address": {
"hyperliquid": "0x0d01dc56dcaaca66ad901c959b4011ec"
},
"website": "https://hyperliquid.xyz/",
"reddit": "",
"telegram": "https://t.me/hyperliquid_announcements",
"twitter": "https://twitter.com/HyperliquidX",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/50882/large/hyperliquid.jpg?1729431300",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 227490588,
"high_24h": 38.66,
"low_24h": 36.6,
"price_change_24h": -0.78486156461415,
"price_change_percentage_24h": -2.0541,
"market_cap_change_24h": -167640098.204607,
"market_cap_change_percentage_24h": -1.84393,
"circulating_supply": 238385315.9541414,
"total_supply": 962274028.9541414,
"max_supply": 1000000000,
"last_updated": "2026-03-31T02:42:46.400Z",
"platforms": {
"hyperliquid": "0x0d01dc56dcaaca66ad901c959b4011ec"
}
},
"32c591c019f59b18": {
"name": "Chainlink",
"symbol": "link",
"price": 8.78,
"livePrice": {
"value": 8.78,
"url": "https://api.coingecko.com/api/v3/simple/price?ids=chainlink&vs_currencies=usd"
},
"rank": 17,
"cap": 6217559329,
"addedDate": "1774924986977",
"coinMarketCap": true,
"coingecko": true,
"chain": "ethereum",
"launchDate": "2017-09-16",
"token": true,
"description": "Chainlink is the industry-standard decentralized oracle network that solves the \"oracle problem\" by connecting smart contracts with real-world data. Blockchains cannot access external information on their own, so Chainlink acts as a secure bridge, enabling smart contracts to react to real-world events using verified, tamper-proof data. It is widely considered one of the first decentralized oracle networks and is the market leader in bringing off-chain data on-chain.\n\nThe platform operates through a decentralized network of nodes that fetch, validate, and deliver data to smart contracts. When a contract requests information like a stock price, a committee of independent nodes retrieves and aggregates the data to reach consensus, then delivers a single trustworthy answer. Chainlink offers a suite of services including Data Feeds for asset prices, CCIP for cross-chain token transfers and messaging, Automation for triggering smart contract functions, and Proof of Reserve for verifying asset collateralization.\n\nChainlink has established itself as critical infrastructure for both DeFi and institutional adoption, with partnerships including Swift, Euroclear, Mastercard, UBS, ANZ, Fidelity International, and J.P. Morgan. Its institutional products include the Chainlink Runtime Environment for tokenized asset workflows, Confidential Compute for privacy-preserving computation, and the Automated Compliance Engine for embedding regulatory rules into smart contracts.\n\nThe LINK token is the native asset used to pay node operators for services, fund subscription accounts, and incentivize network security through staking. Node operators stake LINK as collateral, which can be slashed if they provide inaccurate data. Chainlink was co-founded in 2017 by Sergey Nazarov and Steve Ellis, who co-authored the white paper with Ari Juels, and raised $32 million in its September 2017 ICO.",
"explorerLink": "https://etherscan.io/token/0x514910771af9ca656af840dff83e8264ecf986ca",
"address": {
"ethereum": "0x514910771af9ca656af840dff83e8264ecf986ca",
"klay-token": "0x7311ded199cc28d80e58e81e8589aa160199fcd2",
"bittensor": "0xf09afe78d3c7d359b334d7cb88995751f7ec5e13",
"taiko": "0x917a3964c37993e99a47c779beb5db1e9d13804d",
"xdc-network": "0xe27dd9bf01b55ce6803c0d81386a04212c718b95",
"mode": "0x183e3691eff3524b2315d3703d94f922cbe51f54",
"hydration": "asset_registry%2F1000794",
"moonriver": "0x8b12ac23bfe11cab03a634c1f117d64a7f2cfd3e",
"merlin-chain": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"metal-l2": "0x587d19ddf735d6b536aadb1a2a92938eb23b8d5c",
"metis-andromeda": "0xd2fe54d1e5f568eb710ba9d898bf4bd02c7c0353",
"ronin": "0x3902228d6a3d2dc44731fd9d45fee6a61c722d0b",
"fantom": "0xb3654dc3d10ea7645f8319668e8f54d2574fbdc8",
"moonbeam": "0x012414a392f9fa442a3109f1320c439c45518ac3",
"tac": "0xc2be2f77562a6676098e8d363b9d8a33ea009d4e",
"base": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",
"lens": "0x6e970e8d6758164798290c8db1d79a527ca6e1b2",
"linea": "0xa18152629128738a5c081eb226335fed4b9c95e9",
"henesys": "0x76a443768a5e3b8d1aed0105fc250877841deb40",
"monad": "0x6fe981dbd557f81ff66836af0932cba535cbc343",
"huobi-token": "0x9e004545c59d359f6b7bfb06a26390b087717b42",
"mint": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"xdai": "0xe2e73a1c69ecf83f464efce6a5be353a37ca09b2",
"near-protocol": "514910771af9ca656af840dff83e8264ecf986ca.factory.bridge.near",
"mantle": "0xfe36cf0b43aae49fbc5cfc5c0af22a623114e043",
"bittensor-evm": "0xf09afe78d3c7d359b334d7cb88995751f7ec5e13",
"rootstock": "0x938d84942f5d924070a6bb82f8e56a5e2b3098a4",
"opbnb": "0x99f0d88b81b758ab07e22c7aba00e0121a882dea",
"neo": "0xb25de57d73ab177fc091327bcb725154dfbb5bfb",
"plume-network": "0xb549b375da0c76f8b3877b9adfdd28378f087a64",
"polygon-zkevm": "0xdb7a504cf869484dd6ac5faf925c8386cbf7573d",
"scroll": "0x548c6944cba02b9d1c0570102c89de64d258d3ac",
"shibarium": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"soneium": "0x32d8f819c8080ae44375f8d383ffd39fc642f3ec",
"sonic": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"superseed": "0x41ccf59e3f30eb624ef8e5ea34b2da96bee472d9",
"unichain": "0xef66491eab4bbb582c57b14778afd8dfb70d8a1a",
"wemix-network": "0x80f1fcdc96b55e459bf52b998abbe2c364935d69",
"x-layer": "0x8af9711b44695a5a081f25ab9903ddb73acf8fa9",
"zora-network": "0x3662b6f73c5560229d1a98af6e59e6649d568374",
"abstract": "0x2ea38d6cdb6774992d4a62fe622f4405663729dd",
"apechain": "0xf575731b78981b86d34321d875a3d25a48479be6",
"astar": "0x31efb841d5e0b4082f7e1267dab8de1b853f2a9d",
"berachain": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"bitlayer": "0x56b275c0ec034a229a1ded8db17089544bc276d9",
"bob-network": "0x5ab885cda7216b163fb6f813dec1e1532516c833",
"botanix": "0x30e85a5c9525ad9a7a0fa5c74df4baf0b01ad241",
"bsquared-network": "0x709229d9587886a1edfee6b5ce636e1d70d1ce39",
"celo": "0xd07294e6e917e07dfdcee882dd1e2565085c2ae0",
"core": "0x3902228d6a3d2dc44731fd9d45fee6a61c722d0b",
"lisk": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"corn": "0x7311ded199cc28d80e58e81e8589aa160199fcd2",
"cronos": "0x8c80a01f461f297df7f9da3a4f740d7297c8ac85",
"cronos-zkevm": "0x61170ca9fb9cf98d4c7d684e07be6d969d59667e",
"etherlink": "0x8ce7618e8f8e514d13889283f58ff03b794e6cc3",
"fraxtal": "0xd6a6ba37faac229b9665e86739ca501401f5a940",
"sei-v2": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"katana": "0xc2c447b04e0ed3476ddbdae8e9e39be7159d27b6",
"hemi": "0x63dbe12a6381d64ade47bc3d92abf4393dff4bc8",
"hyperevm": "0x1ac2ee68b8d038c982c1e1f73f596927dd70de59",
"ink": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"kroma": "0xc1f6f7622ad37c3f46cdf6f8aa0344ade80bf450",
"hedera-hashgraph": "0x7ce6bb2cc2d3fd45a974da6a0f29236cb9513a98",
"zircuit": "0xdee94506570ca186bc1e3516fcf4fd719c312ccd",
"solana": "LinkhB3afbBKb2EQQu7s7umdZceV3wcvAUJhQAfQ23L",
"osmosis": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049",
"hashkey-chain": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"plasma": "0x76a443768a5e3b8d1aed0105fc250877841deb40",
"harmony-shard-0": "0x218532a12a389a4a92fc0c5fb22901d1c19198aa",
"energi": "0x68ca48ca2626c415a89756471d4ade2cc9034008",
"sora": "0x008484148dcf23d1b48908393e7a00d5fdc3bf81029a73eeca62a15ebfb1205a",
"milkomeda-cardano": "0xf390830df829cf22c53c8840554b98eafc5dcbc2",
"polygon-pos": "0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
"binance-smart-chain": "0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd",
"arbitrum-one": "0xf97f4df75117a78c1a5a0dbb814af92458539fb4",
"blast": "0x93202ec683288a9ea75bb829c6bacfb2bfea9013",
"world-chain": "0x915b648e994d5f31059b38223b9fbe98ae185473",
"starknet": "0x60f47b96b525c1014fed595e87e98edc3ce0731627a0670e1804ee1a3ca0ee9",
"optimistic-ethereum": "0x350a791bfc2c21f9ed5d10980dad2e2638ffa7f6",
"zksync": "0x52869bae3e091e36b0915941577f2d47d8d8b534",
"avalanche": "0x5947bb275c521040051d82396192181b413227a3"
},
"website": "https://chain.link/",
"reddit": "https://www.reddit.com/r/Chainlink/",
"telegram": "https://t.me/chainlinkofficial",
"twitter": "https://twitter.com/chainlink",
"insta": "",
"youtube": "",
"discord": "",
"coinLogo": "https://coin-images.coingecko.com/coins/images/877/large/Chainlink_Logo_500.png?1760023405",
"coingecko_rank": "",
"coingecko_score": "",
"developer_score": "",
"community_score": "",
"liquidity_score": "",
"public_interest_score": "",
"total_volume": 332245548,
"high_24h": 8.89,
"low_24h": 8.56,
"price_change_24h": 0.22196274,
"price_change_percentage_24h": 2.5941,
"market_cap_change_24h": 168338123,
"market_cap_change_percentage_24h": 2.78281,
"circulating_supply": 708099970.4525567,
"total_supply": 1000000000,
"max_supply": 1000000000,
"last_updated": "2026-03-31T02:41:44.923Z",
"platforms": {
"ethereum": "0x514910771af9ca656af840dff83e8264ecf986ca",
"klay-token": "0x7311ded199cc28d80e58e81e8589aa160199fcd2",
"bittensor": "0xf09afe78d3c7d359b334d7cb88995751f7ec5e13",
"taiko": "0x917a3964c37993e99a47c779beb5db1e9d13804d",
"xdc-network": "0xe27dd9bf01b55ce6803c0d81386a04212c718b95",
"mode": "0x183e3691eff3524b2315d3703d94f922cbe51f54",
"hydration": "asset_registry%2F1000794",
"moonriver": "0x8b12ac23bfe11cab03a634c1f117d64a7f2cfd3e",
"merlin-chain": "0x71052bae71c25c78e37fd12e5ff1101a71d9018f",
"metal-l2": "0x587d19ddf735d6b536aadb1a2a92938eb23b8d5c",
"metis-andromeda": "0xd2fe54d1e5f568eb710ba9d898bf4bd02c7c0353",
"ronin": "0x3902228d6a3d2dc44731fd9d45fee6a61c722d0b",
"fantom": "0xb3654dc3d10ea7645f8319668e8f54d2574fbdc8",
"moonbeam": "0x012414a392f9fa442a3109f1320c439c45518ac3",
"tac": "0xc2be2f77562a6676098e8d363b9d8a33ea009d4e",
"base": "0x88fb150bdc53a65fe94dea0c9ba0a6daf8c6e196",