Altszn.com
  • Home
  • Crypto
    • Altcoins
    • Bitcoin
    • Ethereum
    • Monero
    • XRP
    • Zcash
  • Web3
  • DeFi
  • NFTs
No Result
View All Result
Altszn.com
  • Home
  • Crypto
    • Altcoins
    • Bitcoin
    • Ethereum
    • Monero
    • XRP
    • Zcash
  • Web3
  • DeFi
  • NFTs
No Result
View All Result
Altszn.com
No Result
View All Result

Web3 Libraries โ€“ List of Web3 Libraries for Devs in 2023

Altszn.com by Altszn.com
January 26, 2023
in Web3
0
Web3 Libraries โ€“ List of Web3 Libraries for Devs in 2023
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Whether youโ€™re a developer needing a refresher on Web3 libraries or are currently transitioning from Web2 to Web3 and need help understanding which Web3 library would benefit you the most, youโ€™ve come to the right place! In addition to exploring the top Web3 libraries, weโ€™ll also look at an alternative to these libraries offering a superior solution: Moralis. Now, since ethers.js is one of the most popular Web3 libraries, weโ€™ll compare ethers.js vs Web3 streams, showing the power of the Moralis Streams API! To illustrate, when working with Moralisโ€™ JS SDK, these are the lines of code that do the trick:

Moralis.start({     apiKey: process.env.MORALIS_KEY, }).then(async () => {   const stream = await Moralis.Streams.add(options)   const {id} = stream.toJSON();    await Moralis.Streams.addAddress({id, address })    });

If you want to learn how to properly implement the above snippet of code, make sure to dive into the โ€œWeb3 Libraries Exampleโ€ section. This is where weโ€™ll also show you how to obtain your Web3 API key. If youโ€™re ready, create your free Moralis account and follow our lead!

Ultimate Web3 Library - Moralis - Sign Up for Free Today

Overview

In todayโ€™s article, we will first do an overview of the leading Web3 libraries. This will help you determine which of them might be worth your attention. As pointed out above, ethers.js has become the most popular Web3 library. As such, weโ€™ll proceed by focusing on comparing the ethers.js Web3 library with the Web3 Streams API from Moralis. This comparison will clearly indicate how you can take the path of least resistance and join the Web3 revolution with your legacy skills. 

For those who may not yet be familiar with Web3 libraries, weโ€™ll also explain what they are. Last but not least, weโ€™ll dig a little deeper into the best alternative to our highlighted Web3 libraries. This is where youโ€™ll have an opportunity to learn more about the Streams API and other Moralis tools. Then, youโ€™ll be ready to start building dapps the easy way! 

Five Web3 Libraries Outlined - libp2p - light.js - web3j - web3.js - web3.py - ethers.js

List of Web3 Libraries

As the above image indicates, some of the leading Web3 libraries are:

  • Libp2p
  • Web3j
  • Web3.js
  • Web3.py
  • Ethers.js

You might have noticed the light.js library in the above image but not in our list. Thatโ€™s because that library is deprecated. Therefore, we wonโ€™t explore this library any further. Now, letโ€™s cover each of the above five libraries in further detail!

Libp2p

โ€œLibrary peer-to-peer,โ€ or โ€œlibp2p,โ€ is more than a Web3 library. It is a peer-to-peer (P2P) networking framework โ€“ a collection of specifications, protocols, and libraries. The framework facilitates P2P communication between network participants (a.k.a. โ€œpeersโ€) and enables the development of P2P applications. 

Libp2p components

Libp2p started as IPFSโ€™ (InterPlanetary File System) wire protocol. However, it phased out into an independent networking layer, which provides a set of specs that many protocols can adopt. This allows libp2p apps to operate in diverse runtimes and networking environments. For instance, IPFS uses the Golang implementation of libp2p, but Polkadot uses the Rust implementation of this library. So, libp2p handles the peer discovery and communication in the Polkadot ecosystem. In addition, according to Polkadotโ€™s official website, libp2p is positioned to be the standard for future dapps.

