idexo
  • Introduction to idexo
  • Getting Started
  • Get API Key
  • NFT
    • Introduction
    • Create a Capped NFT Collection
    • Create a Uncapped NFT Collection
    • Create an Uncapped Soulbound NFT (SBT) Collection
    • Create a Capped Soulbound NFT (SBT) Collection
    • Mint a NFT
    • Mint a SBT
    • Mint a NFT With Image and Metadata In 1 Transaction
  • Project Tokens
    • Create a Project Token
    • Mint a Token
  • Storage
    • Upload Plain Text
    • Upload an HTML file
  • Request A New Blockchain Integration
  • How To Add A New Blockchain
  • Vesting
    • Create a Vesting Smart Contract
  • Utils
    • Introduction
    • Get Contract
    • Get Transactions
  • Directional Staking
    • Introduction
    • NFTMe
Powered by GitBook
On this page

Was this helpful?

  1. NFT

Create a Capped Soulbound NFT (SBT) Collection

This tutorial covers how to create an SBT collection using the idexo SDK.

PreviousCreate an Uncapped Soulbound NFT (SBT) CollectionNextMint a NFT

Last updated 2 years ago

Was this helpful?

A Soulbound NFT is one where the holder cannot transfer the NFT. Idexo first issued a Soulbound NFT with its own back in April 2021 on Binance Smart Chain.

This standard Capped SBT Collection removes the transfer function for holders and reserves it for the owner of the contract (for recovery purposes).

To use this method, you need an :

You will need to specify the network you want to use, choosing from the following network names:

  • avalanche

  • bnbchain

  • dogechain

  • ethereum

  • fantom

  • polygon

Assuming you have , you can use the following code in your file (instructions on modifying it follows):

const ido = require('idexo-sdk')

ido.NFTs.createSBTCapped(apiKey, network, name, symbol)
.then(res => console.log(res.data))
Idexo Early Adopter NFTs
idexo API key
installed the SDK