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

How to Get Decoded Wallet History Using an RPC Node โ€“ Moralis Web3

Altszn.com by Altszn.com
August 19, 2024
in Web3
0
How to Get Decoded Wallet History Using an RPC Node โ€“ Moralis Web3
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Are you looking for the easiest way to get decoded wallet history using an RPC node? If so, youโ€™ve come to the right place. In this tutorial, weโ€™ll introduce Moralisโ€™ Extended RPC Methods, allowing you to query enriched, human-readable data seamlessly using RPC-style requests. Eager to jump into the code? Check out our eth_getDecodedTransactions method in action:

import fetch from 'node-fetch';
 
 const options = {
  method: 'POST',
  headers: {
    accept: 'application/json',
    'content-type': 'application/json'
  },
  body: JSON.stringify({
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_getDecodedTransactions",
    "params": [
      {
        "address": "0xda74Ac6b69Ff4f1B6796cdDf61fBDd4A5f68525f",
      }
    ]
  })
 };
 
 fetch('YOUR_NODE_URL', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

By calling the method above, youโ€™ll receive the full history of the specified wallet, enriched with transaction summaries, category tags, addresses, and much more. Hereโ€™s an example of what it might look like:

{
   //...
     "result": [
       {
         "block_hash": "0x660274d577cd20b0b82c1bff5f3c5641ba6027544e005f9256d5add9c7447920",
         "block_number": "19868695",
         "block_timestamp": "2024-05-14T14:00:23.000Z",
         "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
         "from_address_label": null,
         "from_address_entity": null,
         "from_address_entity_logo": null,
         "to_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
         "to_address_label": "Tether USD (USDT)",
         "to_address_entity": null,
         "to_address_entity_logo": null,
         "gas": "55331",
         "gas_price": "13623172301",
         "hash": "0xc565260238f59fc3f35b74f3011375c7d637db9b075f77d342c30d19f946272e",
         "nonce": "14",
         "receipt_cumulative_gas_used": "13917979",
         "receipt_gas_used": "41309",
         "receipt_status": "1",
         "transaction_fee": "0.000562759624582009",
         "transaction_index": "75",
         "value": "0",
         "receipt_contract_address": null,
         "nft_transfers": [],
         "erc20_transfers": [
           {
             "token_name": "Tether USD",
             "token_symbol": "USDT",
             "token_logo": "https://logo.moralis.io/0x1_0xdac17f958d2ee523a2206206994597c13d831ec7_3282f332c2ac2948929f01fe7d921c51",
             "token_decimals": "6",
             "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
             "from_address_entity": null,
             "from_address_entity_logo": null,
             "from_address_label": null,
             "to_address": "0x28c6c06298d514db089934071355e5743bf21d60",
             "to_address_label": "Binance 14",
             "to_address_entity": "Binance",
             "to_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/binance.png",
             "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
             "log_index": 338,
             "value": "50000000000",
             "possible_spam": false,
             "verified_contract": true,
             "direction": "send",
             "value_formatted": "50000"
           }
         ],
         "method_label": "transfer",
         "native_transfers": [],
         "summary": "Sent 50,000 USDT to Binance 14",
         "possible_spam": false,
         "category": "token send"
       },
       //...
     }
   ]
 }

Thatโ€™s it! With our Extended RPC Methods, you only need a single request to get decoded wallet history using an RPC node. For a more in-depth tutorial, join us in this guide or check out the Extended RPC Methods documentation page.

Want to get decoded wallet history using an RPC node yourself? Sign up for free with Moralis and gain immediate access to all our top-tier development tools!

Overview

If youโ€™re building a crypto wallet, portfolio tracker, tax platform, or other Web3 projects, you might need an easy way to retrieve your usersโ€™ wallet history. Fetching this information using standard RPC methods can be challenging, requiring many requests and extensive manual data aggregation. Fortunately, Moralisโ€™ Extended RPC Methods can streamline this process!

Moralis' Extended RPC Methods.

With our Extended RPC Methods, you get to experience the next generation of RPC nodes. Fetch the full history of any wallet, enriched with transaction summaries, category tags, address labels, and much more โ€“ all with a single request. Want to learn more about how this works? Follow along in this tutorial as we lay it all out for you. Letโ€™s dive straight in! 

