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

Ethers.js Tutorial โ€“ How to Get Started Using a Simple Ethers.js Example

Altszn.com by Altszn.com
December 14, 2022
in Web3
0
Ethers.js Tutorial โ€“ How to Get Started Using a Simple Ethers.js Example
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Although outlined code snippets are great when developing, having access to a proper ethers.js tutorial that instructs novice developers and serves as a reminder for experienced ones can take any development project to the next level. Moving forward, we will not only outline code snippets but also provide step-by-step instructions on how to get started with ethers.js, and weโ€™ll do so with the help of a simple ethers.js example. That said, aside from exploring ethers.js examples, you can also use Web3.js as an alternative. However, in the last two years (or so), most dapp (decentralized application) developers have been more inclined toward ethers.js. Why? For example, itโ€™s easier to listen to the blockchain with ethers.js, which weโ€™ll look closer at in this tutorial! 

We will first ensure you can answer the โ€œwhat is ethers.js?โ€ question. This is where youโ€™ll also learn about the core features of this practical JS tool. Then, weโ€™ll examine the main benefits of using ethers.js. With the basics under our belt, weโ€™ll take you through our ethers.js tutorial. By following our lead, youโ€™ll be able to create your ethers.js example script and learn how to use ethers.js. 

However, you should keep in mind that thereโ€™s an even smoother solution for listening to on-chain events โ€“ Moralisโ€™ Streams API. Thus, weโ€™ll redo the same ethers.js example but use the Streams API instead. Weโ€™ll also point out some key advantages of this next-level solution. Nonetheless, youโ€™ll even learn how to use a neat UI to go beyond ethers.js examples. As such, create your free Moralis account, which is all you need to start using Moralis Streams.   

scale ethers.js in this tutorial - sign up to get started

Exploring Ethers.js โ€“ What is it?

Just like Web3.js, ethers.js is a Web3 JavaScript library. Since its release in 2016, this tool for blockchain interaction has experienced impressive adoption. Everyone who has ever used this JS library can thank Richard Moore, the man behind ethers.js. It is safe to say that ethers.js is the most popular open-source Ethereum JS library. It features millions of downloads and has surpassed Web3.js in daily downloads by more than 60% in 2022 

For more information, read our Web3.js vs ethers.js comparison. 

purple background with white text stating ethers.js

If you know a thing or two about any conventional programming library, you wonโ€™t be surprised to hear that ethers.js consists of a collection of prewritten code snippets. The latter can be used to perform many recurring functions and, thus, avoid reinventing the wheel. Of course, ethers.jsโ€™ functionalities focus on Web3 via Ethereum (ETH) and other EVM-compatible blockchains. As such, this ETH JS library enables you to communicate easily and interact with decentralized networks. Over time, ethers.js has expanded and become quite a general-purpose library for Web3 development. Furthermore, itโ€™s been successful at fulfilling its goals of being a complete and compact solution for developers looking to interact with the Ethereum chain. 

Because this JS library offers many features, this results in countless ethers.j examples. However, when listening to blockchain events, ethers.jsโ€™ option to connect to Ethereum nodes using JSON-RPC, Etherscan, MetaMask, Infura, Alchemy, or Cloudflare is the key. However, this also means you have to worry about one of these node providers. Weโ€™ll explain how to avoid that later on, but for now, letโ€™s focus on ethers.js features. 

features are written in chalk on a chalkboard

Main Features of Ethers.js 

Aside from enabling you to connect to Ethereum node providers, ethers.js maintains many other features, which enables you to cover the following aspects:

  • Create JavaScript objects from any contract ABI, including ABIv2 and ethersโ€™ Human-Readable ABI, with meta classes.
  • Keep your private keys in your client safe.
  • Import and export JSON wallets (Geth and Parity).
  • Use ENS names as first-class citizens anywhere an Ethereum address can be used.
  • Import and export BIP 39 mnemonic phrases (twelve-word backup phrases) and HD wallets in several languages. 
megaphone shouting benefits

