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

Extended RPC Methods โ€“ Get All Blockchain Data via RPC Methods โ€“ Moralis Web3

Altszn.com by Altszn.com
August 14, 2024
in Web3
0
Extended RPC Methods โ€“ Get All Blockchain Data via RPC Methods โ€“ Moralis Web3
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Are you searching for the simplest way to get blockchain data using RPC methods? Look no further. In this guide, weโ€™ll introduce you to Moralisโ€™ Extended RPC Methods, enabling you to query the same enhanced, human-readable data our APIs provide, but through RPC-style requests. This includes ERC-20 balances, transaction histories, token metadata, and more. Ready to jump into the code? Hereโ€™s a script showing our eth_getTokenBalances 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_getTokenBalances",    "params": [      {        "address": "0xcB1C1FdE09f811B294172696404e88E658659905",      }    ]  }) };  fetch('YOUR_NODE_URL', options)  .then(response => response.json())  .then(response => console.log(response))  .catch(err => console.error(err));

Running the code above will return the ERC-20 balances of the specified wallet. Hereโ€™s an example of what the output might look like:

 {   //...   result: [     {       token_address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',       name: 'Wrapped Ether',       symbol: 'WETH',       decimals: 18,       logo: 'https://logo.moralis.io/0x1_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2_a578c5277503e547a072ae32517254ca',       thumbnail: 'https://logo.moralis.io/0x1_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2_a578c5277503e547a072ae32517254ca',       balance: '10000000000000000',       possible_spam: false,       verified_contract: true,       total_supply: '2746607222348759943423350',       total_supply_formatted: '2746607.22234875994342335',       percentage_relative_to_total_supply: 3.64085549569e-7     },     //...   ] }

Fetching blockchain data via RPC methods doesnโ€™t have to be more complicated than this when using Moralis. For a more detailed tutorial, follow along with this guide or visit our Extended RPC Methods documentation page.

Excited to start using our Extended RPC Methods? Sign up with Moralis today! Create a free account to access our Extended RPC Methods, RPC Nodes, and premier APIs immediately.

Overview

In the context of Web3, RPC refers to communication protocols that streamline the interaction between decentralized applications (dapps) and blockchain networks. There are multiple RPC protocols, and they feature standardized methods, allowing developers to seamlessly read and write blockchain data. However, standard RPC methods are typically quite limited, not allowing for common queries like โ€œWhat ERC-20 tokens are wallet X holding?โ€ To get this information, you must make several requests and connect the dots yourself. Fortunately, you can now circumvent these challenges with Moralisโ€™ Extended RPC Methods.

Moralis Extended RPC Methods announcement.

Our Extended RPC Methods allow you to query decoded, human-readable blockchain data seamlessly using RPC-style methods: fetch ERC-20 balances, token prices, metadata, and much more with single calls.

But how does this work? If youโ€™d like to learn more, join us in this guide as we lay it all out for you. Letโ€™s dive straight in!

What are RPC Methods? 

RPC, short for โ€œRemote Procedure Call,โ€ refers to communication protocols that allow one software system to call and request a service from another software system on a different computer. In the world of crypto, RPC enables dapps and other Web3 platforms (clients) to interact with a blockchain network (server).

What are RPC methods?

There are standardized protocols, one example being JSON-RPC, that feature predefined methods. These so-called RPC methods allow you to seamlessly perform various operations, such as reading blockchain data, sending transactions, and managing wallets.

Here is a list of common RPC methods for Ethereum:

  • eth_blockNumber: Returns the number of the most recent block.
  • eth_call: Executes a new message call.
  • eth_chainId: Returns the current chain ID.
  • eth_getBalance: Returns the balance of an account.
  • eth_gasPrice: Returns the current gas price.

Overall, RPC methods simplify interaction with blockchain networks, facilitating the effortless development of dapps and other Web3 projects.

Exploring the Limitations of Standard RPC Methods

While RPC protocols simplify dapp development, they come with significant limitations that you need to consider. Typically, standard RPC methods only provide basic blockchain data. As such, common RPC methods are not designed to handle queries such as, โ€œWhat ERC-20 tokens does wallet X hold?โ€

Limitations of RPC methods.

To obtain this kind of information using conventional RPC methods, developers must make multiple requests and manually compile the data. This process is cumbersome and time-consuming, demanding considerable development effort and resources.

To address these challenges, Moralis introduces Extended RPC Methods. But what exactly are these methods, and how do they benefit developers?

Find out in the next section!

Introducing Moralisโ€™ Extended RPC Methods

Our Extended RPC Methods significantly improve our node solution, delivering the same enhanced functionalities found in Moralisโ€™ APIs, but through RPC-style methods. These advanced methods simplify the process of querying decoded, human-readable data, streamlining your Web3 developer experience.

Moralis logo.

What do Moralisโ€™ Enhanced RPC Methods include?

  • eth_getTransactions: Get all native transactions for a given wallet.
  • eth_getDecodedTransactions: Obtain a detailed transaction history for a specific wallet address.
  • eth_getTokenBalances: Retrieve ERC-20 token balances for a given wallet address.
  • eth_getTokenPrice: Fetch current prices for ERC-20 tokens.
  • eth_getTokenMetadata: Obtain metadata for ERC-20 tokens.
  • eth_getNFTBalances: Fetch all NFTs held by a wallet.
  • eth_getNFTCollections: Obtain all NFT collections owned by a specific wallet address.

In summary, Moralisโ€™ Enhanced RPC Methods significantly extend the capabilities of our nodes, giving you the same enhanced data you would get using our APIs, but via RPC-style requests!

3-Step Tutorial: How to Get All Blockchain Data via Extended RPC Methods

Now, with an overview of what Moralisโ€™ Extended RPC Methods entail, weโ€™ll show you how to use them in practice. More specifically, weโ€™ll demonstrate how you can get the token balance for any given wallet in three simple steps:

  1. Sign up with Moralis & create a node
  2. Write a script
  3. Execute the code

Step 1: Sign Up with Moralis & Create a Node

If you havenโ€™t already, click the โ€œStart for Freeโ€ button at the top right to sign up with Moralis:

Red arrow pointing at "Start for Free"

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

Red arrows pointing at "Nodes" tab and "+ Create Node" button.

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

"Ethereum" and "Mainnet" selected when creating node.

Copy one of your node URLs and keep it for now, as youโ€™ll need it in the next step:

Red arrows pointing at copy button for node URLs.

Step 2: Write a Script

Open your preferred IDE, set up a new folder, and initialize a project with the terminal command below: 

npm init

Once initialized, install the necessary dependencies using the provided terminal command:

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

Next, open package.json and add "type": "module" to the file: 

Type: module highlighted in code editor.

After that, create an โ€œindex.jsโ€ file and insert the provided code: 

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_getTokenBalances",    "params": [      {        "address": "0xcB1C1FdE09f811B294172696404e88E658659905",      }    ]  }) };  fetch('YOUR_NODE_URL', options)  .then(response => response.json())  .then(response => console.log(response))  .catch(err => console.error(err));

From here, you need to make some minor configurations. First, add the node URL you copied during the first step by replacing YOUR_NODE_URL. Next, configure the address parameter to fit your query:

Thatโ€™s it for the code. All that remains now is to execute the script.

Step 3: Execute the Code

To run the code, navigate to the root folder of the project and run the following terminal command:

node index.js

In return, youโ€™ll get the token balances of the specified address, enriched with logos, spam indicators, and much more. Hereโ€™s what it might look like:

 {   //...   result: [     {       token_address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',       name: 'Wrapped Ether',       symbol: 'WETH',       decimals: 18,       logo: 'https://logo.moralis.io/0x1_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2_a578c5277503e547a072ae32517254ca',       thumbnail: 'https://logo.moralis.io/0x1_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2_a578c5277503e547a072ae32517254ca',       balance: '10000000000000000',       possible_spam: false,       verified_contract: true,       total_supply: '2746607222348759943423350',       total_supply_formatted: '2746607.22234875994342335',       percentage_relative_to_total_supply: 3.64085549569e-7     },     //...   ] }

Thatโ€™s it! Fetching data using Moralisโ€™ Extended RPC Methods doesnโ€™t have to be more challenging than that!

Extended RPC Methods Use Cases

Our Extended RPC Methods significantly improve the Web3 developer experience, enabling you to build a wide range of dapps effortlessly. Here are three common use cases for our enhanced RPC methods, providing the same data as our powerful APIs:

  • Token Balances: Retrieve token balances for any wallet with a single call, eliminating the need for manual data aggregation.
  • Transaction Histories: Access transaction histories for any address through streamlined RPC calls.
  • Token Prices: Obtain real-time token prices directly from decentralized exchanges (DEXs) effortlessly.
Token prices from Extended RPC methods.

With this comprehensive data, you can develop everything from cryptocurrency wallets to token explorers with minimal effort!

Beyond Extended RPC Methods โ€“ Exploring the Ins & Outs of Moralisโ€™ Web3 APIs

In addition to our enhanced RPC methods, Moralis offers a diverse suite of use case-specific APIs, including the Wallet API, Token API, Streams API, and many more. These premier interfaces enable you to effortlessly build everything from Web3 wallets to token explorers.

Moralis Logo.

Why choose Moralisโ€™ APIs?

  • Comprehensive: Moralisโ€™ Web3 APIs are outcome-focused, providing more data with fewer calls. This allows you to enjoy a seamless developer experience, enabling you to build dapps faster and more efficiently.
  • Cross-Chain: We support full feature parity across over 30 blockchain networks, including Ethereum, Polygon, Base, Optimism, and many others. With Moralis, one provider covers all your data needs.
  • Secure: Moralis is SOC 2 Type 2 certified, ensuring enterprise-grade data security for your applications.

Letโ€™s dive deeper into our API suite to explore the capabilities of our premier interfaces and how they can empower your development process!

Moralisโ€™ Web3 API Suite

Our comprehensive suite of Web3 APIs includes over ten distinct interfaces designed to meet diverse use cases. While this guide wonโ€™t cover all of them, weโ€™ll highlight three key examples:

  • Wallet API
  • Token API
  • NFT API

Letโ€™s start with an in-depth look at our Wallet API!

Wallet API

The Wallet API offers a comprehensive suite of features, unmatched flexibility, and exceptional scalability, making it the ultimate tool for wallet builders. Use this interface to access any walletโ€™s history, token balances, DeFi positions, and much more!

Wallet API.

Supporting millions of addresses across all major chains, including Ethereum, Polygon, Base, Optimism, and many more, the Wallet API allows you to seamlessly integrate wallet data into your dapp, regardless of the platform youโ€™re building on.

To demonstrate the power of the Wallet API, hereโ€™s how easy it is to fetch a walletโ€™s transaction history:

import fetch from 'node-fetch';  const options = {  method: 'GET',  headers: {    accept: 'application/json',    'X-API-Key': 'YOUR_API_KEY'  }, };  fetch(  'https://deep-index.moralis.io/api/v2.2/wallets/0xda74Ac6b69Ff4f1B6796cdDf61fBDd4A5f68525f/history?chain=eth&order=DESC',  options )  .then((response) => response.json())  .then((response) => console.log(response))  .catch((err) => console.error(err));

Running the above script provides you with the complete transaction history of the specified wallet, enriched with human-readable category tags, summaries, address labels, and more for each event. Hereโ€™s an example of what it might look like:

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

Token API

Moralisโ€™ Token API is your essential tool for fetching and integrating ERC-20 data into your Web3 projects. With this premier interface, you can seamlessly retrieve token balances, prices, metadata, owners, and much more.

Token API.

The Token API covers every single token across all major chains, including stablecoins like USDT, meme coins like Shiba Inu, LP tokens, and everything in between. This comprehensive coverage allows you to effortlessly build cross-chain token explorers, portfolio trackers, and more.

To demonstrate the power of the Token API, weโ€™ll show you how to fetch token balances with prices for any wallet:

import fetch from 'node-fetch';  const options = {   method: 'GET',   headers: {     accept: 'application/json',     'X-API-Key': 'YOUR_API_KEY'   }, };  fetch('https://deep-index.moralis.io/api/v2.2/wallets/0xcB1C1FdE09f811B294172696404e88E658659905/tokens?chain=eth', options)   .then(response => response.json())   .then(response => console.log(response))   .catch(err => console.error(err));

By running the provided script, youโ€™ll receive the token balances of the wallet, enriched with prices, price changes over time, and other metadata. Hereโ€™s an example of what the response will look like:

{   //...   "result": [     {       "token_address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",       "symbol": "stETH",       "name": "Liquid staked Ether 2.0",       "logo": "https://logo.moralis.io/0x1_0xae7ab96520de3a18e5e111b5eaab095312d7fe84_cd0f5053ccb543e08f65554bf642d751",       "thumbnail": "https://logo.moralis.io/0x1_0xae7ab96520de3a18e5e111b5eaab095312d7fe84_cd0f5053ccb543e08f65554bf642d751",       "decimals": 18,       "balance": "61135846911533523",       "possible_spam": false,       "verified_contract": true,       "total_supply": "9788873903061556217474312",       "total_supply_formatted": "9788873.903061556217474312",       "percentage_relative_to_total_supply": 6.2454422763e-7,       "balance_formatted": "0.061135846911533523",       "usd_price": 2731.4812583950234,       "usd_price_24hr_percent_change": 2.9851365470017,       "usd_price_24hr_usd_change": 79.1749645169798,       "usd_value": 166.99142005496108,       "usd_value_24hr_usd_change": 4.840428509936174,       "native_token": false,       "portfolio_percentage": 44.16600478357348     },     //...   ] }

NFT API

The NFT API provides comprehensive NFT data at your fingertips. With just a few lines of code, you can access NFT balances, up-to-date metadata, prices, image previews, and more.

NFT API.

Moralisโ€™ NFT API supports millions of NFT collections across all major blockchain networks, from well-known projects like CryptoPunks to newly minted tokens. Whether youโ€™re developing NFT marketplaces, Web3 games, or similar platforms, this API is an essential tool.

To demonstrate the ease of use, hereโ€™s a script that fetches NFT metadata effortlessly:

import fetch from 'node-fetch';  const options = {   method: 'GET',   headers: {     accept: 'application/json',     'X-API-Key': 'YOUR_API_KEY'   }, };  fetch('https://deep-index.moralis.io/api/v2.2/nft/0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB/1?chain=eth', options)   .then(response => response.json())   .then(response => console.log(response))   .catch(err => console.error(err));

Running this script will return the metadata for the specified NFT, which may look something like this:

{   "amount": "1",   "token_id": "1",   "token_address": "0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb",   "contract_type": "CRYPTOPUNKS",   "owner_of": "0xffa914c83d851b9fe372e4ba6a6e131373aa16ab",   "last_metadata_sync": "2024-08-10T14:39:45.042Z",   "last_token_uri_sync": "2024-08-10T14:39:44.622Z",   "metadata": "{\"image\":\"https://www.larvalabs.com/cryptopunks/cryptopunk001.png\",\"name\":\"CryptoPunk 001\",\"attributes\":[\"Smile\",\"Mohawk\"],\"description\":\"Male\"}",   "block_number": "16079985",   "block_number_minted": null,   "name": "CRYPTOPUNKS",   "symbol": "ฯพ",   "token_hash": "a99d02058e62e327e79aabd57e0b88a3",   "token_uri": "Invalid uri",   "minter_address": null,   "rarity_rank": 7247,   "rarity_percentage": 72.47,   "rarity_label": "Top 73%",   "verified_collection": true,   "possible_spam": false,   "collection_logo": "https://i.seadn.io/gae/BdxvLseXcfl57BiuQcQYdJ64v-aI8din7WPk0Pgo3qQFhAUH-B6i-dCqqc_mCkRIzULmwzwecnohLhrcH8A9mpWIZqA7ygc52Sr81hE?w=500&auto=format",   "collection_banner_image": "https://i.seadn.io/gae/48oVuDyfe_xhs24BC2TTVcaYCX7rrU5mpuQLyTgRDbKHj2PtzKZsQ5qC3xTH4ar34wwAXxEKH8uUDPAGffbg7boeGYqX6op5vBDcbA?w=500&auto=format" }

Visit the official Web3 API page for more information on our interfaces, including the Blockchain API, Streams API, Market Data API, and others!

Summary: Extended RPC Methods โ€“ Get All Blockchain Data via RPC Methods

RPC stands for โ€œRemote Procedure Call,โ€ and in the context of Web3, it refers to communication protocols that allow dapps to communicate with blockchain networks. There are standard RPC protocols that feature RPC methods. However, traditional RPC methods are often limited, providing only basic on-chain data. For instance, you canโ€™t use conventional RPC methods to easily get the ERC-20 balance of a wallet. To get comprehensive data like this, youโ€™d typically need to make multiple requests and decode the information manually. Fortunately, we offer a streamlined solution: Extended RPC Methods!

Extended RPC Methods summary.

Our Extended RPC Methods deliver the same enhanced functionality provided by our APIs but via RPC-style requests. With these, you can seamlessly query ERC-20 balances, token prices, metadata, and much more using single calls. Here are some of our top methods:

  • eth_getTransactions: Retrieve the transactions for a wallet address.
  • eth_getDecodedTransactions: Obtain detailed transaction history for a wallet address.
  • eth_getTokenBalances: Retrieve ERC-20 token balances for a wallet address.
  • eth_getTokenPrice: Fetch current prices for ERC-20 tokens.
  • eth_getTokenMetadata: Obtain metadata for ERC-20 tokens by their addresses.
  • eth_getNFTBalances: Retrieve NFTs held by a wallet.
  • eth_getNFTCollections: Obtain NFT collections owned by a wallet address.

All in all, our Extended RPC Methods improve our node solution, giving you access to the same enhanced functionality that you would get with our APIs but via RPC-style requests. In return, you can query decoded, human-readable data straight from your Moralis nodes!

If you enjoyed learning about our Extended RPC Methods, explore more content on our blog. For instance, check out our guides on:

Ready to use our Extended RPC Methods to get the same enhanced data our APIs provide, but via RPC-style requests? Sign up with Moralis for free and gain instant access to our development tools!



Read More: moralis.io

Tags: BlockchaindataExtendedMethodsMoralisRPCweb 3.0Web3
ADVERTISEMENT

Recent

Sui vote on $162M Cetus funds ignites decentralization debate in DeFi

Sui vote on $162M Cetus funds ignites decentralization debate in DeFi

May 30, 2025
Xend Finance, Risevest Launch Tokenization Platform in Africa

Xend Finance, Risevest Launch Tokenization Platform in Africa

May 30, 2025
Bitcoin Slips Below $104K, Cryptos Slide as U.S.-China Tariff Tensions Flare Up

Bitcoin Slips Below $104K, Cryptos Slide as U.S.-China Tariff Tensions Flare Up

May 30, 2025

Categories

  • Bitcoin (4,542)
  • Blockchain (10,826)
  • Crypto (8,770)
  • Dark Web (447)
  • DeFi (8,125)
  • Ethereum (4,573)
  • Metaverse (6,847)
  • Monero (251)
  • NFT (1,117)
  • Solana (4,921)
  • Web3 (19,898)
  • Zcash (467)

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

    Sui vote on $162M Cetus funds ignites decentralization debate in DeFi

    Sui vote on $162M Cetus funds ignites decentralization debate in DeFi

    May 30, 2025
    Xend Finance, Risevest Launch Tokenization Platform in Africa

    Xend Finance, Risevest Launch Tokenization Platform in Africa

    May 30, 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) $ 103,594.00
    • ethereumEthereum (ETH) $ 2,498.35
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.12
    • bnbBNB (BNB) $ 649.70
    • solanaSolana (SOL) $ 153.89
    • usd-coinUSDC (USDC) $ 0.999814
    • dogecoinDogecoin (DOGE) $ 0.189766
    • tronTRON (TRX) $ 0.263908
    • cardanoCardano (ADA) $ 0.672796
    • staked-etherLido Staked Ether (STETH) $ 2,491.69
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 103,999.00
    • hyperliquidHyperliquid (HYPE) $ 32.10
    • wrapped-stethWrapped stETH (WSTETH) $ 3,005.53
    • suiSui (SUI) $ 3.12
    • chainlinkChainlink (LINK) $ 13.64
    • avalanche-2Avalanche (AVAX) $ 20.08
    • stellarStellar (XLM) $ 0.262696
    • leo-tokenLEO Token (LEO) $ 8.75
    • bitcoin-cashBitcoin Cash (BCH) $ 393.48
    • the-open-networkToncoin (TON) $ 3.02
    • shiba-inuShiba Inu (SHIB) $ 0.000013
    • usdsUSDS (USDS) $ 0.999791
    • hedera-hashgraphHedera (HBAR) $ 0.162767
    • wethWETH (WETH) $ 2,500.04
    • wrapped-eethWrapped eETH (WEETH) $ 2,675.80
    • litecoinLitecoin (LTC) $ 84.14
    • polkadotPolkadot (DOT) $ 3.96
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.01
    • moneroMonero (XMR) $ 323.53
    • bitget-tokenBitget Token (BGB) $ 4.70
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • pepePepe (PEPE) $ 0.000011
    • pi-networkPi Network (PI) $ 0.635377
    • whitebitWhiteBIT Coin (WBT) $ 31.17
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 103,522.00
    • daiDai (DAI) $ 1.00
    • aaveAave (AAVE) $ 243.97
    • uniswapUniswap (UNI) $ 5.95
    • bittensorBittensor (TAO) $ 370.56
    • crypto-com-chainCronos (CRO) $ 0.101583
    • ethena-staked-usdeEthena Staked USDe (SUSDE) $ 1.18
    • okbOKB (OKB) $ 49.94
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • jito-staked-solJito Staked SOL (JITOSOL) $ 185.04
    • aptosAptos (APT) $ 4.59
    • nearNEAR Protocol (NEAR) $ 2.37
    • tokenize-xchangeTokenize Xchange (TKX) $ 34.04
    • ethereum-classicEthereum Classic (ETC) $ 16.67
    • internet-computerInternet Computer (ICP) $ 4.72
    • bitcoinBitcoin (BTC) $ 103,594.00
    • ethereumEthereum (ETH) $ 2,498.35
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.12
    • bnbBNB (BNB) $ 649.70
    • solanaSolana (SOL) $ 153.89
    • usd-coinUSDC (USDC) $ 0.999814
    • dogecoinDogecoin (DOGE) $ 0.189766
    • tronTRON (TRX) $ 0.263908
    • cardanoCardano (ADA) $ 0.672796
    • staked-etherLido Staked Ether (STETH) $ 2,491.69
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 103,999.00
    • hyperliquidHyperliquid (HYPE) $ 32.10
    • wrapped-stethWrapped stETH (WSTETH) $ 3,005.53
    • suiSui (SUI) $ 3.12
    • chainlinkChainlink (LINK) $ 13.64
    • avalanche-2Avalanche (AVAX) $ 20.08
    • stellarStellar (XLM) $ 0.262696
    • leo-tokenLEO Token (LEO) $ 8.75
    • bitcoin-cashBitcoin Cash (BCH) $ 393.48
    • the-open-networkToncoin (TON) $ 3.02
    • shiba-inuShiba Inu (SHIB) $ 0.000013
    • usdsUSDS (USDS) $ 0.999791
    • hedera-hashgraphHedera (HBAR) $ 0.162767
    • wethWETH (WETH) $ 2,500.04
    • wrapped-eethWrapped eETH (WEETH) $ 2,675.80
    • litecoinLitecoin (LTC) $ 84.14
    • polkadotPolkadot (DOT) $ 3.96
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.01
    • moneroMonero (XMR) $ 323.53
    • bitget-tokenBitget Token (BGB) $ 4.70
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • pepePepe (PEPE) $ 0.000011
    • pi-networkPi Network (PI) $ 0.635377
    • whitebitWhiteBIT Coin (WBT) $ 31.17
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 103,522.00
    • daiDai (DAI) $ 1.00
    • aaveAave (AAVE) $ 243.97
    • uniswapUniswap (UNI) $ 5.95
    • bittensorBittensor (TAO) $ 370.56
    • crypto-com-chainCronos (CRO) $ 0.101583
    • ethena-staked-usdeEthena Staked USDe (SUSDE) $ 1.18
    • okbOKB (OKB) $ 49.94
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • jito-staked-solJito Staked SOL (JITOSOL) $ 185.04
    • aptosAptos (APT) $ 4.59
    • nearNEAR Protocol (NEAR) $ 2.37
    • tokenize-xchangeTokenize Xchange (TKX) $ 34.04
    • ethereum-classicEthereum Classic (ETC) $ 16.67
    • internet-computerInternet Computer (ICP) $ 4.72