What is the History of a Crypto Wallet? 

A crypto walletโ€™s history encompasses its previous interactions across blockchain networks such as Ethereum, Optimism, Base, and BNB Smart Chain (BSC). This history includes native transactions, ERC-20 transfers, contract interactions, NFT trades, deposits, airdrops, and more. In essence, this data provides a comprehensive timeline of a walletโ€™s past activity.

Wallet History timeline with RPC nodes.

The history of a cryptocurrency wallet is essential when building a wide range of decentralized applications (dapps). Here are three key examples:

  • Cryptocurrency Wallets: Wallets typically display usersโ€™ transaction history, giving them insight into their past trading activities for increased retention and engagement.

  • Portfolio Tracker: Portfolio trackers need access to usersโ€™ wallet history to accurately track the performance of their assets.

  • Tax Platforms: Tax platforms need a clear timeline of a walletโ€™s past activity to understand when tokens were bought, sold, and traded to generate accurate tax reports.

So, how can you get wallet history using an RPC node? Well, this is where RPC methods enter the equation!

What are RPC Methods?

RPC is short for โ€œRemote Procedure Call,โ€ and it refers to communication protocols that allow one software system to call and request services from other software on a different device. In the Web3 space, RPC protocols enable dapps to interact with blockchain networks like Ethereum, Polygon, and Optimism.

Text: "What are RPC Methods?"

There are several standardized RPC protocols. A great example is JSON-RPC, which features a set of predefined RPC methods streamlining blockchain interactions, including both reading and writing on-chain data. Hereโ€™s a list of common RPC methods:

  • eth_getTransactionByHash: Returns info about a transaction by hash.



  • eth_getBalance: Returns the balance of an account.



  • eth_getBlockNumber: Returns the most recent block number.



  • eth_getChainId: Returns the chain ID.



  • eth_gasPrice: Returns the current gas price.

All in all, RPC methods streamline interactions with blockchains, making it easier for developers to build dapps and other Web3 projects.

Limitations of Standard RPC Methods

While RPC methods make it easier to read and write blockchain data, they have some significant limitations you should consider. For instance, you canโ€™t use standard RPC methods to seamlessly get a walletโ€™s full history. To get this information, you need to make many requests, stitch together data, and decode the information yourself.

As you can imagine, this takes both a lot of time and resources, which can be better spent on other aspects of Web3 development. However, there is a better solution: Moralisโ€™ Extended RPC Methods.

But what exactly are our Extended RPC Methods? And how do they benefit you as a developer?

For the answers to these questions, join us in the next section. Letโ€™s go!

How to Get Decoded Wallet History Using an RPC Node โ€“ Introducing Moralisโ€™ Extended RPC Methods

Moralisโ€™ Extended RPC Methods streamline the process of fetching decoded, human-readable data using RPC nodes. With single requests, you can seamlessly fetch any walletโ€™s full history, ERC-20 token balances, NFTs, and much more, making dapp development significantly more accessible.

Moralis logo.

What can you get with our Extended RPC Methods:

  • eth_getDecodedTransactions: Get any walletโ€™s full transaction history.



  • eth_getTransactions: Fetch the native transactions of a wallet.



  • eth_getTokenBalances: Query the ERC-20 balances of any wallet.



  • eth_getTokenMetadata: Get the metadata of a token by address.



  • eth_getTokenPrice: Fetch any tokenโ€™s price by address.



  • eth_getNFTBalances: Get any walletโ€™s NFT balances.



  • eth_getNFTCollections: Query the NFT collections held by a wallet.

In essence, our Extended RPC Methods enhance our node offering, allowing you to get the same decoded, human-readable data that our APIs provide, but via RPC-style requests.

eth_getDecodedTransactions โ€“ The Simplest Way to Get Decoded Wallet History Using an RPC Node

The focus of todayโ€™s guide is eth_getDecodedTransactions. With this premier method, you donโ€™t have to make multiple calls and connect the dots yourself. Instead, you only need a single RPC request to get the decoded history of any wallet, including native transactions, NFT transfers, smart contract interactions, and much more! 

