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

Check Wallet Activity and Get Crypto Address Labels

Altszn.com by Altszn.com
October 11, 2023
in Web3
0
Check Wallet Activity and Get Crypto Address Labels
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


Check Wallet Activity and Get Crypto Address Labels

Todayโ€™s article will show you how to easily check wallet activity and get crypto address labels using Moralis. Moralis provides a comprehensive suite of industry-leading Web3 APIs, allowing you to get this data with a few lines of code. If youโ€™re eager to jump straight into it, then here are two brief guides on how to check wallet activity and get crypto address labels:

Check Wallet Activity 

With the getWalletActiveChains() endpoint, you can effortlessly check the wallet activity of any crypto address across multiple blockchain networks. Hereโ€™s an example of what the code can look like:

const Moralis = require("moralis").default; const { EvmChain } = require("@moralisweb3/common-evm-utils");  const runApp = async () => {   await Moralis.start({     apiKey: "YOUR_API_KEY",     // ...and any other configuration   });    const address = "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e";    const chains = [EvmChain.ETHEREUM, EvmChain.BSC, EvmChain.POLYGON];    const response = await Moralis.EvmApi.wallets.getWalletActiveChains({     address,     chains,   });      console.log(response.toJSON()); }  runApp();

All you have to do is add your Moralis API key, configure the address parameter, and run the script. In return, youโ€™ll get the first and latest transactions for the address in question. Hereโ€™s an example of what the response might look like:

{   "address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",   "active_chains": {     "chain": "eth",     "chain_id": "0x1",     "first_transaction": {       "block_number": "123456789",       "block_timestamp": "2022-08-23T20:58:31.000Z",       "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09"     },     "last_transaction": {       "block_number": "123456789",       "block_timestamp": "2022-08-23T20:58:31.000Z",       "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09"     }   } }

Thatโ€™s how easy it is to check the wallet activity of any address with Moralis! 

If you want more information about how this works, join us in this article or check out the official wallet activity documentation! 

Get Crypto Address Labels 

The Moralis API supports crypto address labels for all endpoints returning a to_address or from_address. An example is the getWalletTransactions() endpoint, which weโ€™ll use to illustrate how easy it is to get crypto address labels with Moralis. Hereโ€™s an example of what the code can look like:

const Moralis = require("moralis").default; const { EvmChain } = require("@moralisweb3/common-evm-utils");  const runApp = async () => {   await Moralis.start({     apiKey: "YOUR_API_KEY",     // ...and any other configuration   });    const address = "0x1f9090aaE28b8a3dCeaDf281B0F12828e676c326";    const chain = EvmChain.ETHEREUM;    const response = await Moralis.EvmApi.transaction.getWalletTransactions({     address,     chain,   });    console.log(response.toJSON()); };  runApp();

You just need to add your Moralis API key, configure the chain and address parameters to fit your query, and then run the code. In return, youโ€™ll receive a response containing the to_address_label and from_address_label parameters. It can look something like this:

//โ€ฆ   "result": {     "hash": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",     "nonce": 326595425,     "transaction_index": 25,     "from_address": "0xd4a3BebD824189481FC45363602b83C9c7e9cbDf",     "to_address": "0xa71db868318f0a0bae9411347cd4a6fa23d8d4ef",     "from_address_label": "Binance 1",     "to_address_label": "Binance 2",     "value": 650000000000000000, //...

Getting crypto address labels doesnโ€™t have to be more challenging than that when working with Moralis! 

If you want more in-depth information on how this works, join us in this article or check out the official address labels documentation! 

Also, before you continue, remember to sign up with Moralis. You can create your account for free, and youโ€™ll need one to make similar calls to the Moralis API!

Overview

In todayโ€™s article, weโ€™ll start by exploring the ins and outs of wallet activity. Once you know what it entails, weโ€™ll show you how to get the wallet activity of any user address with Moralis. Next, weโ€™ll dive straight into the intricacies of crypto address labels to give you an overview of what they are. From there, weโ€™ll show you how to get crypto address labels with Moralis in three straightforward steps. Lastly, to top things off, weโ€™ll explore a few prominent use cases for crypto address labels! 

To check wallet activity and get crypto address labels, weโ€™ll be using the Moralis Wallet API. This is one of many industry-leading APIs Moralis offers. And if youโ€™re serious about building Web3 projects, we highly recommend checking out Moralisโ€™ additional tools. 

For instance, if youโ€™re planning to build an NFT-based platform, then make sure to also explore the Moralis NFT API. With this tool, you can seamlessly get ERC721 on-chain metadata, get all NFT tokens owned by a user address, and much more using only single lines of code! 

If this sounds exciting, remember to sign up with Moralis. You can create an account free of charge, and youโ€™ll gain immediate access to all APIs, allowing you to fully leverage the power of blockchain technology! 

Moralis Wallet Activity Landing Page

What is Wallet Activity? 

The wallet activity of an address is quite straightforward, and it simply tells you what blockchain networks a Web3 wallet has been active on. Moreover, it includes the dates of the first and last seen transactions. 

Illustration - Web3 wallet activity with transaction flow

So, why might you need this information? 

Well, checking the wallet activity of an address can tell you and your users a lot of things. For instance, if the wallet was created a long time ago and remains active today, it indicates that itโ€™s an enthusiastic user or trader who might be worth keeping an eye on. 

On the other, if a wallet was created a few days ago and only has a few transactions that last occurred on the same day, it might indicate that the sole purpose of the wallet was to bridge funds, for example. 

Going through all blockchains and querying each network for the first and last transactions can be a tedious and time-consuming task. Fortunately, this is where Moralis enters the equation, giving you a straightforward way to query this information via the Wallet API. In fact, all you need is a single API call to check the wallet activity of any address! 

Letโ€™s take a closer look at how this works in the next section! 

How to Check Wallet Activity 

With the Moralis Wallet API, you can seamlessly check wallet activity across multiple blockchain networks in a heartbeat. In fact, thanks to this industry-leading tool, you can now get the data you need with a single API call to the getWalletActiveChains() endpoint! 

To demonstrate the accessibility of the Moralis Wallet API, weโ€™ll show you how to check the wallet activity of any address in three easy steps: 

  • Step 1: Get a Moralis API Key
  • Step 2: Create a Script
  • Step 3: Run the Code

However, before you can jump into the first step of the tutorial, youโ€™ll need to deal with a few prerequisites! 

Prerequisites to Check Wallet Activity

In this tutorial, weโ€™ll show you how to check wallet activity using JavaScript. As such, youโ€™ll need to have the following ready before you proceed: 

With these installed and set up, youโ€™re ready to continue with the first step!  

Step 1: Get a Moralis API Key to Check Wallet Activity

To be able to call the getWalletActiveChains() endpoint, you need a Moralis API key. As such, if you donโ€™t already have a Moralis account, click on the โ€Start for Freeโ€ button at the top right to sign up: 

Step 1 - Sign up with Moralis to check wallet activity

Next, go to the โ€Settingsโ€ tab, scroll down to the โ€Secretsโ€ section, and copy your API key: 

Copy Web3 API Key for Wallet Activity

Save the key for now; youโ€™ll need it in the second step! 

Step 2: Create a Script 

Create a new project in your integrated development environment (IDE), open a new terminal, and run the command down below to install the Moralis SDK: 

npm install moralis @moralisweb3/common-evm-utils

Next, create a new โ€index.jsโ€ file and add the following code: 

const Moralis = require("moralis").default; const { EvmChain } = require("@moralisweb3/common-evm-utils");  const runApp = async () => {   await Moralis.start({     apiKey: "YOUR_API_KEY",     // ...and any other configuration   });    const address = "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e";    const chains = [EvmChain.ETHEREUM, EvmChain.BSC, EvmChain.POLYGON];    const response = await Moralis.EvmApi.wallets.getWalletActiveChains({     address,     chains,   });      console.log(response.toJSON()); }  runApp();

From here, you need to make a few configurations. First of all, add your API key by replacing YOUR_API_KEY: 

Pasting API key for Wallet Activity

Next, add the address you want to check the wallet activity for to the address const:

Address parameter for Activity Web3 Wallet

We then pass address and chain as parameters when calling the getWalletActiveChains() endpoint: 

pass address and chain as parameters when calling the getWalletActiveChains() endpoint-

And thatโ€™s it for the code; all that remains from here is running the script! 

Step 3: Run the Code 

To execute the code, simply run the following terminal command in the projectโ€™s root folder: 

node index.js

In return, youโ€™ll get a response with the walletโ€™s first and latest transactions for each chain it has been active on. Hereโ€™s an example of what the response might look like: 

{   "address": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",   "active_chains": {     "chain": "eth",     "chain_id": "0x1",     "first_transaction": {       "block_number": "123456789",       "block_timestamp": "2022-08-23T20:58:31.000Z",       "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09"     },     "last_transaction": {       "block_number": "123456789",       "block_timestamp": "2022-08-23T20:58:31.000Z",       "transaction_hash": "0x2d30ca6f024dbc1307ac8a1a44ca27de6f797ec22ef20627a1307243b0ab7d09"     }   } }

Congratulations! You now know how to check the wallet activity of any address using Moralis and the Wallet API! 

What are Crypto Address Labels? 

The Moralis API autonomously enriches all ERC-20 and NFT transfers with user-friendly labels for both senders and receivers. This is done for all transactions or transfers that have a to_address or a from_address by also including to_address_lable and from_address_lable parameters. So, what are these crypto address labels? 

Crypto labels reflect publicly known addresses such as Coinbase, Kraken, Binance, etc., along with decentralized exchanges (DEXs) like Uniswap v3, 1inch, as well as NFT marketplaces like Blur, OpenSea, and many others! 

That said, why do you need labels? 

Any crypto address is simply a unique sequence of numbers and letters used to identify wallets. However, they are long, confusing, and donโ€™t say much about the user. With crypto address labels, we provide human-readable names or descriptions for these wallets, making it easier for users to identify actors involved in transactions. 

Crypto Address Labels graphical art image

Crypto address labels have many benefits, such as reducing error risks, allowing users to quickly identify where payments are coming from, etc., all benefits that contribute to a more compelling experience for end users. 

While you can label publicly known addresses, it can quickly become a tedious and time-consuming task. Fortunately, with the Moralis API, you can avoid reinventing the wheel as we have done the hard work for you!

If youโ€™d like to learn more about how this works in practice, join us in the next section as we show you how to get crypto address labels with Moralis!

How to Get Crypto Address Labels 

As previously mentioned, when working with Moralis, you get crypto address labels for any transaction and transfers that include a to_address or from_address parameter. This means that multiple endpoints support crypto address labels, and down below, youโ€™ll find a list of a few examples: 

  • getWalletTransactions()
  • getWalletTransactionsVerbose()
  • getWalletNFTTransfers()
  • getNFTContractTransfers()
  • getWalletTokenTransfers()

To illustrate how this works, weโ€™ll be using the getWalletTransactions() endpoint. And thanks to the accessibility of the Moralis API, you can now get crypto address labels in three straightforward steps: 

  • Step 1: Get a Moralis API Key
  • Step 2: Create a Script
  • Step 3: Run the Code

Before jumping into the first step, you need to take care of a few prerequisites! 

Note: The โ€Prerequisitesโ€ part and the first step are the same as in the โ€How to Check Wallet Activityโ€ section. As such, feel free to skip these parts if you previously covered them. 

Prerequisites to Crypto Address Labels

As weโ€™ll be using JavaScript for this brief tutorial, make sure to have the following ready: 

Once youโ€™re done setting these up, youโ€™re ready to jump into the tutorialโ€™s first step on getting crypto address labels!

Step 1: Get a Moralis API Key to Get Crypto Address Labels

To be able to call the getWalletTransactions() endpoint, you need a Moralis API key. As such, go ahead and start by clicking on the โ€Start for Freeโ€ button at the top right to set up your Moralis account: 

Crypto Address Labels Sign Up Page Moralis

With an account at your disposal, youโ€™ll be able to locate your Moralis API key under the โ€Settingsโ€ tab and the โ€Secretsโ€ section: 

Copy Crypto Address Label API key

Go ahead and copy your API key and save it for the next step.

Step 2: Create a Script 

Start by creating a project folder, open a new terminal, and run the following command to install the Moralis SDK: 

npm install moralis @moralisweb3/common-evm-utils

Next, create a new file called โ€index.jsโ€ and add the following code: 

const Moralis = require("moralis").default; const { EvmChain } = require("@moralisweb3/common-evm-utils");  const runApp = async () => {   await Moralis.start({     apiKey: "YOUR_API_KEY",     // ...and any other configuration   });    const address = "0x1f9090aaE28b8a3dCeaDf281B0F12828e676c326";    const chain = EvmChain.ETHEREUM;    const response = await Moralis.EvmApi.transaction.getWalletTransactions({     address,     chain,   });    console.log(response.toJSON()); };  runApp();

From here, you need to replace YOUR_API_KEY with the Moralis API key you copied in the previous step: 

Inserting Crypto Address Label API Key into code

You also need to configure the address and chain parameters to fit your request: 

configure the address and chain parameters to fit your crypto address label request

We then pass address and chain as parameters when calling the getWalletTransactions() endpoint: 

pass address and chain as parameters when calling the getWalletTransactions() endpoint for crypto address label

Thatโ€™s it for the code. All you have to do now is to run the script! 

Step 3: Run the Code 

To run the code, simply open a new terminal, cd into the root folder of the project, input the following command, and hit enter: 

node index.js

In return, youโ€™ll get a response containing all the transactions appertaining to the address in question. It will look something like this: 

//โ€ฆ   "result": {     "hash": "0x057Ec652A4F150f7FF94f089A38008f49a0DF88e",     "nonce": 326595425,     "transaction_index": 25,     "from_address": "0xd4a3BebD824189481FC45363602b83C9c7e9cbDf",     "to_address": "0xa71db868318f0a0bae9411347cd4a6fa23d8d4ef",     "from_address_label": "Binance 1",     "to_address_label": "Binance 2",     "value": 650000000000000000, //...

As you can see above, the response also contains the from_address_label and to_address_label for each transaction: 

Response code for crypto address labels

Thatโ€™s it! When working with Moralis, it doesnโ€™t have to be more challenging than that to get crypto address labels! 

Crypto Address Labels Use Cases 

No matter what Web3 project youโ€™re aiming to build, youโ€™ll likely find that crypto address labels come in handy. However, to exemplify, weโ€™ll take a closer look at three prominent examples of crypto address label use cases: 

  • Trading App: When building a trading app, crypto address labels become crucial for the user experience. Crypto address labels provide human-friendly identifiers, giving users better insight into who they are trading with. 
  • Web3 Wallet: When building a Web3 wallet, it can be beneficial to, for instance, include crypto address labels when displaying a userโ€™s transaction history. It will improve the user experience by giving users better insight into their transaction history. 
Crypto Address Labels Use Cases displayed
  • Identify Transactions: Lastly, crypto address labels can also come in handy when trying to identify transactions. This can be useful for individual traders who want to monitor whales, seeing their activity with various exchanges, DEXs, and other marketplaces.

Nevertheless, if you want to learn more about crypto address labels and how they can be used in practice, take a look at this video from the Moralis YouTube channel: 

Summary: Check Wallet Activity and Get Crypto Address Labels 

In todayโ€™s article, we showed you how to check wallet activity and get crypto address labels using Moralis in three straightforward steps: 

  • Step 1: Get a Moralis API Key
  • Step 2: Create a Script
  • Step 3: Run the Code

Consequently, if you have followed along this far, you can now seamlessly integrate this functionality into your future projects! 

If you found this tutorial helpful, consider exploring some additional guides here at Moralis. For example, learn what an Ethereum testnet is, read about account abstraction, or explore the industryโ€™s leading NFT image API. 

Furthermore, if you have ambitions to build more sophisticated Web3 projects, make sure to check out some more tools Moralis offers. For example, explore the Token API and learn how to get the ERC20 token balance from any address in the blink of an eye! 

Title - Moralis - #1 API provider for wallet activity and crypto address labels

If you want access to these industry-leading APIs and many others, donโ€™t forget to sign up with Moralis. You can set up your account for free and start building projects faster and more efficiently immediately!



Read More: moralis.io

Tags: ActivityaddressCheckCryptoLabelsWalletweb 3.0Web3
ADVERTISEMENT

Recent

Meta to make AI-powered mixed-reality headsets for US military

Meta to make AI-powered mixed-reality headsets for US military

June 2, 2025
Strategy signals another Bitcoin buy on June 2

Strategy signals another Bitcoin buy on June 2

June 1, 2025
Bots have wallets, and the machine economy has arrived.

Bots have wallets, and the machine economy has arrived.

June 1, 2025

Categories

  • Bitcoin (4,501)
  • Blockchain (10,743)
  • Crypto (8,682)
  • Dark Web (438)
  • DeFi (8,083)
  • Ethereum (4,531)
  • Metaverse (6,760)
  • Monero (247)
  • NFT (1,071)
  • Solana (4,898)
  • Web3 (19,777)
  • 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

    Meta to make AI-powered mixed-reality headsets for US military

    Meta to make AI-powered mixed-reality headsets for US military

    June 2, 2025
    Strategy signals another Bitcoin buy on June 2

    Strategy signals another Bitcoin buy on June 2

    June 1, 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) $ 104,963.00
    • ethereumEthereum (ETH) $ 2,499.80
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.17
    • bnbBNB (BNB) $ 658.32
    • solanaSolana (SOL) $ 155.96
    • usd-coinUSDC (USDC) $ 0.999760
    • dogecoinDogecoin (DOGE) $ 0.191223
    • tronTRON (TRX) $ 0.271692
    • cardanoCardano (ADA) $ 0.680176
    • staked-etherLido Staked Ether (STETH) $ 2,498.77
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 104,759.00
    • suiSui (SUI) $ 3.29
    • hyperliquidHyperliquid (HYPE) $ 33.38
    • wrapped-stethWrapped stETH (WSTETH) $ 3,008.65
    • chainlinkChainlink (LINK) $ 13.90
    • avalanche-2Avalanche (AVAX) $ 20.68
    • stellarStellar (XLM) $ 0.265734
    • bitcoin-cashBitcoin Cash (BCH) $ 401.00
    • leo-tokenLEO Token (LEO) $ 8.44
    • the-open-networkToncoin (TON) $ 3.15
    • shiba-inuShiba Inu (SHIB) $ 0.000013
    • hedera-hashgraphHedera (HBAR) $ 0.169913
    • usdsUSDS (USDS) $ 0.999784
    • litecoinLitecoin (LTC) $ 87.62
    • wethWETH (WETH) $ 2,500.20
    • wrapped-eethWrapped eETH (WEETH) $ 2,672.29
    • moneroMonero (XMR) $ 343.74
    • polkadotPolkadot (DOT) $ 4.03
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.00
    • bitget-tokenBitget Token (BGB) $ 4.73
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • pepePepe (PEPE) $ 0.000012
    • pi-networkPi Network (PI) $ 0.642235
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 104,928.00
    • whitebitWhiteBIT Coin (WBT) $ 31.09
    • daiDai (DAI) $ 0.999884
    • uniswapUniswap (UNI) $ 6.10
    • aaveAave (AAVE) $ 241.43
    • bittensorBittensor (TAO) $ 408.14
    • ethena-staked-usdeEthena Staked USDe (SUSDE) $ 1.18
    • crypto-com-chainCronos (CRO) $ 0.105774
    • okbOKB (OKB) $ 50.01
    • aptosAptos (APT) $ 4.73
    • nearNEAR Protocol (NEAR) $ 2.42
    • jito-staked-solJito Staked SOL (JITOSOL) $ 188.14
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • ondo-financeOndo (ONDO) $ 0.832031
    • internet-computerInternet Computer (ICP) $ 4.90
    • ethereum-classicEthereum Classic (ETC) $ 16.93
    • bitcoinBitcoin (BTC) $ 104,963.00
    • ethereumEthereum (ETH) $ 2,499.80
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.17
    • bnbBNB (BNB) $ 658.32
    • solanaSolana (SOL) $ 155.96
    • usd-coinUSDC (USDC) $ 0.999760
    • dogecoinDogecoin (DOGE) $ 0.191223
    • tronTRON (TRX) $ 0.271692
    • cardanoCardano (ADA) $ 0.680176
    • staked-etherLido Staked Ether (STETH) $ 2,498.77
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 104,759.00
    • suiSui (SUI) $ 3.29
    • hyperliquidHyperliquid (HYPE) $ 33.38
    • wrapped-stethWrapped stETH (WSTETH) $ 3,008.65
    • chainlinkChainlink (LINK) $ 13.90
    • avalanche-2Avalanche (AVAX) $ 20.68
    • stellarStellar (XLM) $ 0.265734
    • bitcoin-cashBitcoin Cash (BCH) $ 401.00
    • leo-tokenLEO Token (LEO) $ 8.44
    • the-open-networkToncoin (TON) $ 3.15
    • shiba-inuShiba Inu (SHIB) $ 0.000013
    • hedera-hashgraphHedera (HBAR) $ 0.169913
    • usdsUSDS (USDS) $ 0.999784
    • litecoinLitecoin (LTC) $ 87.62
    • wethWETH (WETH) $ 2,500.20
    • wrapped-eethWrapped eETH (WEETH) $ 2,672.29
    • moneroMonero (XMR) $ 343.74
    • polkadotPolkadot (DOT) $ 4.03
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 1.00
    • bitget-tokenBitget Token (BGB) $ 4.73
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • pepePepe (PEPE) $ 0.000012
    • pi-networkPi Network (PI) $ 0.642235
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 104,928.00
    • whitebitWhiteBIT Coin (WBT) $ 31.09
    • daiDai (DAI) $ 0.999884
    • uniswapUniswap (UNI) $ 6.10
    • aaveAave (AAVE) $ 241.43
    • bittensorBittensor (TAO) $ 408.14
    • ethena-staked-usdeEthena Staked USDe (SUSDE) $ 1.18
    • crypto-com-chainCronos (CRO) $ 0.105774
    • okbOKB (OKB) $ 50.01
    • aptosAptos (APT) $ 4.73
    • nearNEAR Protocol (NEAR) $ 2.42
    • jito-staked-solJito Staked SOL (JITOSOL) $ 188.14
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • ondo-financeOndo (ONDO) $ 0.832031
    • internet-computerInternet Computer (ICP) $ 4.90
    • ethereum-classicEthereum Classic (ETC) $ 16.93