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 Token Prices with an RPC Node โ€“ Moralis Web3

Altszn.com by Altszn.com
September 16, 2024
in Web3
0
How to Get Token Prices with an RPC Node โ€“ Moralis Web3
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Are you looking for an easy way to get token prices with an RPC node? If so, youโ€™ve come to the right place! In todayโ€™s tutorial, weโ€™ll introduce you to Moralisโ€™ Extended RPC Methods and our eth_getTokenPrice endpoint. With this endpoint, you just need a single RPC request to get the price of any token. Are you eager to learn how this works? Check out the sample script 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_getTokenPrice",    "params": [      {        "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",        "include": "percent_change"      }    ]  }) };  fetch('YOUR_NODE_URL', options)  .then(response => response.json())  .then(response => console.log(response))  .catch(err => console.error(err));

Running the code above will give you the price of the specified token denominated in both the chainโ€™s native currency and USD. Hereโ€™s an example of what the response will look like: 

{   jsonrpc: '2.0',   id: 1,   result: {     tokenName: 'USD Coin',     tokenSymbol: 'USDC',     tokenLogo: 'https://logo.developers.moralis.com/0x1_0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48_032b6f94fd2bd5af6c065def140109e9',     tokenDecimals: '6',     nativePrice: {       value: '399015837290761',       decimals: 18,       name: 'Ether',       symbol: 'ETH',       address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'     },     usdPrice: 0.9998033934658264,     usdPriceFormatted: '0.999803393465826414',     '24hrPercentChange': '-0.023636130935194257',     exchangeName: 'Uniswap v3',     exchangeAddress: '0x1F98431c8aD98523631AE4a59f267346ea31F984',     tokenAddress: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',     priceLastChangedAtBlock: '20669844',     possibleSpam: false,     verifiedContract: true,     pairAddress: '0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640',     pairTotalLiquidityUsd: '165658281.27'   } }

Thatโ€™s it; fetching token prices with an RPC node doesnโ€™t have to be more challenging than this. However, if you want a more in-depth tutorial, join us in this guide or check out the eth_getTokenPrice documentation page. 

Ready to start using our Extended RPC Methods? Sign up for free with Moralis straightaway! 

Overview

If youโ€™re looking to build cryptocurrency wallets, portfolio trackers, tax platforms, or other similar projects, youโ€™ll likely need access to token prices. However, fetching token prices using standard RPC methods requires multiple requests and a lot of manual data aggregations. As such, this is a time-consuming and resource-intensive process, which is why we introduced Moralisโ€™ Extended RPC Methods. 

Moralis logo.

With Moralisโ€™ Extended RPC Methods, you now only need a single RPC request to get the price of any token. But how does this work? If you want to learn how to get token prices using an RPC node, join us in this guide as we lay it all out for you. Letโ€™s kick things off! 

What are RPC Methods?

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

Text: "What are RPC methods?"

There are multiple standardized RPC protocols, with JSON-RPC being a prominent example. It features many predefined RPC methods, such as eth_getProof, that streamline blockchain interactions. These RPC methods make it possible to seamlessly read and write on-chain data.

Hereโ€™s a list of prominent methods:

  • eth_getTransactionByHash: Returns data about a transaction by hash.
  • eth_getChainId: Returns the current chain ID.
  • eth_gasPrice: Returns the current gas price.
  • eth_getBalance: Returns the balance of an address.
  • eth_getBlockNumber: Returns the number of the most recent block.

However, while standard RPC methods streamline blockchain interactions, they have some significant limitations you should consider. For instance, they cannot directly provide token prices. To get this data, you need to make multiple requests and even involve third-party providers.

To solve this issue and provide a more seamless developer experience, we introduced our next-generation RPC nodes!

Introducing Moralisโ€™ Next-Generation RPC Nodes โ€“ The Easiest Way to Get Token Prices

Moralis is a prominent RPC node provider, giving you next-generation nodes that will streamline your developer experience. With our intuitive point-and-click interface, you can set up RPC nodes for all major chains, including Ethereum, Optimism, Base, Polygon, BNB Smart Chain (BSC), and many more with ease. 

Moralis' RPC Nodes.

But what makes our RPC nodes special? 

  • Speed: We set the industry benchmark for speed, with response times from 70 ms. 
  • Reliability: Moralisโ€™ nodes boast an impressive 99.9% uptime, making sure you get all the data you need without any trouble. 
  • Extended RPC Methods: With our Extended RPC Methods, you can easily query decoded, human-readable data through RPC-style requests. 

Experience the next generation of RPC nodes with lightning-fast response times, unmatched reliability, and our powerful Extended RPC Methods! 

Extended RPC Methods

With Moralisโ€™ Extended RPC Methods, you can now seamlessly get decoded, human-readable data through RPC-style requests. With just one call, you can fetch NFT balances, ERC-20 balances, decoded wallet history, metadata, token prices, and much more. As such, when using Moralis, you can streamline your developer experience and build dapps faster and more efficiently. 

Moralis' Extended RPC Methods.

Here are all the available methods: 

  • eth_getTokenPrice: Get the price of any ERC-20 token.
  • eth_getNFTBalances: Fetch the NFT balance of a wallet.
  • eth_getNFTCollections: Get all collections held by a wallet.
  • eth_getTransactions: Query the native transactions of a wallet. 
  • eth_getDecodedTransactions: Get a walletโ€™s full transaction history.
  • eth_getTokenBalances: Query the ERC-20 balances of a wallet.
  • eth_getTokenMetadata: Get the metadata of an ERC-20 token.

In summary, the methods above give you seamless access to decoded, human-readable data via RPC-style requests. 

eth_getTokenPrice โ€“ Get Token Prices with one RPC Call

With our eth_getTokenPrice method, you can now seamlessly get token prices without breaking a sweat. All you need is a single RPC request, and youโ€™ll receive the price of any token denominated in both the chainโ€™s native cryptocurrency and USD. As such, it has never been easier to get token prices using an RPC node than when working with Moralis. 

Ethereum logo with token price chart.

But how does the eth_getTokenPrice method work? And what exactly does a response look like? If youโ€™re looking for the answers to these questions, read on, and weโ€™ll guide you through a comprehensive tutorial on how to get token prices using an RPC node in three simple steps! 

3-Step Tutorial: How to Get Token Prices with an RPC Node

Weโ€™ll now show you how to get token prices with an RPC node. Thanks to the accessibility of our Extended RPC Methods, you can get this data in three simple steps:

  1. Sign Up with Moralis & Set Up a Node
  2. Write a Script Calling eth_getTokenPrice
  3. Run the Code

However, before you can move on, you need to take care of a couple of prerequisites! 

Prerequisites

If you havenโ€™t already, make sure you have the following ready before continuing: 

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

Sign up for a Moralis account by clicking the โ€Start for Freeโ€ button at the top right: 

Arrow pointing at "Start for Free" at top right.

Log in, navigate to the โ€Nodesโ€ tab, and hit โ€+ Create Nodeโ€: 

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

Select โ€Ethereum,โ€ โ€Mainnet,โ€ and click โ€Create Nodeโ€: 

Node configurations.

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

Red arrows pointing at copy button for Ethereum node URLs.

Step 2: Write a Script Calling eth_getTokenPrice

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

npm init

Install the needed dependencies by running the commands below in your terminal: 

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

Add โ€typeโ€: โ€moduleโ€ to your โ€package.jsonโ€ file: 

"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_getTokenPrice",    "params": [      {        "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",        "include": "percent_change"      }    ]  }) };  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 copied during the initial step, and adjust the address parameter so that it fits your query: 

