Solana Suite Develpoment Guide
  • Overview
  • Features
    • Install
    • Function Driven
    • Result Type
    • Configuring settings
  • Usage
    • Airdrop in devnet
    • Compressed NFT(cNGFT)
      • Overview
      • Create a space
      • Calculate a space
      • Mint a collection
      • Mint the cNFT
    • Upload to decentrized storage
  • API Reference
  • Github
Powered by GitBook
On this page
  • Modules
  • How to install
  • exmple
  1. Features

Install

Solana Suite library can install npm, yarn, pnpm

Modules

Name
Description

@solana-suite/airdrop

SOL faucet for devnet, testnet

@solana-suite/config

Configuration tool

@solana-suite/compressed-nft

cNFT mint, find, transfer, gas-less

@solana-suite/memo

add Memo in SPL-TOKEN, find memo

@solana-suite/multisig

SOL, SPL-TOKEN multisig module

@solana-suite/phantom

Phantom API

@solana-suite/regular-nft

NFT mint, find, transfer, gas-less

@solana-suite/sol-native

SOL find, transfer, gas-less

@solana-suite/storage

Decentrized storage: nft.storage, Arweave

@solana-suite/spl-token

SPL-TOKEN mint, find, transfer, gas-less

How to install

Replace {Module Name} with the name of the module you want to use from the list above.

npm i {Module Name}
yarn add {Module Name}
pnpm add {Module Name}

exmple

// use SPL-TOKEN

npm i @solana-suite/spl-token
PreviousFeaturesNextFunction Driven

Last updated 1 year ago