Following are some of the key advantages of libp2p as listed in this frameworkโ€™s documentation:

  • Modularity โ€“ Allows developers to mix and match different components to accommodate the needs of their apps. 
  • Extensive Transport โ€œConfigurabilityโ€ โ€“ By supporting various transport protocols, libp2p applications can operate in various runtime and networking environments.
  • Versatility โ€“ Offers a range of discovery mechanisms and data storage/retrieval patterns and is implementable in many programming languages.  
  • Security โ€“ Includes several security features.
  • Robustness โ€“ Designed to withstand stress, disturbance, and change. Further, it can recover quickly from disruptions or failures.
  • Resiliency โ€“ Even if some peers are offline or unreachable, the network remains available and accessible.
  • Efficiency โ€“ Makes it possible to store and retrieve data in a cost-effective and scalable way.
  • Piercing NAT Barriers โ€“ With capabilities for NAT traversal, libp2p maintains the connectivity of the network and ensures that it remains accessible despite the presence of firewalls or NAT devices.
  • Interoperability โ€“ Implementations in different programming languages and versions are interoperable with one another.
  • Decentralization โ€“ Operating without a central authority.

Web3j

Web3j - Showing sequence of how this Web3 library connects with Ethereum nodes

Web3j is a highly modular, reactive, type-safe Java and Android library for the Ethereum network. It enables you to work with smart contracts and interact with Ethereum clients (nodes) (see the above image) without writing your own integration code.

Like all leading Web3 libraries, web3j supports Ethereum wallets and the implementation of Ethereumโ€™s JSON-RPC client API via HTTP and IPC. It also features an auto-generation of Java smart contract wrappers. This means you can create, deploy, transact with and call smart contracts from native Java code. Web3j also supports Solidity and Truffle definition formats. 

This library enables you to work with filters using its reactive-functional API. Web3j further supports Ethereum Name Service (ENS), OpenEthereumโ€™s and Gethโ€™s personal client APIs, node providers (Alchemy and Infura), ERC-20 and ERC-721 token standards, and JP Morganโ€™s Quorum via โ€œweb3j-quorum.โ€

The Web3j Ethereum Java library also includes comprehensive integration tests, command line tools, and Android compatibility. If you are interested in learning more about this library and working with it, visit the official web3j documentation.

Web3.js

Web3.js is an open-source JavaScript (JS) library created by the Ethereum Foundation. The main purpose of Web3.js is to facilitate seamless interactions with the Ethereum chain. This interaction is possible via communication with Ethereum nodes, which goes through the JSON-RPC protocol. The core of Web3.js are the following five modules: 

  • โ€œweb3.ethโ€œ โ€“ It facilitates interaction with the Ethereum network via multiple sub-modules (โ€œweb3.eth.contract,โ€œ โ€œweb3.eth.subscribe,โ€œ โ€œweb3.eth.accounts,โ€œ etc.).
  • โ€œweb3.netโ€œ โ€“  Facilitates interaction with network properties.
  • โ€œweb3.shhโ€œ โ€“ It facilitates interaction with the Whisper protocol. 
  • โ€œweb3.utilsโ€œ โ€“ Provides access to functions for Ethereum dapps and other packages.
  • โ€œweb3.bzzโ€œ โ€“ It facilitates interaction with the Swarm network.
Title - Web3.js - One of the leading Web3 libraries

Once we cover ethers.js (below), youโ€™ll realize that these two Web3 libraries are quite similar. Even though they both serve the same purpose, there are several distinct differences between the two. Moreover, if you are interested in learning more about those distinct differences, make sure to check out our Web3.js vs ethers.js comparison. For more details, visit the official Web3.js documentation. 

Web3.py

If you are Python proficient, you can use the Web3.py library to join the Web3 revolution. As โ€œ.pyโ€ indicates, this Web3 library supports the Python programming language for interactions with the Ethereum chain. So, whether you want to send transactions, read block data, interact with smart contracts, or more, Web3.py has your back.  

Python + Ethereum logos

Just like Web3.js, Web3.py communicates with the Ethereum network using the JSON-RPC protocol. The latter enables the Web3.py library to make requests to Ethereum nodes and write and read data on the Ethereum blockchain. The concept behind this communication is much like making HTTP requests to JSON APIs on web servers. 