Code configurations.

Step 3: Run the Code

Run the terminal command below in the root folder of your project to execute the script: 

node index.js

In return, youโ€™ll get the price of the specified token denominated in both the chainโ€™s native currency and USD. Furthermore, the response is enriched with token logos, symbols, price changes over time, and much more. Hereโ€™s an example of what it might look like: 

{   jsonrpc: '2.0',   id: 1,   result: {     tokenName: 'USD Coin',     tokenSymbol: 'USDC',     tokenLogo: 'https://logo.developers.moralis.com/0x1_0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48_032b6f94fd2bd5af6c065def140109e9',     tokenDecimals: '6',     nativePrice: {       value: '399015837290761',       decimals: 18,       name: 'Ether',       symbol: 'ETH',       address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'     },     usdPrice: 0.9998033934658264,     usdPriceFormatted: '0.999803393465826414',     '24hrPercentChange': '-0.023636130935194257',     exchangeName: 'Uniswap v3',     exchangeAddress: '0x1F98431c8aD98523631AE4a59f267346ea31F984',     tokenAddress: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',     priceLastChangedAtBlock: '20669844',     possibleSpam: false,     verifiedContract: true,     pairAddress: '0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640',     pairTotalLiquidityUsd: '165658281.27'   } }

Thatโ€™s it; you now know how to get token prices with an RPC node! 

Use Cases for Token Prices

Token prices are used in a wide range of dapps. Below are three prominent examples:

  • Web3 Wallets: Web3 wallets typically allow users to buy and sell cryptocurrencies. As such, to provide a seamless experience, these platforms need to access and display accurate token prices.
  • Portfolio Trackers: Portfolio trackers give users an overview of their digital holdings. To present an accurate view of performance, they need to know current cryptocurrency prices.
  • Tax Platforms: Tax platforms require access to both historical and current token prices to generate accurate tax reports.
Token prices use cases.

These are just a few examples. Token price data is also crucial for building decentralized exchanges (DEXs), token analytics platforms, and more.

Beyond How to Get Token Prices with an RPC Node โ€“ Diving Into Other Extended RPC Methods

Now that you know how to get token prices with a node, letโ€™s also explore some of our other Extended RPC Methods. More specifically, weโ€™ll take a closer look at the following three: 

  1. eth_getTransactions
  2. eth_getTokenBalances
  3. eth_getNFTBalances

eth_getTransactions

With eth_getTransactions, you can now seamlessly get wallet transactions using RPC nodes. In fact, you only need a single RPC request to get the full native transaction history of the specified wallet. Hereโ€™s an example of what it might look like: 

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

In return for running the code above, youโ€™ll get a list of the specified walletโ€™s past native transactions. Moreover, each transaction is fully enriched with address labels, gas prices, and much more. Hereโ€™s a sample response: 

{   //...     result: [       {         hash: '0xd89b02f289a08ae7b2feead06031fec20777bad8b73fc8d853f9040bc423a6c7',         nonce: '0',         transaction_index: '142',         from_address: '0xda74ac6b69ff4f1b6796cddf61fbdd4a5f68525f',         from_address_label: '',         to_address: '0xdac17f958d2ee523a2206206994597c13d831ec7',         to_address_label: 'Tether USD (USDT)',         value: '0',         gas: '207128',         gas_price: '17020913648',         input: '0xa9059cbb00000000000000000000000028c6c06298d514db089934071355e5743bf21d6000000000000000000000000000000000000000000000000000000017a1df1700',         receipt_cumulative_gas_used: '8270587',         receipt_gas_used: '41309',         receipt_contract_address: null,         receipt_root: null,         receipt_status: '1',         block_timestamp: '2023-01-22T15:00:11.000Z',         block_number: '16463098',         block_hash: '0x2439330d0a282f9a6464b0aceb9f766ac4d7b050c048b4a1322b48544c61e01d',         transaction_fee: '0.000703116921885232'       },       //...     ]   } }

eth_getTokenBalances

With our eth_getTokenBalances endpoint, you can easily get ERC-20 token balances using RPC nodes. All you need is a single call. Hereโ€™s an example showing you how this method works in practice: 

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));

