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

Exploring Web3 Contract Methods โ€“ How to Run Web3 Methods on Ethereum

Altszn.com by Altszn.com
December 15, 2022
in Web3
0
Exploring Web3 Contract Methods โ€“ How to Run Web3 Methods on Ethereum
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


When building dapps on Ethereum, you will at some point have to deal with Web3 contracts. Thanks to Moralis, handling Web3 contract methods is easy, and with the following code snippet, you can run Web3 methods on Ethereum or execute other EVM-compatible smart contracts:

const response = await Moralis.EvmApi.utils.runContractFunction({     abi,     functionName,     address, });

If youโ€™ve worked with Moralis before, you know exactly how to use the above lines of code. On the other hand, if youโ€™re new to Moralis, go through the upcoming sections to master the basics. Also, make sure to complete the tutorial waiting for you herein. As a result, youโ€™ll be able to run Web3 contract methods quickly and easily! That said, create your free Moralis account and follow our lead.  

Sign Up with Moralis

Overview

Blockchain technology is evolving fast and is shaping the new generation of the web โ€“ Web3. While we may still be in the early stages of the Web3 revolution, blockchain programming has already come a long way. Hence, we now have many excellent tools that enable devs to build decentralized applications (dapps) without reinventing the wheel. Moralis โ€“ the ultimate Web3 API provider โ€“ is one of the core tools. Thanks to its ever-evolving EVM API, Ethereum development feels like a breeze! Moreover, in this article, weโ€™ll utilize this tool as we hone in on running Web3 contract methods.    

5 blocks with web3 contract methods code

We will start todayโ€™s topic by explaining what Web3 contract methods are and how they work. Then, we will take on a Web3 JS tutorial showing you how to utilize the โ€œrunContractFunctionโ€ EVM API endpoint. Hence, youโ€™ll learn how to use your JavaScript proficiency to run read-only Web3 methods with your โ€œ.jsโ€ scripts.

circle of lifespan of ethereum and nodes

What are Web3 Contract Methods?

Looking at the โ€œWeb3 contract methodsโ€ phrase, you can see it consists of three words. As such, itโ€™s important to understand what โ€œWeb3โ€, โ€œcontractโ€, and โ€œmethodsโ€ are. Then, youโ€™ll be able to put it all together. Weโ€™ve already mentioned above that Web3 is the new iteration of the web. It is a natural evolution of the internet initiated with the implementation of blockchain technology. However, it all started with Web1, which was read-only. Next, Web2 emerged with its read-write functionality, which is still the web most people use today. However, more and more devs and users are starting to see the power of Web3, which adds the component of ownership. 

web1 vs web2 vs web3 contract methods

Furthermore, programmable blockchains are at the core of Web3, with Ethereum leading the pack. These programmable blockchains enable devs to deploy on-chain pieces of software or programs. The latter are known as smart contracts or Web3 contracts that automate various actions. Essentially, smart contracts trigger predefined actions as predefined conditions finalize. As such, Web3 contracts are set to be the key to automating the future in a transparent and just manner.

people exchanging contracts

Nonetheless, methods are a lot like functions โ€“ they are sets of instructions that perform tasks. However, the core difference between functions and methods is that the latter are associated with objects, while functions are not. Furthermore, functions are defined outside of classes. On the other hand, methods are defined inside of classes and are a part of them. However, despite these differences, you will often see the words โ€œfunctionsโ€ and โ€œmethodsโ€ used interchangeably.   

So, Web3 contract methods are methods (or functions) that are part of smart contracts that can enable interaction with smart contracts. That said, in this article, we will focus on โ€œcallโ€ methods, which do not involve sending transactions; theyโ€™re known as read-only methods.

web3 methods vs function buttons

How Do Web3 Methods Work?

In the previous section, we mentioned โ€œcallโ€ methods, but we also have the โ€œsendโ€ Web3 contact methods. To explain how Web3 methods work, we need to look at both of these types of methods. So, we use โ€œcallโ€ to read contract data. This also means that these methods do not modify the contractโ€™s storage (blockchain state). Hence, thereโ€™s no transaction involved with these methods. Essentially, they just read various storage variables of the deployed smart contract. Moreover, โ€œMoralis.EvmApi.utils.runContractFunctionโ€ is that type of method. Among other parameters, it uses an ABI (application binary interface). With that in mind, these methods work with โ€œread-onlyโ€ functions inside smart contracts.