Itโ€™s worth pointing out that Web3.pyโ€™s application programming interface (API) originates from the above-described Web3.js. Of course, through time, Web3.py has evolved to become more adapted for Python development. Still, there are many similarities between the two Web3 libraries. As such, it can be of great value to go over the Web3.py vs Web3.js comparison as well. That is especially true if you are JavaScript and Python proficient. However, if Python is your preferred programming language, you should focus on Ethereum Python implementation.   

Ethers.js

As mentioned above, just like Web3.js, ethers.js is a JS library aiming to be a complete and compact solution for Ethereum development. This library entered the scene about a year after Web3.js. However, despite its latter arrival, it has managed to become the most popular Web3 library. 

Ethers.js - The most popular Web3 library

Aside from JavaScript support, ethers.js also includes utility functions in TypeScript (TS). Some of its main advantages include a considerable collection of maintained test cases, keeping private keys in your client safe and sound, and the ability to create JavaScript objects from any contract ABI, including ABIv2 and the ethers Human-Readable ABI with meta classes. Other important benefits of ethers.js include the following:

  • Importing and exporting JSON wallets (e.g., Geth and Parity).
  • Supports use of ENS names anywhere Ethereum addresses can be used.
  • Importing and exporting BIP 39 mnemonic phrases (twelve-word backup phrases) and HD wallets in several languages.
  • Multiple ways to connect to Ethereum nodes (JSON-RPC, Etherscan, MetaMask, Infura, Alchemy, or Cloudflare). 
  • Compact size.
  • Fully TypeScript ready โ€“ it includes definition files and full TS sources.
  • An open-source MIT license that includes all dependencies.

Thanks to all these benefits, ethers.js dapp development really took off in 2022, with more than 900,000 downloads. However, we believe there is an even better way to fetch on-chain data and listen to on-chain events. But we want you to determine for yourself whether you prefer working with ethers.js events or the Moralis Streams API. As such, make sure to explore the upcoming Web3 libraries example.    

Web3 Libraries Example โ€“ Ethers.js vs Web3 Streams

The above video shows you how to listen to events using ethers.js and how to do the same with the Moralis Streams API. In the case of ethers.js, the โ€œgetTransfer()โ€ function does most of the job. Within the function, we provide a contract address we want to listen to, a provider, and define the smart contractโ€™s event that we want to focus on (โ€œTransferโ€ in our case). Hereโ€™s the full script that gets the job done using ethers.js:

const ethers = require(โ€œethersโ€); const ABI = require(โ€œ./abi.jsonโ€); require (โ€œdotenvโ€).config();  async function getTransfer(){   const usdcAddress = โ€0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48โ€;   const provider = new ethers.providers.WebSocketProvider(     โ€˜wss://eth-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_KEY}โ€™   );    const contract=new ethers.Contract(usdcAddress, ABI, provider);    contract.on(โ€œTransferโ€, (from, to, value, event)=>{      let transferEvent ={       from: from,       to: to,       value: value,       eventData: event,     }      console.log(JSON.stringify(transferEvent, null, 4))    }) }  getTransfer()

Hereโ€™s the format in which youโ€™ll see the result in your terminal after running the above script:

Response code from using the ethers.js library

Note: Your exact results wonโ€™t match the ones above but the current live transactions.

Looking at the above screenshot, you can see that the data is not parsed. This means you need to further process the results before you can utilize them in your dapp. Fortunately, that is not the case when we use the Moralis Streams API. 

Title - Web3 Libraries - Listen to Smart Contract Transactions in Real-Time

Web3 Libraries โ€“ The โ€œKillerโ€ Alternative

In this section, youโ€™ll finally learn how to properly implement the snippet of code provided in the introduction of todayโ€™s article. If you want to use the following script to listen for on-chain events, you need to obtain your Moralis Web3 API key. The latter awaits you inside your admin area, which youโ€™ll be able to access with your free account:

Moralis Web3 API landing page showing an API key to copy

Then, save your API key inside your โ€œ.envโ€ file under the โ€œMORALIS_KEYโ€ variable. Next, you can use our script below. 

First, we need to import Moralis, EVM-compatible chains, and the ABI, and require โ€œdotenvโ€:

const Moralis = require("moralis").default; const Chains = require("@moralisweb3/common-evm-utils"); const EvmChain = Chains.EvmChain; Const ABI = require(โ€œ/abi.jsonโ€); require("dotenv").config();

With the above lines in place, we can define our streamโ€™s options:

const options = {     chains: [EvmChain.ETHEREUM],     description: "USDC Transfers",     tag: "usdcTransfers",     includeContractLogs: true,     abi: ABI,     Topic0: [โ€œTransfer(address, address,uint256)โ€],     webhookUrl: "your webhook url - use" };

Finally, we get to implement the snippet of code from the intro and add the USDC smart contract address:

Moralis.start({     apiKey: process.env.MORALIS_KEY, }).then(async () => {   const stream = await Moralis.Streams.add(options)   const {id} = stream.toJSON();    await Moralis.Streams.addAddress({        id: id,         address: [โ€0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48โ€]     })   });

With all of the above lines of code in place, we are ready to run the script, which returns parsed on-chain data:

Response code from using the Moralis Streams API

The above-created stream also appears in our admin area. The โ€œStreamsโ€ tab of the admin area is also the place where we can pause, edit, or delete any existing stream: 

Showing the stream information on the Moralis admin panel

As the โ€œNew Streamโ€ button indicates, this is also the place where we can create new streams using the admin UI. The latter takes us through the steps to set up options (like in the code above).

What are Web3 Libraries?

Web3 libraries are programming libraries that focus on Web3 development. They are collections of non-volatile resources that programmers can use for consistent and more user-friendly coding of scripts that in some way interact with blockchain networks. These resources can include configuration data, documentation, help data, message templates, pre-written code and subroutines, classes, values or type specifications, and more. 

Ethereum continues to be the leading programmable blockchain and, therefore, the heart of Web3 development. Plus, many other blockchains follow Ethereumโ€™s lead by being EVM-compatible. This also means they can use the same development tools. As such, most Web3 libraries focus on Ethereum. However, a Web3 library can target any other blockchain network (private or public) and any programming language.  

Web3 Libraries comparison - Web3.py vs JS

Programming Languages for Web3 Libraries

If you covered the above-presented Web3 libraries, you now know that JavaScript, Python, and Java are the programming languages behind the most popular libraries and also their alternatives. This also tells you that Web3 libraries help legacy devs use their Web2 proficiency to enter dapp development. For instance, in the case of Polkadot and Solana, Rust would be the language to use.

However, you probably know that smart contracts are an essential part of Web3 technology. As you progress, you may become interested in creating advanced and unique smart contracts. In that case, the aforementioned Web3 programming languages may not be enough. Sure, there are already some ways to create smart contracts with legacy languages, but Solidity is the leading choice among smart contract programming languages.

If you want to explore how you can utilize your legacy skills, make sure to check out our articles showing how to create an ERC721 token or ERC1155 token. Also, see how to tackle the โ€œcreate ERC20 tokenโ€ quest!     

Web3 Libraries Alternative

If you took on the above example, you already had an opportunity to get acquainted with the Moralis Streams API. You learned that it is the ultimate tool to listen to any smart contract or wallet address. You also found out that you can create new streams using the Moralis admin UI or Moralisโ€™ SDK. Essentially, Moralis Streams enable you to stream blockchain data into your backend via webhooks. Furthermore, since Moralis supports all the leading blockchains, you can do this on Ethereum, Polygon, Avalanche, BNB Chain, Fantom, Cronos, all testnets, and other networks. To explore the Moralis Streams API further, use the โ€œStreams APIโ€ link in the intro. 

Aside from listening to smart contracts and wallets, you can use Moralis to implement Web3 authentication with a single line of code. Also, with the Moralis Web3 Data API, you can quickly fetch any on-chain data. This toolset provides you with everything you need to create killer dapps โ€“ from Web3 wallets to Web3 games and everything in between. So, in case you havenโ€™t done so yet, create your free Moralis account and start BUIDLing!   

Web3 Libraries โ€“ Summary

In todayโ€™s article, you had a chance to meet all the leading Web3 libraries. As such, you now know that web3j, Web3.js, Web3.py, and ethers.js stand out. Along the way, we also answered, โ€œwhat is ethers.js?โ€ This is also where you discovered that ethers.js is arguably the most popular Web3 library. Then, you had an opportunity to take on our example, where we compared ethers.js with the Moralis Streams API. Consequently, you now know what the best method is when you want to listen to on-chain events.

Moving forward, you can focus on tackling your own dapp ideas using the knowledge and skills obtained herein. However, if you need more practice and guidance, or want to spark some creative thinking, make sure to use Moralisโ€™ resources. The Moralis documentation, our Web3 development video tutorials, and our crypto blog are all you need to become a Web3 developer for free. There, you can also find other practical tools, such as a gwei to ether converter and a reliable crypto faucet. Of course, you can also take a more professional approach to your blockchain development education by enrolling in Moralis Academy. In that case, make sure to start with blockchain and Bitcoin fundamentals.  



Read More: moralis.io

Tags: devsLibrariesListweb 3.0Web3
ADVERTISEMENT

Recent

Danger signs for Bitcoin as retail abandons it to institutions: Sky Wee

Danger signs for Bitcoin as retail abandons it to institutions: Sky Wee

May 14, 2025
Crypto VC deals drop in Q1, but funding more than doubles: PitchBook

Crypto VC deals drop in Q1, but funding more than doubles: PitchBook

May 14, 2025
Ether Nears $2.7K, Dogecoin Zooms 9% to Keep Cheery Mood Ongoing

Ether Nears $2.7K, Dogecoin Zooms 9% to Keep Cheery Mood Ongoing

May 14, 2025

Categories

  • Bitcoin (4,858)
  • Blockchain (11,412)
  • Crypto (9,352)
  • Dark Web (549)
  • DeFi (8,397)
  • Ethereum (4,905)
  • Metaverse (7,530)
  • Monero (290)
  • NFT (1,481)
  • Solana (5,047)
  • Web3 (20,703)
  • Zcash (509)

Category

Select Category

    Advertise

    Advertise your site, company or product to millions of web3, NFT and cryptocurrency enthusiasts. Learn more

    Useful Links

    Advertise
    DMCA
    Contact Us
    Privacy Policy
    Shipping & Returns
    Terms of Use

    Resources

    Exchanges
    Changelly
    Web3 Jobs

    Recent News

    Danger signs for Bitcoin as retail abandons it to institutions: Sky Wee

    Danger signs for Bitcoin as retail abandons it to institutions: Sky Wee

    May 14, 2025
    Crypto VC deals drop in Q1, but funding more than doubles: PitchBook

    Crypto VC deals drop in Q1, but funding more than doubles: PitchBook

    May 14, 2025

    ยฉ 2022 Altszn.com. All Rights Reserved.

    No Result
    View All Result
    • Home
      • Home โ€“ Layout 1
      • Home โ€“ Layout 2
      • Home โ€“ Layout 3

    ยฉ Altszn.com. All Rights Reserved.

    • bitcoinBitcoin (BTC) $ 102,911.00
    • ethereumEthereum (ETH) $ 2,587.62
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.54
    • bnbBNB (BNB) $ 649.01
    • solanaSolana (SOL) $ 175.80
    • usd-coinUSDC (USDC) $ 0.999998
    • dogecoinDogecoin (DOGE) $ 0.233963
    • cardanoCardano (ADA) $ 0.797391
    • tronTRON (TRX) $ 0.273595
    • staked-etherLido Staked Ether (STETH) $ 2,586.63
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 102,806.00
    • suiSui (SUI) $ 3.88
    • chainlinkChainlink (LINK) $ 16.85
    • wrapped-stethWrapped stETH (WSTETH) $ 3,107.18
    • avalanche-2Avalanche (AVAX) $ 24.58
    • stellarStellar (XLM) $ 0.304326
    • shiba-inuShiba Inu (SHIB) $ 0.000016
    • hedera-hashgraphHedera (HBAR) $ 0.204748
    • hyperliquidHyperliquid (HYPE) $ 25.00
    • leo-tokenLEO Token (LEO) $ 8.89
    • the-open-networkToncoin (TON) $ 3.26
    • bitcoin-cashBitcoin Cash (BCH) $ 400.29
    • litecoinLitecoin (LTC) $ 100.17
    • polkadotPolkadot (DOT) $ 4.93
    • usdsUSDS (USDS) $ 0.999888
    • wethWETH (WETH) $ 2,588.31
    • moneroMonero (XMR) $ 342.69
    • wrapped-eethWrapped eETH (WEETH) $ 2,762.88
    • pi-networkPi Network (PI) $ 0.840838
    • pepePepe (PEPE) $ 0.000014
    • bitget-tokenBitget Token (BGB) $ 4.74
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.00
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 102,838.00
    • whitebitWhiteBIT Coin (WBT) $ 30.25
    • bittensorBittensor (TAO) $ 454.45
    • uniswapUniswap (UNI) $ 6.66
    • nearNEAR Protocol (NEAR) $ 3.04
    • daiDai (DAI) $ 1.00
    • aptosAptos (APT) $ 5.77
    • aaveAave (AAVE) $ 228.01
    • okbOKB (OKB) $ 54.48
    • ondo-financeOndo (ONDO) $ 1.01
    • kaspaKaspa (KAS) $ 0.120529
    • jito-staked-solJito Staked SOL (JITOSOL) $ 211.38
    • ethereum-classicEthereum Classic (ETC) $ 19.74
    • internet-computerInternet Computer (ICP) $ 5.61
    • tokenize-xchangeTokenize Xchange (TKX) $ 36.13
    • crypto-com-chainCronos (CRO) $ 0.100870
    • bitcoinBitcoin (BTC) $ 102,911.00
    • ethereumEthereum (ETH) $ 2,587.62
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.54
    • bnbBNB (BNB) $ 649.01
    • solanaSolana (SOL) $ 175.80
    • usd-coinUSDC (USDC) $ 0.999998
    • dogecoinDogecoin (DOGE) $ 0.233963
    • cardanoCardano (ADA) $ 0.797391
    • tronTRON (TRX) $ 0.273595
    • staked-etherLido Staked Ether (STETH) $ 2,586.63
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 102,806.00
    • suiSui (SUI) $ 3.88
    • chainlinkChainlink (LINK) $ 16.85
    • wrapped-stethWrapped stETH (WSTETH) $ 3,107.18
    • avalanche-2Avalanche (AVAX) $ 24.58
    • stellarStellar (XLM) $ 0.304326
    • shiba-inuShiba Inu (SHIB) $ 0.000016
    • hedera-hashgraphHedera (HBAR) $ 0.204748
    • hyperliquidHyperliquid (HYPE) $ 25.00
    • leo-tokenLEO Token (LEO) $ 8.89
    • the-open-networkToncoin (TON) $ 3.26
    • bitcoin-cashBitcoin Cash (BCH) $ 400.29
    • litecoinLitecoin (LTC) $ 100.17
    • polkadotPolkadot (DOT) $ 4.93
    • usdsUSDS (USDS) $ 0.999888
    • wethWETH (WETH) $ 2,588.31
    • moneroMonero (XMR) $ 342.69
    • wrapped-eethWrapped eETH (WEETH) $ 2,762.88
    • pi-networkPi Network (PI) $ 0.840838
    • pepePepe (PEPE) $ 0.000014
    • bitget-tokenBitget Token (BGB) $ 4.74
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.00
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 102,838.00
    • whitebitWhiteBIT Coin (WBT) $ 30.25
    • bittensorBittensor (TAO) $ 454.45
    • uniswapUniswap (UNI) $ 6.66
    • nearNEAR Protocol (NEAR) $ 3.04
    • daiDai (DAI) $ 1.00
    • aptosAptos (APT) $ 5.77
    • aaveAave (AAVE) $ 228.01
    • okbOKB (OKB) $ 54.48
    • ondo-financeOndo (ONDO) $ 1.01
    • kaspaKaspa (KAS) $ 0.120529
    • jito-staked-solJito Staked SOL (JITOSOL) $ 211.38
    • ethereum-classicEthereum Classic (ETC) $ 19.74
    • internet-computerInternet Computer (ICP) $ 5.61
    • tokenize-xchangeTokenize Xchange (TKX) $ 36.13
    • crypto-com-chainCronos (CRO) $ 0.100870