create_collection
Create a new NFT collection by specifying name, symbol, and type (ERC721 or ERC1155) to establish a foundation for digital asset management.
Instructions
Create a new NFT collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Collection name (3-30 characters, letters, numbers, and [_.-] symbols) | |
symbol | Yes | Collection symbol (3-30 characters, letters, numbers, and underscores) | |
type | Yes | Collection type: ERC721 (single NFTs) or ERC1155 (multi-token) |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Collection name (3-30 characters, letters, numbers, and [_.-] symbols)",
"maxLength": 30,
"minLength": 3,
"type": "string"
},
"symbol": {
"description": "Collection symbol (3-30 characters, letters, numbers, and underscores)",
"maxLength": 30,
"minLength": 3,
"type": "string"
},
"type": {
"description": "Collection type: ERC721 (single NFTs) or ERC1155 (multi-token)",
"enum": [
"ERC721",
"ERC1155"
],
"type": "string"
}
},
"required": [
"name",
"symbol",
"type"
],
"type": "object"
}