On the other hand, โ€œsendโ€ methods interact with smart contracts. They change the contractโ€™s storage by executing on-chain transactions. Accordingly, this type of method triggers โ€œwriteโ€ functions inside smart contracts.

To better understand how Web3 methods work, it helps to look into smart contracts further. Thus, we encourage you to use Etherscan and explore various smart contracts. For instance, you can look at at the โ€œCool Catsโ€ NFT example:

etherscan cool cats landing page

 Once on the page, scroll down and select the โ€œContractโ€ tab:

etherscan write web3 contract page

Looking at the above screenshot, you can see the โ€œRead Contractโ€ and โ€œWrite Contractโ€ options. They correspond to the โ€œread-onlyโ€ or โ€œreadโ€ functions and โ€œwriteโ€ functions that are inside this smart contract. Furthermore, the โ€œConnect to Web3โ€ button appears when you select the โ€œWrite Contractโ€ option. This indicates you must connect your Web3 wallet to confirm the related transactions and cover their fees.

On the other hand, thereโ€™s no โ€œConnect to Web3โ€ button under the โ€œRead Contractโ€ option. However, you do get to see all the read-only Web3 contract methods that this particular smart contract includes:

read contract for web3 page

Web3 Contract Methods Tutorial โ€“ How to Run Web3 Methods on Ethereum

Now that you know what Web3 contract methods are and how to explore smart contracts to know what options they offer, itโ€™s time we focus on todayโ€™s tutorial. Accordingly, weโ€™ll take you through the steps you need to complete to use the โ€œrunContractFunctionโ€ endpoint presented at the top of this article. Moreover, for the sake of this tutorial, we will focus on the โ€œCool Catsโ€ NFT smart contract from the previous section. Of course, you can use this particular Moralis endpoint to focus on any other EVM-compatible smart contract that includes read-only functions. 

Let us start by visiting the documentation page to run the contract function:

run web3 contract documentation page

As the above screenshot indicates, to use this Web3 contract method, we need to provide the required parameters. These include a smart contractโ€™s address, function name, and the contractโ€™s ABI. There are some other optional parameters that you may explore on your own. Letโ€™s just briefly talk about the chain parameter. By default, Moralisโ€™ EVM API focuses on Ethereum, but you can use this parameter to focus on any other supported EVM-compatible chain.

networks supported by moralis

All in all, the โ€œrunContractFunctionโ€ endpoint enables you to incorporate the same functionality that you can manually explore on Etherscan via the โ€œRead Contractโ€ option (as presented above). Furthermore, on the top-right side of the above documentation page, you can select the programming language and frameworks you want to work with. However, in this tutorial, weโ€™ll focus on NodeJS. 

Example Project: Incorporating Web3 Contract Methods in a NodeJS Dapp    

This section will teach you how to create a NodeJS dapp and properly incorporate the โ€œrunContractFunctionโ€ endpoint. You will also learn how to obtain your Moralis Web3 API key โ€“ the gateway to using the best Ethereum API in 2023. So, letโ€™s open Visual Studio Code (VSC) and dive right in. 

You can follow our lead and create a โ€œContractFunctionsโ€ folder and open it in VSC. Then, use your terminal to initialize a NodeJS project by entering the following command:

npm init -y

As a result of running the above command, youโ€™ll see a โ€œpackage.jsonโ€ file in your file tree:

file tree showing package.json file

Next, initialize an โ€œindex.jsโ€ file by using the command below:

touch index.js

Youโ€™ll use the โ€œindex.jsโ€ script to write the logic related to this example project. However, before you start coding, make sure to install all the required dependencies:

npm i moralis dotenv

Nonetheless, also create your โ€œ.envโ€ file and populate it with โ€œMORALIS_KEY = โ€โ€:

.env file

As the value for this environment variable, you need to enter your Moralis Web3 API key, which you can obtain in two simple steps (see the image below). However, before you can access your Moralis admin area, you need to create your free Moralis account. So, in case you havenโ€™t done so yet, use the link in the introduction or visit Moralisโ€™ homepage and click on the โ€œStart for Freeโ€ button.

step 1 click on web3 api page step two copy web3 api

With your Moralis API key in place, open your โ€œindex.jsโ€ file. Then, import Moralis and require โ€œ.envโ€:

const Moralis = require(โ€œmoralisโ€).default; require(โ€œdotenvโ€).config();