Benefits of Using Ethers.js

Ethers.js features a small bundle size, extensive and straightforward documentation, and a user-friendly API structure. Furthermore, it is intuitive and straightforward to use. Also, aside from JavaScript, ethers.js supports TypeScript (TS). All these benefits, combined with the above-listed features, make ethers.js a highly attractive library for many Web3 developers. 

Letโ€™s look at a sum of ethers.jsโ€™ main benefits:

  • Minimal size โ€“ ethers.js is tiny, only 88 KB compressed and 284 KB uncompressed.
  • Includes extensive documentation.
  • Comes with a large collection of maintained test cases.
  • Ethers.js includes definition files and complete TS sources โ€“ it is fully TypeScript-ready.
  • Comes with an open-source MIT license that includes all dependencies.

Aside from these ethers.js-specific benefits, learning how to use ethers.js brings some universal advantages. After all, blockchain is here to stay and poised to radically change how the world operates. Thus, you may use this ethers.js tutorial, knowing that itโ€™s helping you learn to become part of that solution. 

Moreover, some of the most common ethers.js examples revolve around creating whale alerts, building automated bots, monitoring NFT collections, Web3 game notifications, etc. Ultimately, when listening to on-chain events either with ethers.js or other reliable tools, your main objective is to execute actions automatically as a response to specific on-chain events occurring. So, your goal must be to choose a tool that will enable you to do that effectively and efficiently.

code editor with an ethers.js file

Tutorial on How to Use Ethers.js โ€“ Get Started with an Ethers.js Example

Itโ€™s time we show you how to use ether.js by tackling our ethers.js tutorial. To make things as convenient for you as possible, you can use our ethers.js example script (โ€œindex.jsโ€) found below. However, letโ€™s still guide you through the code. So, in the top line, you must first ensure that your NodeJS file uses ethers.js. Then, you must import the application binary interface (ABI), which is specific to every smart contract. That said, the โ€œgetTransferโ€ async function deserves your main attention. After all, the latter takes care of listening to the blockchain. 

Using our ethers.js example script, youโ€™ll focus on the USDC contract address. Of course, you could convert it to other ethers.js examples by using other contract addresses. Furthermore, the โ€œgetTransferโ€ function below relies on the ethers.js libraryโ€™s โ€œWebSocketProviderโ€ endpoint. By using this endpoint, you can define the node provider you want to use. To make that work, you must also obtain that providerโ€™s key, which is an important aspect of how to use ethers.js. The example code below focuses on Alchemy. However, you should use a node provider that supports the chain(s) you want to focus on.

Aside from a contract address and provider, the โ€œgetTransferโ€ function also accepts an ABI. Last but not least, you also need to set up a โ€œtransferโ€ listener. The latter will also console-log the relevant on-chain details.

multiple lines of code

Exploring Our Ethers.js Tutorial Script

Below is our example script that is the core of todayโ€™s ethers.js tutorial. So, make sure to copy the entire script and test it:

const ethers = require("ethers"); const ABI = require("./abi.json"); require("dotenv").config();  async function getTransfer(){     const usdcAddress = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"; ///USDC Contract     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()

Once you have the above lines of code in place, you can run the script using the following command:

node index.js

In response, you should see the results in your terminal:

code structure result from using the script inside this ethers.js tutorial

There are countless ethers.js examples that we could focus on; however, the above ethers.js tutorial provides you with more than enough to get going. Moreover, looking at the results of the above script, you can see that ethers.js provides you with quite a lot of details. Unfortunately, however, these details come in the form of un-parsed data. This is one of the main reasons why instead of learning how to use ethers.js, many devs focus on utilizing Moralisโ€™ Streams API. 

moralis streams api is written in black on a white background

Use a Better Ethers.js Example

Above, you were able to see ethers.js in action, and if you took our example script for a spin, you even saw firsthand that ethers.js obtains real-time events. Consequently, it would be wrong to call this ETH JS library anything less than a very decent open-source solution for listening to the blockchain. Yet, ethers.js comes with some limitations. Trying to overcome these limitations as you go about developing your dapps can be quite costly. Hence, the above ethers.js tutorial wouldnโ€™t be complete without pointing out the main ethers.jsโ€™ limitations:

  • Cannot provide you with 100% reliability
  • You canโ€™t filter on-chain events from the gate 
  • Inability to take into account multiple addresses
  • You canโ€™t listen to wallet addresses 

On the other hand, the Moralis Streams API covers all those aspects. This makes it the ultimate solution for streaming blockchain data. That said, you can find a more detailed ethers.js vs Web3 streams comparison on our blog; however, the following image shows the gist of it: 

table showing a side-by-side comparison of an ethers.js example and moralis streams api

With that said, letโ€™s tackle the above ethers.js tutorial with Moralis Streams.

Streams API โ€“ More Powerful Than Any Ethers.js Examples

The goal of this subsection is to obtain the same on-chain data as above โ€“ any USDC transfer on Ethereum. However, instead of using ether.js, Moralisโ€™ Streams API will be our tool. If you want to follow our lead, create another โ€œindex.jsโ€ file and make sure to import Moralis and its utils at the top:

const Moralis = require("moralis").default; const Chains = require("@moralisweb3/common-evm-utils"); const EvmChain = Chains.EvmChain; const ABI = require("./abi.json"); require("dotenv").config();  const options = {   chains: [EvmChain.ETHEREUM],   description: "USDC Transfers 100k",   tag: "usdcTransfers100k",   includeContractLogs: true,   abi: ABI,   topic0: ["Transfer(address,address,uint256)"],   webhookUrl: "https://22be-2001-2003-f58b-b400-f167-f427-d7a8-f84e.ngrok.io/webhook",   advancedOptions: [     {         topic0: "Transfer(address,address,uint256)",         filter: {             gt : ["value", "100000"+"".padEnd(6,"0")]         }     } ]  };  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"]   }) });

Looking at the lines of code above, you can see that the script focuses on the same ABI and the same contract address. The script also covers the options that the Streams API provides. This is also where we used โ€œETHEREUMโ€ to focus on that chain. However, since Moralis is all about cross-chain interoperability, we could easily target any other chain or multiple chains simultaneously.

Furthermore, the above script also initiates Moralis using your Moralis Web3 API key. Fortunately, anyone with a free Moralis account gets to obtain that key in two steps:

web3 api landing page showing the api key

Among the bottom lines of the above code, you can see the โ€œaddAddressโ€ endpoint. The latter enables you to add multiple addresses and listen to them simultaneously. To see that option in action, make sure to use the video below. This is also the place to learn how to create and manage streams using a neat UI.

Ultimately, when using Moralisโ€™ Streams API, we receive parsed data. Also, not only do we receive transactions hashes and from and to addresses, but we also receive transfer values:

The video tutorial below also demonstrated how to use the filtering feature of this powerful โ€œethers.js 2.0โ€ tool.

Ethers.js Tutorial โ€“ How to Get Started Using a Simple Ethers.js Example โ€“ Summary

In todayโ€™s article, you had an opportunity to learn all you need to know about ethers.js โ€“ the leading ETH JavaScript library. As such, you now know the core features and main benefits of using this library. You also had a chance to follow our ethers.js tutorial to take this JS library for a spin. Also, you learned that despite ethers.jsโ€™s great power, it has several limitations. However, you also learned that you could bridge these limitations using Moralisโ€™ Streams API. In fact, you were able to follow our lead and redo the ethers.js tutorial but using Moralis Streams instead. Last but not least, following a detailed video tutorial, you had an opportunity to see how filtering works, how you can listen to multiple addresses, and how to use the Moralis Streams UI.

streams landing page from moralis

Following the trends and devsโ€™ preferences, itโ€™s safe to say that the Streams API is the tool of the future. Thus, make sure to learn how to work with it properly by visiting the Streams API documentation page. This is also the place to find quick-start tutorials and many examples. By exploring other pages of the Moralis docs, you can master all of Moralisโ€™ tools. By doing so, youโ€™ll be a confident dapp developer with your legacy skills. 

Furthermore, remember to explore other blockchain development topics covered on the Moralis YouTube channel and the Moralis blog. Some of the latest articles explain how to get all tokens owned by a wallet, what ERC 1155 NFTs are, and what the Sepolia testnet is. In addition, if youโ€™d like to understand Web3 storage, make sure to read our articles explaining how Web3 data storage works, what web3.storage is, how to use metadata for NFT storage, using IPFS for NFT metadata, and why developers should opt for the marketโ€™s leading Web3 provider when wanting to upload files to IPFS. You can also take a more professional approach to your crypto education โ€“ enroll in Moralis Academy and master blockchain and Bitcoin fundamentals. 





Read More: moralis.io

Tags: Ethers.jssimpleStartedTutorialweb 3.0Web3
ADVERTISEMENT

Recent

AVAX Plunges 9% as Global Economic Tensions Rattle Crypto Markets

AVAX Plunges 9% as Global Economic Tensions Rattle Crypto Markets

June 2, 2025
Cointelegraph Bitcoin & Ethereum Blockchain News

Cointelegraph Bitcoin & Ethereum Blockchain News

June 2, 2025
How to Use Index Funds and ETFs for Passive Crypto Income

How to Use Index Funds and ETFs for Passive Crypto Income

June 2, 2025

Categories

  • Bitcoin (4,501)
  • Blockchain (10,743)
  • Crypto (8,682)
  • Dark Web (438)
  • DeFi (8,083)
  • Ethereum (4,531)
  • Metaverse (6,762)
  • Monero (247)
  • NFT (1,071)
  • Solana (4,898)
  • Web3 (19,784)
  • Zcash (456)

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

    AVAX Plunges 9% as Global Economic Tensions Rattle Crypto Markets

    AVAX Plunges 9% as Global Economic Tensions Rattle Crypto Markets

    June 2, 2025
    Cointelegraph Bitcoin & Ethereum Blockchain News

    Cointelegraph Bitcoin & Ethereum Blockchain News

    June 2, 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.

    • compound-governance-tokenCompound (COMP) $ 40.67
    • compound-governance-tokenCompound (COMP) $ 40.67
    • wormholeWormhole (W) $ 0.079117
    • wormholeWormhole (W) $ 0.079117
    • morphoMorpho (MORPHO) $ 1.32
    • morphoMorpho (MORPHO) $ 1.32
    • sun-tokenSun Token (SUN) $ 0.018812
    • sun-tokenSun Token (SUN) $ 0.018812
    • staked-hypeStaked HYPE (STHYPE) $ 33.23
    • staked-hypeStaked HYPE (STHYPE) $ 33.23
    • movementMovement (MOVE) $ 0.140638
    • movementMovement (MOVE) $ 0.140638
    • popcatPopcat (POPCAT) $ 0.361836
    • popcatPopcat (POPCAT) $ 0.361836
    • coinbase-wrapped-staked-ethCoinbase Wrapped Staked ETH (CBETH) $ 2,796.45
    • coinbase-wrapped-staked-ethCoinbase Wrapped Staked ETH (CBETH) $ 2,796.45
    • ether-fi-staked-btcEther.fi Staked BTC (EBTC) $ 104,567.00
    • ether-fi-staked-btcEther.fi Staked BTC (EBTC) $ 104,567.00
    • mog-coinMog Coin (MOG) $ 0.00000090
    • mog-coinMog Coin (MOG) $ 0.00000090
    • amp-tokenAmp (AMP) $ 0.004135
    • amp-tokenAmp (AMP) $ 0.004135
    • gnosisGnosis (GNO) $ 129.54
    • gnosisGnosis (GNO) $ 129.54
    • akash-networkAkash Network (AKT) $ 1.26
    • akash-networkAkash Network (AKT) $ 1.26
    • beam-2Beam (BEAM) $ 0.006504
    • beam-2Beam (BEAM) $ 0.006504
    • livepeerLivepeer (LPT) $ 8.24
    • livepeerLivepeer (LPT) $ 8.24
    • swethSwell Ethereum (SWETH) $ 2,770.09
    • swethSwell Ethereum (SWETH) $ 2,770.09
    • polygon-bridged-wbtc-polygon-posPolygon Bridged WBTC (Polygon POS) (WBTC) $ 104,376.00
    • polygon-bridged-wbtc-polygon-posPolygon Bridged WBTC (Polygon POS) (WBTC) $ 104,376.00
    • trust-wallet-tokenTrust Wallet (TWT) $ 0.796883
    • trust-wallet-tokenTrust Wallet (TWT) $ 0.796883
    • justJUST (JST) $ 0.033064
    • justJUST (JST) $ 0.033064
    • matic-networkPolygon (MATIC) $ 0.215569
    • matic-networkPolygon (MATIC) $ 0.215569
    • olympusOlympus (OHM) $ 19.85
    • olympusOlympus (OHM) $ 19.85
    • terra-lunaTerra Luna Classic (LUNC) $ 0.000059
    • terra-lunaTerra Luna Classic (LUNC) $ 0.000059
    • polygon-pos-bridged-weth-polygon-posPolygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,542.09
    • polygon-pos-bridged-weth-polygon-posPolygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,542.09
    • fraxLegacy Frax Dollar (FRAX) $ 0.999753
    • fraxLegacy Frax Dollar (FRAX) $ 0.999753
    • wrapped-avaxWrapped AVAX (WAVAX) $ 20.54
    • wrapped-avaxWrapped AVAX (WAVAX) $ 20.54
    • binance-peg-busdBinance-Peg BUSD (BUSD) $ 0.998621
    • binance-peg-busdBinance-Peg BUSD (BUSD) $ 0.998621
    • plumePlume (PLUME) $ 0.128220
    • plumePlume (PLUME) $ 0.128220
    • global-dollarGlobal Dollar (USDG) $ 0.999920
    • global-dollarGlobal Dollar (USDG) $ 0.999920
    • axelarAxelar (AXL) $ 0.328176
    • axelarAxelar (AXL) $ 0.328176
    • ripple-usdRipple USD (RLUSD) $ 0.999888
    • ripple-usdRipple USD (RLUSD) $ 0.999888
    • frax-etherFrax Ether (FRXETH) $ 2,534.13
    • frax-etherFrax Ether (FRXETH) $ 2,534.13
    • mantra-daoMANTRA (OM) $ 0.316829
    • mantra-daoMANTRA (OM) $ 0.316829
    • superfarmSuperVerse (SUPER) $ 0.677200
    • superfarmSuperVerse (SUPER) $ 0.677200
    • safeSafe (SAFE) $ 0.511622
    • safeSafe (SAFE) $ 0.511622
    • bybit-staked-solBybit Staked SOL (BBSOL) $ 166.04
    • bybit-staked-solBybit Staked SOL (BBSOL) $ 166.04
    • turboTurbo (TURBO) $ 0.004299
    • turboTurbo (TURBO) $ 0.004299
    • 1inch1inch (1INCH) $ 0.210211
    • 1inch1inch (1INCH) $ 0.210211
    • berachain-beraBerachain (BERA) $ 2.43
    • berachain-beraBerachain (BERA) $ 2.43
    • creditcoin-2Creditcoin (CTC) $ 0.639123
    • creditcoin-2Creditcoin (CTC) $ 0.639123
    • cheems-tokenCheems Token (CHEEMS) $ 0.000001
    • cheems-tokenCheems Token (CHEEMS) $ 0.000001
    • cat-in-a-dogs-worldcat in a dogs world (MEW) $ 0.003223
    • cat-in-a-dogs-worldcat in a dogs world (MEW) $ 0.003223
    • aave-usdc-sonicAave USDC (Sonic) (ASONUSDC) $ 0.999555
    • aave-usdc-sonicAave USDC (Sonic) (ASONUSDC) $ 0.999555
    • quoriumQuorium (QGOLD) $ 3,374.78
    • quoriumQuorium (QGOLD) $ 3,374.78
    • btse-tokenBTSE Token (BTSE) $ 1.68
    • btse-tokenBTSE Token (BTSE) $ 1.68
    • dashDash (DASH) $ 21.83
    • dashDash (DASH) $ 21.83
    • abtcaBTC (ABTC) $ 103,666.00
    • abtcaBTC (ABTC) $ 103,666.00
    • kusamaKusama (KSM) $ 16.00
    • kusamaKusama (KSM) $ 16.00
    • compound-wrapped-btccWBTC (CWBTC) $ 2,096.57
    • compound-wrapped-btccWBTC (CWBTC) $ 2,096.57
    • decredDecred (DCR) $ 15.68
    • decredDecred (DCR) $ 15.68
    • ai16zai16z (AI16Z) $ 0.239789
    • ai16zai16z (AI16Z) $ 0.239789
    • compound-governance-tokenCompound (COMP) $ 40.67
    • compound-governance-tokenCompound (COMP) $ 40.67
    • wormholeWormhole (W) $ 0.079117
    • wormholeWormhole (W) $ 0.079117
    • morphoMorpho (MORPHO) $ 1.32
    • morphoMorpho (MORPHO) $ 1.32
    • sun-tokenSun Token (SUN) $ 0.018812
    • sun-tokenSun Token (SUN) $ 0.018812
    • staked-hypeStaked HYPE (STHYPE) $ 33.23
    • staked-hypeStaked HYPE (STHYPE) $ 33.23
    • movementMovement (MOVE) $ 0.140638
    • movementMovement (MOVE) $ 0.140638
    • popcatPopcat (POPCAT) $ 0.361836
    • popcatPopcat (POPCAT) $ 0.361836
    • coinbase-wrapped-staked-ethCoinbase Wrapped Staked ETH (CBETH) $ 2,796.45
    • coinbase-wrapped-staked-ethCoinbase Wrapped Staked ETH (CBETH) $ 2,796.45
    • ether-fi-staked-btcEther.fi Staked BTC (EBTC) $ 104,567.00
    • ether-fi-staked-btcEther.fi Staked BTC (EBTC) $ 104,567.00
    • mog-coinMog Coin (MOG) $ 0.00000090
    • mog-coinMog Coin (MOG) $ 0.00000090
    • amp-tokenAmp (AMP) $ 0.004135
    • amp-tokenAmp (AMP) $ 0.004135
    • gnosisGnosis (GNO) $ 129.54
    • gnosisGnosis (GNO) $ 129.54
    • akash-networkAkash Network (AKT) $ 1.26
    • akash-networkAkash Network (AKT) $ 1.26
    • beam-2Beam (BEAM) $ 0.006504
    • beam-2Beam (BEAM) $ 0.006504
    • livepeerLivepeer (LPT) $ 8.24
    • livepeerLivepeer (LPT) $ 8.24
    • swethSwell Ethereum (SWETH) $ 2,770.09
    • swethSwell Ethereum (SWETH) $ 2,770.09
    • polygon-bridged-wbtc-polygon-posPolygon Bridged WBTC (Polygon POS) (WBTC) $ 104,376.00
    • polygon-bridged-wbtc-polygon-posPolygon Bridged WBTC (Polygon POS) (WBTC) $ 104,376.00
    • trust-wallet-tokenTrust Wallet (TWT) $ 0.796883
    • trust-wallet-tokenTrust Wallet (TWT) $ 0.796883
    • justJUST (JST) $ 0.033064
    • justJUST (JST) $ 0.033064
    • matic-networkPolygon (MATIC) $ 0.215569
    • matic-networkPolygon (MATIC) $ 0.215569
    • olympusOlympus (OHM) $ 19.85
    • olympusOlympus (OHM) $ 19.85
    • terra-lunaTerra Luna Classic (LUNC) $ 0.000059
    • terra-lunaTerra Luna Classic (LUNC) $ 0.000059
    • polygon-pos-bridged-weth-polygon-posPolygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,542.09
    • polygon-pos-bridged-weth-polygon-posPolygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,542.09
    • fraxLegacy Frax Dollar (FRAX) $ 0.999753
    • fraxLegacy Frax Dollar (FRAX) $ 0.999753
    • wrapped-avaxWrapped AVAX (WAVAX) $ 20.54
    • wrapped-avaxWrapped AVAX (WAVAX) $ 20.54
    • binance-peg-busdBinance-Peg BUSD (BUSD) $ 0.998621
    • binance-peg-busdBinance-Peg BUSD (BUSD) $ 0.998621
    • plumePlume (PLUME) $ 0.128220
    • plumePlume (PLUME) $ 0.128220
    • global-dollarGlobal Dollar (USDG) $ 0.999920
    • global-dollarGlobal Dollar (USDG) $ 0.999920
    • axelarAxelar (AXL) $ 0.328176
    • axelarAxelar (AXL) $ 0.328176
    • ripple-usdRipple USD (RLUSD) $ 0.999888
    • ripple-usdRipple USD (RLUSD) $ 0.999888
    • frax-etherFrax Ether (FRXETH) $ 2,534.13
    • frax-etherFrax Ether (FRXETH) $ 2,534.13
    • mantra-daoMANTRA (OM) $ 0.316829
    • mantra-daoMANTRA (OM) $ 0.316829
    • superfarmSuperVerse (SUPER) $ 0.677200
    • superfarmSuperVerse (SUPER) $ 0.677200
    • safeSafe (SAFE) $ 0.511622
    • safeSafe (SAFE) $ 0.511622
    • bybit-staked-solBybit Staked SOL (BBSOL) $ 166.04
    • bybit-staked-solBybit Staked SOL (BBSOL) $ 166.04
    • turboTurbo (TURBO) $ 0.004299
    • turboTurbo (TURBO) $ 0.004299
    • 1inch1inch (1INCH) $ 0.210211
    • 1inch1inch (1INCH) $ 0.210211
    • berachain-beraBerachain (BERA) $ 2.43
    • berachain-beraBerachain (BERA) $ 2.43
    • creditcoin-2Creditcoin (CTC) $ 0.639123
    • creditcoin-2Creditcoin (CTC) $ 0.639123
    • cheems-tokenCheems Token (CHEEMS) $ 0.000001
    • cheems-tokenCheems Token (CHEEMS) $ 0.000001
    • cat-in-a-dogs-worldcat in a dogs world (MEW) $ 0.003223
    • cat-in-a-dogs-worldcat in a dogs world (MEW) $ 0.003223
    • aave-usdc-sonicAave USDC (Sonic) (ASONUSDC) $ 0.999555
    • aave-usdc-sonicAave USDC (Sonic) (ASONUSDC) $ 0.999555
    • quoriumQuorium (QGOLD) $ 3,374.78
    • quoriumQuorium (QGOLD) $ 3,374.78
    • btse-tokenBTSE Token (BTSE) $ 1.68
    • btse-tokenBTSE Token (BTSE) $ 1.68
    • dashDash (DASH) $ 21.83
    • dashDash (DASH) $ 21.83
    • abtcaBTC (ABTC) $ 103,666.00
    • abtcaBTC (ABTC) $ 103,666.00
    • kusamaKusama (KSM) $ 16.00
    • kusamaKusama (KSM) $ 16.00
    • compound-wrapped-btccWBTC (CWBTC) $ 2,096.57
    • compound-wrapped-btccWBTC (CWBTC) $ 2,096.57
    • decredDecred (DCR) $ 15.68
    • decredDecred (DCR) $ 15.68
    • ai16zai16z (AI16Z) $ 0.239789
    • ai16zai16z (AI16Z) $ 0.239789