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

Chainlink NFT Tutorial โ€“ How to Build a Chainlink NFT

Altszn.com by Altszn.com
January 28, 2023
in Web3
0
Chainlink NFT Tutorial โ€“ How to Build a Chainlink NFT
399
SHARES
2.3k
VIEWS
Share on FacebookShare on Twitter


The above video (the guideline for this article) covers an extensive example project showing you how to build a Chainlink NFT. As you may already know, Chainlink is an oracle blockchain project offering several neat solutions. One of these is Chainlinkโ€™s VRF (verifiable random function), which is also one of the primary tools weโ€™ll use in this tutorial to mint random non-fungible tokens. Essentially, weโ€™ll create a dapp with an NFT-minting smart contract incorporating Chainlinkโ€™s VRF.

For our contract to build the NFT, we also need NFT-representing files (images) and metadata files, which we will store in IPFS. This is where Moralisโ€™ IPFS API enters the equation. For this, the following code snippet will do the heavy lifting: 

result = evm_api.ipfs.upload_folder(     api_key=api_key,     body=body, )

With the files in IPFS, weโ€™ll be able to include metadata URIs in our smart contract. This is the initial Solidity line of code of our smart contract:

contract RandomNFT is ERC721URIStorage, VRFConsumerBaseV2, Ownable {

As far as our dapp goes, it will consist of a JavaScript frontend and a Python backend. When it comes to fetching on-chain data, Moralisโ€™ ultimate NFT API will simplify things via the following lines of code:

result = evm_api.nft.get_nft_owners(     api_key=api_key,     params=params, )

If you are ready to take on todayโ€™s Chainlink NFT tutorial, create your free Moralis account and follow our lead!

TRUSTED BY INDUSTRY LEADERS

Scale Your Chainlink NFT - Sign Up with Moralis Today!

Overview

Moving forward, we will dive into the steps you need to complete to build a Chainlink NFT minter. This dapp randomly takes NFT-representing files and their metadata and mint NFTs when users click on the โ€œMint!โ€ button on the frontend. Now, to make such a dapp work, there are many aspects to cover, so the following description will highlight the essential aspects, and refer to the above video for details. Here are the core steps that you need to cover to complete our Chainlink NFT tutorial:

  1. Set up your Chainlink VRF.
  2. Write your unique smart contract script in Solidity or copy our template.
  3. Prepare the NFT-representing and metadata files and upload them to IPFS or use our example files.
  4. Deploy your Solidity smart contract that can build a Chainlink NFT.  
  5. Build frontend and backend portions of an NFT minting dapp that ties it all together. 

Following our lead, you also need several tools to complete the above steps. These include Chainlink VRF, MetaMask, Visual Studio Code (VSC), Brownie or Remix, an Ethereum faucet, a Chainlink faucet, and Moralis. We will also do a quick demonstration of the final build in the โ€œBuild a Chainlink NFTโ€ section.  

Below the actual tutorial, you can also find several sections that will help you better understand the theoretical aspects of todayโ€™s topic. This is where you can learn what Chainlink and Chainlink NFTs are and explore the gist of the aforementioned tools.

Hologram showing a Chainlink NFT title

Chainlink NFT Tutorial โ€“ How to Build a Chainlink NFT

As outlined above, we can dive right into the first step โ€“ setting up your Chainlink VRF. Use the video above, starting at 2:21, for more details about VRF. Now, start by opening Chainlinkโ€™s subscription manager from Chainlinkโ€™s docs:

Subscription manager button on Chainlink website

Next, select โ€œEthereum Goerliโ€ and connect your MetaMask via the โ€œConnect walletโ€ button:

Connect to Goerli and MetaMask button on Chainlink landing page

Once your wallet is connected, click on โ€œCreate Subscriptionโ€ and confirm the transaction with your MetaMask wallet. Then, you need to make sure your account has enough funds. Since you are on the testnet, you can use the Chainlink testnet faucet to get testnet LINK. Just connect your wallet and request ten testnet LINK tokens:

Requesting ten testnet LINK tokens to mint our Chainlink NFT

Next, return to โ€œvrf.chain.linkโ€œ and select your subscription:

On the next page, use the โ€œAdd Fundsโ€ button:

Then, add ten testnet LINK to your subscription:

Note: After clicking on the โ€œConfirmโ€ button, you must confirm the transfer of tokens with your MetaMask.

By completing the above steps, you should have an active subscription with a balance of ten LINK tokens ready:

You will use your subscription ID and the funds to get a random number by using the Chainlink VRF smart contract. You can access that smart contract template via the โ€œGet random number documentation pageโ€: 

Use the video above (6:56) for a quick code walkthrough of that VRF contract template. All in all, โ€œrequestRandomWordsโ€ is the function that generates the randomness and the โ€œfulfillRandomWordsโ€ function executes the action based on the received random number. Then, use Remix to deploy that smart contract (7:50):

Deploy button and our Chainlink NFT code structure inside the Remix IDE

After youโ€™ve deployed your instance of the above smart contract, youโ€™ll be able to copy its address:

Chainlink NFT wallet address

With the deployed contract address copied, return to your Chainlink VRF subscription page and add a new consumer:

Contract address entered into the Add consumer entry field

Build a Chainlink NFT Smart Contract 

Now that you know how to set up your Chainlink VRF subscription and use it for the template contract, itโ€™s time you do this for our example NFT smart contract: โ€œRandomNFT.solโ€œ. Use the video above (9:32) to follow along with our in-house expert as he writes this contract, or copy the complete code from GitHub via the โ€œRandomNFT.solโ€ link.

This contract incorporates Chainlink VRFโ€™s randomness for minting our three example NFTs and is designed to build a Chainlink NFT. So, its purpose is to create an ERC721 token based on selecting one of our NFT metadata files. These files also include URLs pointing to our three example images. Both the NFT-representing files and metadata files are stored in IPFS. For the sake of this tutorial, you can use our files; however, you may also use your own files. 

Note: Of course, you can also go with a greater number of NFTs than just three, but in that case, you need to tweak the code accordingly. 

Title - Upload Files to IPFS

Storing Images and Metadata to IPFS

Whether you decide to use Brownie or Remix, you need to have your NFT-representing files and corresponding metadata in IPFS. For the purpose of uploading images, generating metadata files using imagesโ€™ URLs, and uploading metadata to IPFS, we created two Python scripts: โ€œipf_img.pyโ€ and โ€œipfs-upload.pyโ€œ. The first one uploads the images to IPFS, while the second construct the metadata files and uploads them to IPFS. Hereโ€™s one of our three example metadata files already uploaded to IPFS:

URI for our Chainlink NFT contract in the browser address bar

So, if you want to create your unique NFTs, you need to have your images inside the โ€œimgโ€ folder and tweak the descriptions in the โ€œipfs-upload.pyโ€ script accordingly. Furthermore, both of these scripts use Moralisโ€™ โ€œevm_api.ipfs.upload_folderโ€ method. As such, make sure to get your Web3 API key and store it inside a โ€œ.envโ€ file under โ€œMORALIS_API_KEYโ€œ. You can get your API key from the Moralis admin area in these two steps:

Web3 API landing page

Note: If you need more guidance with uploading your files to IPFS, use our video guide on how to upload NFT collections to IPFS. 

Deploy Your Solidity Smart Contract with Brownie or Remix

Our โ€œRandomNFT.solโ€ contract is constructed to be deployed with Brownie. For the deployment purpose via this method, we have several scripts: โ€œhelpful_script.pyโ€œ, โ€œdeploy_random_nft.pyโ€œ, and โ€œbrownie-confi.yamlโ€ (30:08). Inside the latter, you need to add your Chainlink VRF subscription ID:

To use these deployment scripts, you also need a private wallet key, Infura project ID, and Etherscan API key. Make sure to store these variables inside another โ€œ.envโ€ file:

Note: If you need guidance with obtaining these variables, use the video at the top of the article, starting at 34:00.  

With all of the above in place, youโ€™re ready to deploy your smart contract using the following command line:

brownie run scripts/deploy_random_nft.py --network goerli

In case youโ€™re not familiar with Brownie, you can instead use Remix to deploy your smart contract. In that case, the code requires some minor tweaks, so make sure to use the โ€œRandomNFTForRemix.solโ€ script instead.

Whichever deployment method you use, make sure to copy your deployed contractโ€™s address and use it to add a new consumer to your Chanlink VRF subscription, just like we did for the โ€œVRFโ€ contract template above.

Build Frontend and Backend Portions of an NFT Minting Dapp

To wrap up our Chainlink NFT tutorial, you must also build a simple frontend JavaScript dapp and a simple backend Python dapp. Of course, you donโ€™t need to code the required scripts from scratch. Instead, you can use our complete code that awaits you on GitHub. To complete the process, you need the above-deployed smart contractโ€™s address and ABI. You can follow our in-house expertโ€™s lead to do this with the help of the โ€œupdate_frontend.pyโ€ script (38:57).

As far as the frontend goes, โ€œApp.jsโ€ does the trick (40:16). This is where we import the ethers.js Web3 library and use its modules to cover the Web3 functionality behind the โ€œConnect Walletโ€ and โ€œMint!โ€ buttons of our frontend.  

Regarding the โ€œGet My NFTsโ€ button, you get to use the power of Moralisโ€™ API and implement the final of the three code snippets showcased in the intro of todayโ€™s article. For this purpose, we use the โ€œservices.pyโ€ script:

from moralis import evm_api import os from dotenv import load_dotenv  load_dotenv()  api_key = os.getenv("MORALIS_API_KEY")  def get_nft_owners(address: str):     params = {         "address": address,         "chain": "goerli",         "format": "decimal",         "limit": 100,         "cursor": "",         "normalizeMetadata": True,     }      result = evm_api.nft.get_nft_owners(         api_key=api_key,         params=params,     )      return result

To make the above script work, you must get the connected wallet address from the frontend. This is where the โ€œview.pyโ€ script enters the scene. Donโ€™t forget to add the โ€œget_owners/โ€ endpoint to your project settings (inside the โ€œurls.pyโ€ script). Finally, to see how the โ€œApp.jsโ€ script utilizes the on-chain data fetched with the โ€œevm_api.nft.get_nft_ownersโ€ method, use the video at the top (44:23).  

Build a Chainlink NFT

By following the steps outlined in the previous section in combination with the above video, you should be able to build a neat random NFT minter. On the frontend, our example dapp is pretty simple; it only has three buttons:

Our Chainlink NFT app landing page

Once we click on the โ€œConnect Walletโ€ button, the MetaMask extension pops up, asking us to select our account:

MetaMask prompt to build Chainlink NFT

With the account selected, we need to click on the โ€œNextโ€ button. In the second step, we finally connect our wallet via the โ€œConnectโ€ button:

Clicking on the Connect button to proceed building our Chainlink NFT

After successfully connecting our wallet, the โ€œConnect Walletโ€ button changes to โ€œConnectedโ€. Then, we can use the โ€œMint!โ€ and โ€œGet My NFTsโ€ buttons. The first one will trigger our smart contract and mint one of the three random NFTs we used as examples. It will also assign ownership to the connected Web3 wallet. Since minting an NFT requires an on-chain transaction, the โ€œMint!โ€ button triggers MetaMask, where we need to confirm the minting transaction and cover the gas fees:

Confirm button on MetaMask and the Build Chainlink NFT button on our landing page

If we hit the โ€œGet My NFTsโ€ button, our dapp displays all the NFTs owned by the connected wallets that were minted using this projectโ€™s smart contract at the bottom of the page. For example, this connected wallet owns two NFTs:

Chainlink NFTs outlined neatly on our app

Exploring Chainlink and NFTs

If you want to learn the ins and outs of NFTs, we recommend you dive into the โ€œNFTโ€ content that awaits you on the Moralis blog. There, youโ€™ll be able to explore the basics as well as more detailed aspects, such as learning about the difference between the ERC721 and ERC1155 token standards. When it comes to exploring Chainlink and its products, the official Chainlink website and the Chainlink documentation are the resources to use. However, you can use the following sections to cover the essential basics to make the most out of todayโ€™s Chainlink NFT tutorial. 

What is Chainlink?

Chainlink is a decentralized network of oracles built on the Ethereum blockchain. The core purpose of Chainlink is to facilitate the transfer of tamper-proof data from off-chain sources (real-world data) to on-chain smart contracts. Tamper-proof inputs, outputs, and computations that Chainlink provides support advanced smart contracts. Thanks to Chainlink, traditional systems can connect to the emerging blockchain industry. This can generate more security, efficiency, and transparency in social and business processes. Chainlink oracles collectively retrieve data from multiple sources, aggregate it, and deliver a validated, single data point to the smart contract to trigger its execution. As a result, it removes any centralized point of failure.

Current Chainlink products include market and data feeds, VRF, automation, proof of reserve, and cross-chain bridging (CCIP). They offer countless use cases, including randomizing NFTs, as utilized in our example project above.  

What is a Chainlink NFT?

A Chainlink NFT is a non-fungible token whose creation somehow involves Chainlink. On the one hand, this means that a Chainlink NFT uses one of Chainlinkโ€™s products, such as VRF, in its creation process. This is the type of NFT we created in todayโ€™s tutorial. Here are two examples of NFTs utilizing Chainlink:

  • Utilizing Chainlinkโ€™s market and data feed:
Showing an off-chain NFT from Chainlink and its structure
  • Utilizing Chainlinkโ€™s VRF:
NFT structure from a token using Chainlink VRF

On the other hand, a Chainlink NFT can also be a non-fungible token that was created by the Chainlink core team or another Chainlink-associated party. These kinds of Chainlink NFTs typically include Chainlink trademarks, such as the logo. Hereโ€™s an example:

Four Chainlink NFTs in a row

Exploring โ€œChainlink Build Deploy NFTโ€ Tools

If you followed along in the above tutorial, you used several powerful Web3 development tools that all play a vital role in the โ€œChainlink build deploy NFTโ€ feat. So, letโ€™s quickly cover each of those tools:

  • Chainlink VRF โ€“ This is one of Chainlinkโ€™s products that provides cryptographically secure randomness. It is the tool to use whenever you want to introduce true randomness into blockchain-based projects.
  • MetaMask โ€“ MetaMask is the leading Web3 wallet that comes in the form of a mobile application and browser extension. The latter is also a must-have tool for Web3 devs. It enables you to connect to dapps, confirm on-chain transactions when deploying or interacting with smart contracts, send and receive crypto assets, and more. As such, MetaMask is an important โ€œChainlink build deploy NFTโ€ tool.  
  • Visual Studio Code (VSC) โ€“ VSC is arguably the most popular IDE and code editor.
  • Brownie โ€“ Brownie is a Python-based development and testing framework. It enables you to create, deploy, verify, and test smart contracts that target Ethereum Virtual Machine (EVM).
  • Remix โ€“ Remix is an online IDE that enables you to write, deploy, verify, and interact with smart contracts using your favorite browser. 
  • Ethereum Faucet โ€“ An Ethereum faucet is a crypto faucet providing โ€œtestโ€ crypto assets for Ethereum testnets. For example, in todayโ€™s tutorial, we focused on the Goerli testnet. If youโ€™d like more info on Goerli, check our guide exploring how to get Goerli ETH.  
  • Moralis โ€“ Moralis is the ultimate Web3 API provider that empowers you to create all sorts of dapps the easy way. That said, Moralis specializes in tools needed by crypto wallets and portfolio trackers. Moralis offers the Web3 Auth API, Web3 Streams API (for smart contract and crypto wallet monitoring), and the ultimate Web3 Data API. Whatโ€™s more, they are all accessible with a free Moralis account. 
Moralis Documentation page - How to Build a Chainlink NFT

Chainlink NFT Tutorial โ€“ How to Build a Chainlink NFT โ€“ Summary

In todayโ€™s article, you had an opportunity to build a Chainlink NFT minting dapp that uses an array of NFT-representing files and metadata files. You now know that you can complete this challenge with the following five steps:

  1. Set up your Chainlink VRF.
  2. Write your unique smart contract script in Solidity or copy our template.
  3. Prepare the NFT-representing and metadata files and upload them to IPFS or use our example files.
  4. Deploy your Solidity smart contract that can build a Chainlink NFT.  
  5. Build frontend and backend portions of an NFT minting dapp that ties it all together. 

In addition to our Chainlink NFT tutorial, we also explained what Chainlink is and what a Chainlink NFT is. Also, we covered the gist of the tools required to build a Chainlink NFT. With the skills and knowledge obtained herein, you should be ready to create your own randomized non-fungible tokens. 

If you want to explore other blockchain development topics or tackle some beginner-friendly tutorials, make sure to visit the Moralis documentation, the Moralis YouTube channel, and the Moralis blog. Some of our latest topics cover a list of Web3 libraries, the wei to gwei conversion, and explores the โ€œcreate ERC20 tokenโ€ tutorial. Additionally, you can learn more about the Solana Python API, the Web3 get block function, the best Polygon Mumbai faucet, and much more. Last but not least, if you want to become blockchain certified, enroll in Moralis Academy. There, you should first learn more about blockchain and Bitcoin fundamentals.   



Read More: moralis.io

Tags: BuildChainlinkNFTTutorialweb 3.0Web3
ADVERTISEMENT

Recent

NFT founder stole millions from Bitcoin project, investors allege

NFT founder stole millions from Bitcoin project, investors allege

May 15, 2025
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

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,704)
  • 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

    NFT founder stole millions from Bitcoin project, investors allege

    NFT founder stole millions from Bitcoin project, investors allege

    May 15, 2025
    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

    ยฉ 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,544.00
    • ethereumEthereum (ETH) $ 2,578.45
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.51
    • bnbBNB (BNB) $ 649.29
    • solanaSolana (SOL) $ 173.87
    • usd-coinUSDC (USDC) $ 0.999907
    • dogecoinDogecoin (DOGE) $ 0.229525
    • cardanoCardano (ADA) $ 0.787128
    • tronTRON (TRX) $ 0.272395
    • staked-etherLido Staked Ether (STETH) $ 2,577.41
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 102,553.00
    • suiSui (SUI) $ 3.81
    • chainlinkChainlink (LINK) $ 16.60
    • wrapped-stethWrapped stETH (WSTETH) $ 3,095.94
    • avalanche-2Avalanche (AVAX) $ 24.34
    • stellarStellar (XLM) $ 0.300953
    • shiba-inuShiba Inu (SHIB) $ 0.000015
    • hedera-hashgraphHedera (HBAR) $ 0.202649
    • hyperliquidHyperliquid (HYPE) $ 24.72
    • leo-tokenLEO Token (LEO) $ 8.87
    • the-open-networkToncoin (TON) $ 3.22
    • bitcoin-cashBitcoin Cash (BCH) $ 394.52
    • litecoinLitecoin (LTC) $ 98.82
    • polkadotPolkadot (DOT) $ 4.88
    • usdsUSDS (USDS) $ 0.999869
    • wethWETH (WETH) $ 2,580.33
    • moneroMonero (XMR) $ 343.63
    • pi-networkPi Network (PI) $ 0.879906
    • wrapped-eethWrapped eETH (WEETH) $ 2,749.08
    • pepePepe (PEPE) $ 0.000014
    • bitget-tokenBitget Token (BGB) $ 4.74
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 0.998825
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 102,634.00
    • whitebitWhiteBIT Coin (WBT) $ 30.26
    • uniswapUniswap (UNI) $ 6.54
    • bittensorBittensor (TAO) $ 434.35
    • daiDai (DAI) $ 1.00
    • nearNEAR Protocol (NEAR) $ 2.96
    • aptosAptos (APT) $ 5.65
    • aaveAave (AAVE) $ 226.44
    • okbOKB (OKB) $ 53.89
    • ondo-financeOndo (ONDO) $ 0.989220
    • jito-staked-solJito Staked SOL (JITOSOL) $ 209.17
    • kaspaKaspa (KAS) $ 0.115993
    • ethereum-classicEthereum Classic (ETC) $ 19.46
    • internet-computerInternet Computer (ICP) $ 5.52
    • tokenize-xchangeTokenize Xchange (TKX) $ 36.18
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00
    • bitcoinBitcoin (BTC) $ 102,544.00
    • ethereumEthereum (ETH) $ 2,578.45
    • tetherTether (USDT) $ 1.00
    • xrpXRP (XRP) $ 2.51
    • bnbBNB (BNB) $ 649.29
    • solanaSolana (SOL) $ 173.87
    • usd-coinUSDC (USDC) $ 0.999907
    • dogecoinDogecoin (DOGE) $ 0.229525
    • cardanoCardano (ADA) $ 0.787128
    • tronTRON (TRX) $ 0.272395
    • staked-etherLido Staked Ether (STETH) $ 2,577.41
    • wrapped-bitcoinWrapped Bitcoin (WBTC) $ 102,553.00
    • suiSui (SUI) $ 3.81
    • chainlinkChainlink (LINK) $ 16.60
    • wrapped-stethWrapped stETH (WSTETH) $ 3,095.94
    • avalanche-2Avalanche (AVAX) $ 24.34
    • stellarStellar (XLM) $ 0.300953
    • shiba-inuShiba Inu (SHIB) $ 0.000015
    • hedera-hashgraphHedera (HBAR) $ 0.202649
    • hyperliquidHyperliquid (HYPE) $ 24.72
    • leo-tokenLEO Token (LEO) $ 8.87
    • the-open-networkToncoin (TON) $ 3.22
    • bitcoin-cashBitcoin Cash (BCH) $ 394.52
    • litecoinLitecoin (LTC) $ 98.82
    • polkadotPolkadot (DOT) $ 4.88
    • usdsUSDS (USDS) $ 0.999869
    • wethWETH (WETH) $ 2,580.33
    • moneroMonero (XMR) $ 343.63
    • pi-networkPi Network (PI) $ 0.879906
    • wrapped-eethWrapped eETH (WEETH) $ 2,749.08
    • pepePepe (PEPE) $ 0.000014
    • bitget-tokenBitget Token (BGB) $ 4.74
    • binance-bridged-usdt-bnb-smart-chainBinance Bridged USDT (BNB Smart Chain) (BSC-USD) $ 0.998825
    • ethena-usdeEthena USDe (USDE) $ 1.00
    • coinbase-wrapped-btcCoinbase Wrapped BTC (CBBTC) $ 102,634.00
    • whitebitWhiteBIT Coin (WBT) $ 30.26
    • uniswapUniswap (UNI) $ 6.54
    • bittensorBittensor (TAO) $ 434.35
    • daiDai (DAI) $ 1.00
    • nearNEAR Protocol (NEAR) $ 2.96
    • aptosAptos (APT) $ 5.65
    • aaveAave (AAVE) $ 226.44
    • okbOKB (OKB) $ 53.89
    • ondo-financeOndo (ONDO) $ 0.989220
    • jito-staked-solJito Staked SOL (JITOSOL) $ 209.17
    • kaspaKaspa (KAS) $ 0.115993
    • ethereum-classicEthereum Classic (ETC) $ 19.46
    • internet-computerInternet Computer (ICP) $ 5.52
    • tokenize-xchangeTokenize Xchange (TKX) $ 36.18
    • blackrock-usd-institutional-digital-liquidity-fundBlackRock USD Institutional Digital Liquidity Fund (BUIDL) $ 1.00