The next step is to define the ABI you want to focus on. We recommend you follow our lead and use the โ€œCool Catsโ€ contract. 

Obtaining a Smart Contractโ€™s ABI

Revisit the โ€œCool Catsโ€ contractโ€™s Etherscan page and select the โ€œCodeโ€ option next to the above-covered โ€œRead Contractโ€ and โ€œWrite Contractโ€ options:

contract abi result

By scrolling down the โ€œCodeโ€ page, youโ€™ll get to the โ€œContract ABIโ€ section (see the image above). Then, use the copy icon to copy this ABI. Next, return to VSC and create a new file. You can call it โ€œabi.jsonโ€ and paste the copied ABI into that file. Moving on, press โ€œShift+Option+Fโ€ on Mac (or Windows/Linux equivalent) to rearrange the content into lines. Once youโ€™ve saved the changes, you can search for โ€œgetPriceโ€œ, and you can locate one of this contractโ€™s Web3 contract methods or functions:

get price value from the web3 contract method

Furthermore, โ€œgetPriceโ€ is the first method we will focus on when implementing the โ€œrunContractFunctionโ€ endpoint.

Implementing the โ€œrunContractFunctionโ€ Endpoint

Return to your โ€œindex.jsโ€ file and create a new โ€œABIโ€:

const ABI = require(โ€œ./abi.jsonโ€);

Next, you will initialize Moralis using your Web3 API key and create an async function. Inside the latter, youโ€™ll use the โ€œrunContractFunctionโ€ endpoint and the โ€œCool Catsโ€ contractโ€™s details. So, these are the lines of code you need to add:

Moralis.start({  apiKey: process.env.MORALIS_KEY }).then(async()=>{ 	 const response = await Moralis.EvmApi.utils.runContractFunction({  address: โ€œ0x1A92f7381B9F03921564a437210bB9396471050Cโ€,  functionName: โ€œgetPriceโ€  abi: ABI });  console.log(response.raw)  })

With the above lines of code in place, you are ready to use the following command to run your script:

node index.js

As a response, you should see the initial token price for โ€œCool Catsโ€ NFTs in your terminal:

terminal result

When we also consider that the prices in ETH are displayed with 18 decimal places, the above result tells you that the initial price was 0.02 ETH.

If you want to learn how to use the โ€œrunContractFunctionโ€ endpoint for the โ€œtokenURIโ€ function, use the video below (starting at 6:36). Moreover, youโ€™ll learn how to properly work with its kinds of methods since that Web3 contract method uses an additional parameter. 

Last but not least, starting at 8:45, the video will demonstrate a neat example of how you can use the above-obtained initial price in combination with Moralisโ€™ โ€œgetNFTLowestPriceโ€ NFT API endpoint. Of course, thatโ€™s just one of the countless options to further utilize the power of โ€œrunContractFunctionโ€œ. When combining all Web3 contract methods with Moralisโ€™ Ethereum Web3 API, the skyโ€™s the limit.   

Exploring Web3 Contract Methods โ€“ How to Run Web3 Methods on Ethereum โ€“ Summary

In todayโ€™s article, we took on quite a journey. First, we ensured we got you all on the same page by covering the basics. As such, we explained what Web3 contract methods are and how they work. Then, you had a chance to follow our lead and create a simple NodeJS dapp. The latter focused on the โ€œCool Catsโ€ contractโ€™s โ€œgetPriceโ€ call method. By completing this challenge, you now know how to use Moralisโ€™ EVM API to call read-only Web3 contract methods.

If you are serious about using Moralis to develop dapps the easy way, make sure to dive deep into the ultimate EVM API documentation. This is the place to test all of Moralisโ€™ Web3 API endpoints and tackle the widest scope of Web3 tutorials. In addition, we recommend exploring other blockchain development topics covered by the Moralis YouTube channel and our crypto blog. For example, some of the latest articles compare ethers.js vs Web3 streams and Web3.js vs ethers.js. Plus, you can read up on getting the token balance of an address, getting all tokens owned by a wallet, how to listen to the blockchain, and much more. 

However, if you are interested in going full-time crypto with confidence and credibility, you should consider enrolling in Moralis Academy. This is the place where you and your entire team can become blockchain-certified and future-proof your business. You can find many courses at the academy, and we recommend starting with the fundamentals. That said, given the financial crises that the world is facing, now might be the best time to master DeFi. 





Read More: moralis.io

Tags: ContractEthereumExploringMethodsRunweb 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