Wallet history timeline with RPC nodes.

Furthermore, the responses provided by the eth_getDecodedTransactions method are fully enriched with automatic transaction summaries, category tags, address labels, and more data for each event. This means you get fully decoded data out of the box with minimal effort. 

So, how does this work? And what do the responses actually look like? If youโ€™re curious, join us in the next section as we walk you through a complete tutorial on how to get decoded wallet history using an RPC node and our eth_getDecodedTransactions method.

3-Step Tutorial: How to Get Decoded Wallet History Using an RPC Node

Itโ€™s time to show you how to seamlessly get decoded wallet history using an RPC node. Thanks to the accessibility of our Extended RPC Methods and the eth_getDecodedTransactions endpoint, you can get the data you need in three simple steps: 

  1. Sign up with Moralis & set up a node.



  2. Write a script calling the eth_getDecodedTransactions method.



  3. Execute the code.

However, before jumping into the tutorial, you must deal with a few prerequisites. 

Prerequisites

Before you continue, make sure you have the following ready: 

Step 1: Sign Up with Moralis & Set Up a Node

Click the โ€œStart for Freeโ€ button at the top right and sign up for an account with Moralis:

Arrow pointing at "Start for Free" button at Moralis website.

Log in, go to the โ€œNodesโ€ tab, and click the โ€œ+ Create Nodeโ€ button:

Moralis nodes tab.

Select โ€œEthereum,โ€ then โ€œMainnet,โ€ and hit โ€œCreate Nodeโ€:

Moralis Ethereum node RPC configurations.

Doing so will create two new node URLs. Copy and keep one of your URLs for now, as youโ€™ll need it in the next step:

Red arrows pointing at URLs for Ethereum RPC node.

Step 2: Write a Script Calling the eth_getDecodedTransactions Method

Set up a project folder in your preferred IDE, open a new terminal, and initialize a project with the given command:

npm init

Install the required dependencies with this terminal command:

npm install node-fetch --save
 npm install moralis @moralisweb3/common-evm-utils

Open your โ€œpackage.jsonโ€ file and add "type": "module" to the list:

"type": "module" highlighted in code editor.

Create a new โ€œindex.jsโ€ file and add the code below:

import fetch from 'node-fetch';
 
 const options = {
  method: 'POST',
  headers: {
    accept: 'application/json',
    'content-type': 'application/json'
  },
  body: JSON.stringify({
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_getDecodedTransactions",
    "params": [
      {
        "address": "0xda74Ac6b69Ff4f1B6796cdDf61fBDd4A5f68525f",
      }
    ]
  })
 };
 
 fetch('YOUR_NODE_URL', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

Replace YOUR_NODE_URL with the URL you copied during the first step:

Red arrow pointing at "YOUR_NODE_URL".

Configure the address parameter to fit your query:

Red arrow pointing at "address" parameter.

Step 3: Execute the Code

Run this terminal command in your projectโ€™s root folder to execute the script: 

node index.js

In return, youโ€™ll get the full history of the specified wallet, enriched with human-readable transaction summaries, category tags, addresses, and much more. Hereโ€™s a sample response: 

{
   //...
     "result": [
       {
         "block_hash": "0x660274d577cd20b0b82c1bff5f3c5641ba6027544e005f9256d5add9c7447920",
         "block_number": "19868695",
         "block_timestamp": "2024-05-14T14:00:23.000Z",
         "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
         "from_address_label": null,
         "from_address_entity": null,
         "from_address_entity_logo": null,
         "to_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
         "to_address_label": "Tether USD (USDT)",
         "to_address_entity": null,
         "to_address_entity_logo": null,
         "gas": "55331",
         "gas_price": "13623172301",
         "hash": "0xc565260238f59fc3f35b74f3011375c7d637db9b075f77d342c30d19f946272e",
         "nonce": "14",
         "receipt_cumulative_gas_used": "13917979",
         "receipt_gas_used": "41309",
         "receipt_status": "1",
         "transaction_fee": "0.000562759624582009",
         "transaction_index": "75",
         "value": "0",
         "receipt_contract_address": null,
         "nft_transfers": [],
         "erc20_transfers": [
           {
             "token_name": "Tether USD",
             "token_symbol": "USDT",
             "token_logo": "https://logo.moralis.io/0x1_0xdac17f958d2ee523a2206206994597c13d831ec7_3282f332c2ac2948929f01fe7d921c51",
             "token_decimals": "6",
             "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
             "from_address_entity": null,
             "from_address_entity_logo": null,
             "from_address_label": null,
             "to_address": "0x28c6c06298d514db089934071355e5743bf21d60",
             "to_address_label": "Binance 14",
             "to_address_entity": "Binance",
             "to_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/binance.png",
             "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
             "log_index": 338,
             "value": "50000000000",
             "possible_spam": false,
             "verified_contract": true,
             "direction": "send",
             "value_formatted": "50000"
           }
         ],
         "method_label": "transfer",
         "native_transfers": [],
         "summary": "Sent 50,000 USDT to Binance 14",
         "possible_spam": false,
         "category": "token send"
       },
       //...
     }
   ]
 }

