Minteandome
  • Introduction
    • Why use minteandome?
      • Features Overview
    • Team
  • Docs
    • 📚Getting Started
      • ⛓️Supported Chains
      • ⭐Sign up
      • 📑Create SmartContract
      • NFT Collection Details
      • 🔡Create NFTs
        • Mint new NFTs
      • 🔃Evolve NFTs
        • Mint evolved NFTs
      • Casper Mint / Evolve / Burn NFT
        • Delegate mint NFTs
        • Delegate mint evolved NFTs
        • Delegate burn NFTs
      • NFTs user
    • Future of Minteandome
  • SDK
    • 💻SDK
      • ⚙️Installation
      • 🔧Usage
      • 📂Scheduler (EVM blockchains)
      • 📖Examples
        • 📔Create an SmartContract
        • 🚀Deploy an SmartContract
          • 📂Scheduled deploy (EVM blockchains)
          • ⚙️Self deploy
        • 📑Smart Contract Configuration
        • 🔣Create NFTs
        • ✨Mint NFTs
          • 📂Scheduled mint
          • 🔧Self mint
        • 🔥Burn NFTs
      • 🏙️Models
        • SmartContract
        • NFT
        • User
        • Blockchain
Powered by GitBook
On this page

Was this helpful?

  1. Docs
  2. Getting Started

Supported Chains

The list of chains supported by minteandome API

PreviousGetting StartedNextSign up

Last updated 1 year ago

Was this helpful?

BLOCKCHAIN
TYPE ENUM

Ethereum

1

Goerli (Testnet)

2

Polygon

3

Mumbai (Testnet)

4

BSC

5

BSC-Testnet (Tesnet)

6

Casper (Testnet)

7

Casper

8 (Coming soon)

There is a mandatory field in many API endpoints for specifying the blockchain we are working on. If this field is not informed, it will return an error.

{
    // Example typeBlockchain (Mumbai) field sent in a request to the API
    ...
    blockchain: 4,
    ...
}

There is also an extra validation. Testnet blockchains cannot be used outside API testnet environments. For instance, it will return an error trying to use a Polygon Blockchain (mainnet) in the testnet environment for the API.

📚
⛓️