solana-developers / compressed-nfts

Example code to use compressed NFTs (using state compression) on Solana
120 stars 37 forks source link
compressed-nfts compression metaplex nfts solana state-compression

State Compression and Compressed NFTs

At a high level, state compression is a technique in which off-chain data is secured by the Solana ledger, using a hashing algorithm to "fingerprint" the off-chain data and storing it inside a special on-chain Merkle tree, called a Concurrent Merkle Tree.

With this technology, compressed NFTs can be created on-chain in a similar manner as before, but for a fraction of the cost as before. As a frame of reference of on-chain cost reduction, take a 1 million NFT collection:

Quick links to learn more

Tech stack of this repo

Setup locally

  1. Clone this repo to your local system
  2. Install the packages via yarn install
  3. Rename the example.env file to be named .env
  4. Update the RPC_URL variable to be the cluster URL of a supporting RPC provider

If you have the Solana CLI installed locally: update the LOCAL_PAYER_JSON_ABSPATH environment variable to be the absolute path of your local testing wallet keypair JSON file.

Recommended flow to explore this repo

After setting up locally, I recommend exploring the code of the following files (in order):

  1. ./scripts/verboseCreateAndMint.ts
  2. ./scripts/fetchNFTsByOwner.ts
  3. ./scripts/transferNFT.ts

After reviewing the code, then running each of these scripts in the same order.

Note: Running each of these scripts will save some bits of data to a .local_keys folder within this repo for use by the other scripts later in this ordered list. Therefore, running them in a different order will result in them not working as written. You have been warned :)

Running the included Scripts

Once you're setup locally, you will be able to run the scripts included within this repo:

yarn demo ./scripts/<script>

scripts/createAndMint.ts

Performs all the following actions:

scripts/verboseCreateAndMint.ts

Functionally the same as scripts/createAndMint.ts. This script adds extra console logging and comments for explanation purposes.

scripts/fetchNFTsByOwner.ts

Uses the ReadApi fetchAssetsByOwner method to fetch the NFTs owners by the two addresses.

scripts/fetchNFTsByCollection.ts

Uses the ReadApi fetchAssetsByGroup method to fetch the NFTs belonging to the same collection, compressed or otherwise.

scripts/transferNFT.ts

Performs the complete process to transfer compressed NFTs. Specifically:

scripts/mintToCollection.ts

Mint additional compressed NFTs into an already existing collection and/or tree.

Metaplex sdk examples

This repo also contains code examples of how to use the @metaplex-foundation/js sdk to work with compressed NFTs, including reading and transferring them.

After setting up locally, I recommend exploring the code of the following metaplex specific files (in order):

  1. ./metaplex/mintToCollection.ts
  2. ./metaplex/transferNFT.ts
  3. ./metaplex/fetchNFTsByOwner.ts
  4. ./metaplex/simpleProofVerification.ts

metaplex/mintToCollection.ts

Mint a single compressed NFT to an existing tree and collection, using the metaplex sdk. This requires you to create your tree and collection ahead of time. See the ./scripts/verboseCreateAndMint.ts script for details on how to create a tree and collection.

metaplex/transferNFT.ts

Transfer a compressed NFT using the metaplex sdk. This method only requires you to know the assetId of the compressed NFT to transfer.

metaplex/fetchNFTsByOwner.ts

Uses the ReadApi fetchAssetsByOwner method to fetch the NFTs owned by a single address.

metaplex/fetchNFTsByGroup.ts

Uses the ReadApi fetchAssetsByGroup method to fetch the NFTs belonging to the same collection, compressed or otherwise.

metaplex/simpleProofVerification.ts

Mint additional compressed NFTs into an already existing collection and/or tree.

Resources on State Compression and Compressed NFTS