Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.53 KB

README.md

File metadata and controls

55 lines (39 loc) · 1.53 KB

ICON Nft Rarity

ICON Nft Rarity is the tool to find out how rare an ICON NFT is.

Features

  • Built on ICON blockchain
  • Listing ranking collections from Craft Network.
  • Filtering NFTs by traits
  • Sorting NFTs by Rank and ID
  • NFTs data analysis: create collection data by crawling NFT metadata, analyze NFTs rarity score (Rarity Score is based on the article)

Video Demo

ICON Metaverse Gallery Demo

Live Demo

https://icon-nft-rarity-app.herokuapp.com

Screenshots

Getting Started

  1. Install node modules
  2. Init collection data
  • Create collection raw data in data folder
    cd api
    node data-tool.js create --contract <collection-contract-address>
    
    params: --fromId --toId is optional
  • Analyze to transform collection raw data to rarity data in data folder
    cd api
    node data-tool.js analyze --contract <collection-contract-address>
    
  1. Start API server side

    cd api
    npm start
    
  2. Start App client side

    cd app
    npm start