In return for calling the endpoint above, youโ€™ll get the ERC-20 balances of the specified wallet, enriched with logos, decimals, thumbnails, spam indicators, and more for each token. Hereโ€™s what it might look like: 

{   //...   result: [     {       token_address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2',       name: 'Wrapped Ether',       symbol: 'WETH',       decimals: 18,       logo: 'https://logo.developers.moralis.com/0x1_0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2_a578c5277503e547a072ae32517254ca',       thumbnail: 'https://logo.developers.moralis.com/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     },     //...   ] }

eth_getNFTBalances

With the eth_getNFTBalances method, you can effortlessly get NFT balances with one RPC call. Fetch and integrate NFT balances into your dapps without breaking a sweat. Hereโ€™s a sample script showing how it works: 

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

In return for calling the eth_getNFTBalances endpoint, youโ€™ll get the NFT balances of the specified wallet. Whatโ€™s more, the response is enriched with addresses, collection data, metadata, etc.: 

{   jsonrpc: '2.0',   id: 1,   result: {     //...     result: [           {       amount: '1',       token_id: '1919',       token_address: '0xbd3531da5cf5857e7cfaa92426877b022e612cf8',       contract_type: 'ERC721',       owner_of: '0xdc597929101c2de50c97d43c8ea3a372bf55fdc0',       last_metadata_sync: '2024-08-25T23:35:51.384Z',       last_token_uri_sync: '2024-08-25T23:35:50.893Z',       metadata: '{"attributes":[{"trait_type":"Background","value":"Mint"},{"trait_type":"Skin","value":"Olive Green"},{"trait_type":"Body","value":"Turtleneck Pink"},{"trait_type":"Face","value":"Eyepatch"},{"trait_type":"Head","value":"Wizard Hat"}],"description":"A collection 8888 Cute Chubby Pudgy Penquins sliding around on the freezing ETH blockchain.","image":"ipfs://QmNf1UsmdGaMbpatQ6toXSkzDpizaGmC9zfunCyoz1enD5/penguin/1919.png","name":"Pudgy Penguin #1919"}',       block_number: '19754671',       block_number_minted: null,       name: 'PudgyPenguins',       symbol: 'PPG',       token_hash: 'cbd8bd0901f422afb88e76615e3d2a1a',       token_uri: 'https://ipfs.developers.moralis.com:2053/ipfs/bafybeibc5sgo2plmjkq2tzmhrn54bk3crhnc23zd2msg4ea7a4pxrkgfna/1919',       minter_address: null,       verified_collection: true,       possible_spam: false,       collection_logo: 'https://i.seadn.io/gae/yNi-XdGxsgQCPpqSio4o31ygAV6wURdIdInWRcFIl46UjUQ1eV7BEndGe8L661OoG-clRi7EgInLX4LPu9Jfw4fq0bnVYHqg7RFi?w=500&auto=format',       collection_banner_image: 'https://i.seadn.io/gcs/files/8a26e3de0f309089cbb1e5ab969fc0bc.png?w=500&auto=format'       },       //...     ]   } }

Check out our official Extended RPC Methods documentation page to explore the remaining methods! 

Exploring Moralisโ€™ Web3 API Suite

In addition to our Extended RPC Methods, we also offer a comprehensive suite of Web3 APIs. Some prominent examples include the Wallet API, Token API, Streams API, NFT API, and many more. These APIs provide even more in-depth and enriched data, making it easier for you to build everything from Web3 wallets to games!

Moralis logo.

But why should you use our APIs?

  • Comprehensive: Our APIs give you more data with fewer calls. Get a walletโ€™s full history, token balances with prices, up-to-date NFT metadata, and much more with just one request.
  • Cross-Chain: Moralisโ€™ APIs are fully cross-chain, giving you full feature parity across all major networks. This includes Ethereum, Polygon, Optimism, BSC, Base, and many more.
  • Secure & Reliable: We are proud holders of a SOC 2 Type 2 certification, highlighting our dedication to maintaining enterprise-grade security and reliability.

Now, letโ€™s get more specific and explore some of our APIs in further detail!

Web3 APIs

Our suite of Web3 APIs comprises many use case-specific interfaces. Here are three prominent examples: 

  • Wallet API: Fetch any walletโ€™s full transaction history, token balances, net worth, profitability, token approvals, and much more with only single lines of code. 
  • Token API: Get token prices, metadata, transactions, balances, and more with just one request. 
  • NFT API: Query NFT balances, up-to-date metadata, prices, etc., with just one single API call. 

Check out our Web3 API page to explore all our industry-leading APIs! 

Summary: How to Get Token Prices with an RPC Node 

Fetching token prices using conventional RPC methods requires multiple requests and extensive manual data aggregation. As such, itโ€™s a time-consuming and resource-intensive process. Fortunately, you can now avoid the associated hassle and get token prices using an RPC node in just one call with Moralisโ€™ Extended RPC Methods! 

With our Extended RPC Methods, you can seamlessly fetch decoded, human-readable data using RPC-style requests. Get token balances, prices, NFT balances, and much more with single calls. 

To highlight the accessibility of this feature, check out the sample script below, showing you how to get token prices with an RPC node: 

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

In return for calling the script, youโ€™ll get the price of the specified token denominated in both USD and the chainโ€™s native currency. Hereโ€™s an example of what the response might look like: 

{   jsonrpc: '2.0',   id: 1,   result: {     tokenName: 'USD Coin',     tokenSymbol: 'USDC',     tokenLogo: 'https://logo.developers.moralis.com/0x1_0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48_032b6f94fd2bd5af6c065def140109e9',     tokenDecimals: '6',     nativePrice: {       value: '399015837290761',       decimals: 18,       name: 'Ether',       symbol: 'ETH',       address: '0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2'     },     usdPrice: 0.9998033934658264,     usdPriceFormatted: '0.999803393465826414',     '24hrPercentChange': '-0.023636130935194257',     exchangeName: 'Uniswap v3',     exchangeAddress: '0x1F98431c8aD98523631AE4a59f267346ea31F984',     tokenAddress: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48',     priceLastChangedAtBlock: '20669844',     possibleSpam: false,     verifiedContract: true,     pairAddress: '0x88e6a0c2ddd26feeb64f039a2c41296fcb3f5640',     pairTotalLiquidityUsd: '165658281.27'   } }

Congratulations! You now know how to get token prices with an RPC node! 

If you enjoyed this tutorial, consider checking out some other articles here on the Moralis blog. For instance, explore the ins and outs of our Blockchain Address Labeling API. 

Also, if you wish to use our Extended RPC Methods yourself, donโ€™t forget to sign up with Moralis. You can create an account free of charge, and youโ€™ll get immediate access to all our industry-leading tools!



Read More: developers.moralis.com

Tags: MoralisnodePricesRPCTokenweb 3.0Web3
ADVERTISEMENT

Recent

Bitcoin hits $103K but DeFi is a mixed bag: Finance Redefined

Bitcoin hits $103K but DeFi is a mixed bag: Finance Redefined

May 9, 2025
Cointelegraph Bitcoin & Ethereum Blockchain News

Cointelegraph Bitcoin & Ethereum Blockchain News

May 9, 2025
How GAMEE Is Making Web3 Irresistibly Fun

How GAMEE Is Making Web3 Irresistibly Fun

May 9, 2025

Categories

  • Bitcoin (4,942)
  • Blockchain (11,601)
  • Crypto (9,539)
  • Dark Web (561)
  • DeFi (8,488)
  • Ethereum (5,009)
  • Metaverse (7,742)
  • Monero (303)
  • NFT (1,590)
  • Solana (5,093)
  • Web3 (20,982)
  • Zcash (508)

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

    Bitcoin hits $103K but DeFi is a mixed bag: Finance Redefined

    Bitcoin hits $103K but DeFi is a mixed bag: Finance Redefined

    May 9, 2025
    Cointelegraph Bitcoin & Ethereum Blockchain News

    Cointelegraph Bitcoin & Ethereum Blockchain News

    May 9, 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,707.00
    • ethereumEthereum (ETH) $ 2,397.26
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.39
    • bnbBNB (BNB) $ 658.86
    • solanaSolana (SOL) $ 171.61
    • usd-coinUSDC (USDC) $ 1.00
    • dogecoinDogecoin (DOGE) $ 0.227894
    • cardanoCardano (ADA) $ 0.797668
    • tronTRON (TRX) $ 0.264334
    • staked-etherLido Staked Ether (STETH) $ 2,407.38
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 103,542.00
    • suiSui (SUI) $ 3.97
    • chainlinkChainlink (LINK) $ 16.30
    • avalanche-2Avalanche (AVAX) $ 24.19
    • wrapped-stethWrapped stETH (WSTETH) $ 2,870.64
    • stellarStellar (XLM) $ 0.304196
    • shiba-inuShiba Inu (SHIB) $ 0.000016
    • hedera-hashgraphHedera (HBAR) $ 0.208512
    • hyperliquidHyperliquid (HYPE) $ 25.62
    • the-open-networkToncoin (TON) $ 3.40
    • bitcoin-cashBitcoin Cash (BCH) $ 421.08
    • leo-tokenLEO Token (LEO) $ 8.70
    • usdsUSDS (USDS) $ 1.00
    • litecoinLitecoin (LTC) $ 103.40
    • polkadotPolkadot (DOT) $ 5.11
    • wethWETH (WETH) $ 2,396.39
    • moneroMonero (XMR) $ 319.18
    • wrapped-eethWrapped eETH (WEETH) $ 2,550.73
    • bitget-tokenBitget Token (BGB) $ 4.79
    • pepePepe (PEPE) $ 0.000013
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 0.999334
    • pi-networkPi Network (PI) $ 0.733226
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 103,488.00
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • whitebitWhiteBIT Coin (WBT) $ 30.32
    • uniswapUniswap (UNI) $ 6.65
    • bittensorBittensor (TAO) $ 450.73
    • nearNEAR Protocol (NEAR) $ 3.00
    • aptosAptos (APT) $ 5.77
    • daiDai (DAI) $ 1.00
    • aaveAave (AAVE) $ 221.28
    • okbOKB (OKB) $ 55.12
    • ondo-financeOndo (ONDO) $ 1.04
    • susdssUSDS (SUSDS) $ 1.05
    • ethereum-classicEthereum Classic (ETC) $ 19.56
    • crypto-com-chainCronos (CRO) $ 0.102535
    • internet-computerInternet Computer (ICP) $ 5.50
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • official-trumpOfficial Trump (TRUMP) $ 14.27
    • bitcoinBitcoin (BTC) $ 103,707.00
    • ethereumEthereum (ETH) $ 2,397.26
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.39
    • bnbBNB (BNB) $ 658.86
    • solanaSolana (SOL) $ 171.61
    • usd-coinUSDC (USDC) $ 1.00
    • dogecoinDogecoin (DOGE) $ 0.227894
    • cardanoCardano (ADA) $ 0.797668
    • tronTRON (TRX) $ 0.264334
    • staked-etherLido Staked Ether (STETH) $ 2,407.38
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 103,542.00
    • suiSui (SUI) $ 3.97
    • chainlinkChainlink (LINK) $ 16.30
    • avalanche-2Avalanche (AVAX) $ 24.19
    • wrapped-stethWrapped stETH (WSTETH) $ 2,870.64
    • stellarStellar (XLM) $ 0.304196
    • shiba-inuShiba Inu (SHIB) $ 0.000016
    • hedera-hashgraphHedera (HBAR) $ 0.208512
    • hyperliquidHyperliquid (HYPE) $ 25.62
    • the-open-networkToncoin (TON) $ 3.40
    • bitcoin-cashBitcoin Cash (BCH) $ 421.08
    • leo-tokenLEO Token (LEO) $ 8.70
    • usdsUSDS (USDS) $ 1.00
    • litecoinLitecoin (LTC) $ 103.40
    • polkadotPolkadot (DOT) $ 5.11
    • wethWETH (WETH) $ 2,396.39
    • moneroMonero (XMR) $ 319.18
    • wrapped-eethWrapped eETH (WEETH) $ 2,550.73
    • bitget-tokenBitget Token (BGB) $ 4.79
    • pepePepe (PEPE) $ 0.000013
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 0.999334
    • pi-networkPi Network (PI) $ 0.733226
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 103,488.00
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • whitebitWhiteBIT Coin (WBT) $ 30.32
    • uniswapUniswap (UNI) $ 6.65
    • bittensorBittensor (TAO) $ 450.73
    • nearNEAR Protocol (NEAR) $ 3.00
    • aptosAptos (APT) $ 5.77
    • daiDai (DAI) $ 1.00
    • aaveAave (AAVE) $ 221.28
    • okbOKB (OKB) $ 55.12
    • ondo-financeOndo (ONDO) $ 1.04
    • susdssUSDS (SUSDS) $ 1.05
    • ethereum-classicEthereum Classic (ETC) $ 19.56
    • crypto-com-chainCronos (CRO) $ 0.102535
    • internet-computerInternet Computer (ICP) $ 5.50
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • official-trumpOfficial Trump (TRUMP) $ 14.27