Congratulations! You now know how to get decoded wallet history using an RPC node. For further information, please check out the official eth_getDecodedTransactions documentation page. 

From here, you can now follow the same steps to call any of our other Extended RPC Methods! 

Exploring the Benefits of eth_getDecodedTransactions

Now that you know how to get decoded wallet history using an RPC node, letโ€™s explore some of the main benefits of the eth_getDecodedTransactions method: 

Wallet history timeline with RPC nodes.

  • One Request โ€“ All Data: With Moralisโ€™ next-generation nodes, you can streamline your developer experience, as you only need a single RPC request to get decoded wallet history.

  • Automatic Summaries: The eth_getDecodedTransactions method features automatic summaries for each transaction event. This means you no longer have to connect the dots yourself. 

  • Reduced Complexity: With comprehensive responses, you can now build everything from portfolio trackers to tax platforms without breaking a sweat. 

Beyond How to Get Decoded Wallet History Using an RPC Node โ€“ Exploring Moralis Further

Moralis is the #1 Web3 data provider, giving you top-tier tools such as RPC nodes and use case-specific APIs for wallets, tokens, NFTs, DeFi, and much more. As such, when using Moralis, you get all crypto data in one place! 

Moralis logo.

What makes our development tools special? 

  • Comprehensive: Our APIs and Extended RPC Methods are outcome-oriented, giving you more data with fewer calls. Fetch wallet history, token balances with prices, and much more with just single requests. 

  • Multi-Chain: Moralis supports all major chains, including Ethereum, Polygon, BSC, and many more. Experience full feature parity across all the biggest chains so you can streamline your developer experience when building cross-chain dapps. 

  • Secure: Our SOC 2 Type 2 certification highlights Moralisโ€™ commitment to maintaining enterprise-grade security and reliability. 

Nevertheless, letโ€™s explore our RPC nodes and Web3 APIs to further highlight the benefits of Moralis! 

RPC Nodes

Moralis is a top-tier node provider, giving you the tools to seamlessly access next-generation RPC nodes for all major chains. 

Moralis RPC nodes.

What makes our RPC nodes unique? 

  • Speed: Our nodes feature response times from 70 ms, setting the benchmark for speed. 



  • Reliability: With 99.9% uptime, we guarantee high-reliability standards.



  • Extended RPC Methods: With Moralisโ€™ Extended RPC Methods, you can now query decoded, human-readable data using RPC-style requests. 

Check out our RPC nodes page for more information. 

Moralisโ€™ Web3 APIs

Our suite of industry-leading APIs comprises several interfaces tailored to specific use cases. Here are three key examples: 

Moralis logo.

  • Wallet API: Fetch any walletโ€™s full history, token balances, NFT balances, profitability, net worth, and much more with only single lines of code when using Moralisโ€™ Wallet API. This is the perfect API for building wallets and integrating wallet functionality into dapps. 

  • Token API: Get token balances, prices, metadata, crypto PnL, transfers, and more with just one request when using the Token API. This is your go-to solution for ERC-20 data. 

  • Streams API: Moralisโ€™ Streams API is the industryโ€™s leading real-time data solution. With our intuitive point-and-click interface, you can set up Web3 data pipelines to stream real-time data into your projects without breaking a sweat. 

