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
  1. Features

Function Driven

Solana Suite provides what you want to do on a function basis. It is easy for beginners because it can be achieved by calling a single function.

The usage is as follows

"Module Name"."Function Name"

Transfer SOL

SolNative.transfer();

Mint SPL-TOKEN

SplToken.mint();

Mint cNFT

CompressedNft.mint();

Find NFT

RegularNft.find();
PreviousInstallNextResult Type

Last updated 1 year ago