Skip to content

ilmoi/awesome-solana-nfts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Awesome

πŸ¦„ Awesome Solana NFTs

A curated list of resources for builders / artists hacking NFTs on Solana.

  • βœ… Includes: open standards, protocols, OSS repos, community-built tools
  • βœ‹ Excludes: individual drops, future promises (without actual code / working product)
  • πŸ”€ Ordering: OSS before closed-source, ordered by github stars

If you see something missing - please submit a PR πŸ™

πŸ“œ NFT Open Standards

  • Metaplex Token Metadata Standard (docs) - defines NFT metadata (its structure, how it's stored on-chain / off-chain) and different types of NFTs (master editions, normal editions, one-offs, participation NFTs)
  • Burnt Finance "Collections" - a standard that proposes to start recording NFTs as part of "collections". A collection adds an NFT to an array stored in a PDA to verify it as original, and the NFT in turn signs the collection's PK to verify the addition is valid (otherwise any collection could claim the NFT is part of it).

πŸš€ NFT Issuance

  • Metaplex - a set of 4 progams that together enable NFT creators to mint and auction off their creations. Highly customizable (eg can set max mint, add attributes, decide what kind of edition you want to sell).
  • Metaplex Store (docs) - self-serve front-end for Metaplex
  • Holaplex - managed storefront for Metaplex, setup in 5 minutes
  • Candy Shop - Javascript library that allows projects to host their own escrowless, on-chain marketplace with few lines of code. Built on Metaplex auction house program
  • Metaplex Candy Machine (docs) - simple program (to use, not to build!) that issues a fixed number of NFTs at a fixed price, first come first serve. If Metaplex itself has too many knobs for you to think about, consider the Candy Machine instead.
  • Managed launchpad services - we've not tried and are not promoting either:)

🏦 Vaults

  • Token Vault (docs) - Metaplex vaults. Support fractionalization, although without built-in auctionn mechanic (you'd need to collect all the pieces manually).
  • Gem Bank (docs) - Gemworks vaults. Users deposit/withdraw, bank manager locks/unlocks. Can control what NFTs are / aren't allowed in using a whitelist of mints / creators.

πŸ“ Whitelisting

  • Gumdrop (docs) (guide) - can be used to create a whitelisted candy machine sale.
  • SPL-Airdrop - can be used to airdrop whitelist tokens to a list of addresses.

πŸ₯© Staking

  • Can deposit multiple token mints (actually useful for NFTs):
    • Gem Farm (docs) - fully OSS staking program designed for NFT projects to offer yield to their communities. Choose between fixed and variable rate, configure params like min staking time & min cooldown and much more.
  • Can deposit only a single token mint at a time:
    • Serum's Staking Program (and the UI for it) - Serum's staking program. Most complex out of the bunch, but most fully-featured (supports time-locked rewards, doesn't comingle users' funds). Users need to actively "claim" the stake by periodically clicking a button.
    • Step Finance Rewards Pool - Step Finance rewards program. "AMM-style", meaning users' funds are pooled and rewards distributed proportionally. Supports rewards in up to 2 different mints.
    • Step Finance Staking Program - Step Finance staking program. A simpler program vs the one above, only pays out in one type of token.

πŸͺ‚ Airdrops to NFT holders

  • Gumdrop (docs) (guide) - can be used to airdrop NFTs & tokens to whitelisted accounts. Users can be notified via email, SMS, or discord.
  • Air Support - set of scripts to airdrop NFTs to your following in 5 easy steps.
  • Ghetto SolAir - a guerilla tactix command lined based airdrop tool for Solana with no polish and max functionality.
  • Xin Dragons Airdroppper - Utility lib for taking Solana NFT snapshots and running token airdrops, checking token holders etc

🀝 NFT Escrows / Swaps

  • Metaplex Auction House - sell your NFT for a fixed price in a decentralized manner.
  • Metaplex Token Entangler - an escrow service that enables 2 parties to swap their NFTs.
  • Cofre - online tool for p2p NFT swaps.
  • YAWWW - another p2p escrow tool by a member of the MonkeDAO.
  • FoxySwap - P2P NFT swap service by the Famous Fox Federation team.

πŸ’Έ NFT Marketplaces

πŸ–Ό NFT Galleries

  • NftEyez - online NFT gallery.
  • solwal.io - Search and explore wallet.
  • Nftbucket - Create your own NFT gallery.
  • civic.me - NFT gallery with support for multiple wallets and customization.
  • Gallie - Curate your NFT collection to share with the world.

πŸ“… Upcoming NFT Drops

πŸ“Š NFT Data

General

  • NFT🍌APE(github code ) - 1-click tool to calculate your P&L / paperhands / diamondhands amounts
  • Moonly - Market Data,Real-time NFT Events - Solana Market Stats, FP, Trends, Marketcap
  • Solanafloor - floor insights for NFTs on Solana.
  • Solanalysis - track market cap and trading activity for Solana-based NFTs.
  • NFT FloorPrice - another app to track floor prices (shows by Marketplace).
  • Solana Seer - see floor prices for each NFT in your wallet (includes those currently selling on marketplaces).
  • CryptoSlam - useful multi-chain analytics, has all the top collections on Solana
  • Nasus - portfolio management focused NFT viewer
  • MoveMints by BridgeSplit - tracks the latest Solana NFT drops and analyzes their community growth.
  • Solens - All-in-one analytics platform to follow Solana NFT trends, smart money activity and historical data (by marketplace).
  • SolsWatch - Data Insights and charts on Solana NFT collections from the secondary marketplaces. Discover new collections as soon as they are added to the marketplaces.
  • NFT Collection's Mint Addresses - an open source GitHub repository that maps a collection name to a list of mint addresses on Solana.
  • Blockchain API - Mint NFTs, read NFTs, read/write candy machines, buy/list/delist on NFT marketplaces, and much more with the Blockchain API
  • MrBot - Real time data for all collections (floor price, last sold, volume, listed), mintbot, sniper, famousfoxes tokens metrics.

Rarity

  • How Rare Is - rarity tools for NFTs on solana.
  • Moonrank - absolute statistical rarity for solana NFTs.
  • SolTracker - has a smaller selection of projects, but works.

πŸ’§ NFT Fractionalization / Liquidity

πŸ›‘οΈ NFT Verification / Security

  • Solguard - enter the NFT mint to find out if it's part of a real collection or fake.

πŸ€– NFT Marketplace Bots

πŸ™ Community-built Tools

for Metaplex (CLIs)

  • Metaboss - rust CLI that acts as a "swiss army knife" for Metaplex (decode metadata, mint new NFTs, update metadata, and more).
  • Metaplex JS CLI - js bindings for Metaplex.
  • Metaplex Python CLI - python bindings for Metaplex.
  • Metaplex Rust CLI - another rust CLI for metaplex, similar ot Metaboss.

for Metaplex (other)

for Candy Machine

for Arweave

Multi-function

  • Solana Tools - find PDAs, ATAs, and read NFT/token metadata from a mint address.
  • Sol NFT Tools - get mints created by a creator, get metadata from a mint, get holders of a bunch of mints, upload files to arweave.
  • Skunka Tools - SPL Token generator and manager, delete token accounts, burn tokens and more features to come.

Dapp Boilerplates

  • Create Solana Dapp - Scaffolding for a Solana dapp using TS, Next.JS, Tailwinds CSS, and Daisy UI.
  • Dapp Scaffold - Scaffolding for a dapp using TS, React & Antd.
  • sol-rayz - set of tools to quickly build NFT Galleries

🦾 Generative Art Tools

βš™οΈ RPC Providers

πŸ”— Related Awesome Lists

About

A curated list of Solana NFT protocols, repos & community tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published