Check out our Web3 API page to learn more about all our premier interfaces. 

Summary: How to Get Decoded Wallet History Using an RPC Node

Whether youโ€™re building a wallet, portfolio tracker, tax platform, or other similar Web3 projects, you often need access to your usersโ€™ wallet history. However, fetching this data using standard RPC methods can be challenging, as you need to make many requests and compile a lot of data yourself. Fortunately, thereโ€™s a better alternative: Moralisโ€™ Extended RPC Methods.

With our Extended RPC Methods, you can seamlessly fetch decoded, human-readable data via RPC-style requests. As such, it has never been easier to get decoded wallet history, token balances, token prices, and more via RPC nodes.

So, how can you use this powerful feature to get decoded wallet history using an RPC node? Check out the eth_getDecodedTransactions endpoint in action:

import fetch from 'node-fetch';
 
 const options = {
  method: 'POST',
  headers: {
    accept: 'application/json',
    'content-type': 'application/json'
  },
  body: JSON.stringify({
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_getDecodedTransactions",
    "params": [
      {
        "address": "0xda74Ac6b69Ff4f1B6796cdDf61fBDd4A5f68525f",
      }
    ]
  })
 };
 
 fetch('YOUR_NODE_URL', options)
  .then(response => response.json())
  .then(response => console.log(response))
  .catch(err => console.error(err));

In return for running the script above, you get the full history of the specified wallet, including automatic summaries, category tags, and much more for each event. Hereโ€™s a sample response:

{
   //...
     "result": [
       {
         "block_hash": "0x660274d577cd20b0b82c1bff5f3c5641ba6027544e005f9256d5add9c7447920",
         "block_number": "19868695",
         "block_timestamp": "2024-05-14T14:00:23.000Z",
         "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
         "from_address_label": null,
         "from_address_entity": null,
         "from_address_entity_logo": null,
         "to_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
         "to_address_label": "Tether USD (USDT)",
         "to_address_entity": null,
         "to_address_entity_logo": null,
         "gas": "55331",
         "gas_price": "13623172301",
         "hash": "0xc565260238f59fc3f35b74f3011375c7d637db9b075f77d342c30d19f946272e",
         "nonce": "14",
         "receipt_cumulative_gas_used": "13917979",
         "receipt_gas_used": "41309",
         "receipt_status": "1",
         "transaction_fee": "0.000562759624582009",
         "transaction_index": "75",
         "value": "0",
         "receipt_contract_address": null,
         "nft_transfers": [],
         "erc20_transfers": [
           {
             "token_name": "Tether USD",
             "token_symbol": "USDT",
             "token_logo": "https://logo.moralis.io/0x1_0xdac17f958d2ee523a2206206994597c13d831ec7_3282f332c2ac2948929f01fe7d921c51",
             "token_decimals": "6",
             "from_address": "0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f",
             "from_address_entity": null,
             "from_address_entity_logo": null,
             "from_address_label": null,
             "to_address": "0x28c6c06298d514db089934071355e5743bf21d60",
             "to_address_label": "Binance 14",
             "to_address_entity": "Binance",
             "to_address_entity_logo": "https://entities-logos.s3.us-east-1.amazonaws.com/binance.png",
             "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
             "log_index": 338,
             "value": "50000000000",
             "possible_spam": false,
             "verified_contract": true,
             "direction": "send",
             "value_formatted": "50000"
           }
         ],
         "method_label": "transfer",
         "native_transfers": [],
         "summary": "Sent 50,000 USDT to Binance 14",
         "possible_spam": false,
         "category": "token send"
       },
       //...
     }
   ]
 }

Thatโ€™s it! You now know how to get decoded wallet history using an RPC node!

If you found this article interesting, consider checking out more content here on the blog. For instance, learn how to get ERC-20 token balances using RPC nodes or check out our DeFi protocol data tutorial.

Also, if you wish to leverage the next generation of RPC nodes yourself, donโ€™t forget to sign up with Moralis!



Read More: moralis.io

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