OpenSea · Schema

DropDeployRequest

Deploy contract request parameters

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
chain string Chain slug (e.g. "ethereum", "base")
contract_name string Name for the new contract
contract_symbol string Symbol for the new contract
drop_type string Drop type (see validation error for supported values)
token_type string Token type (see validation error for supported values)
sender string Deployer wallet address
View JSON Schema on GitHub

JSON Schema

DropDeployRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/DropDeployRequest",
  "title": "DropDeployRequest",
  "type": "object",
  "description": "Deploy contract request parameters",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain slug (e.g. \"ethereum\", \"base\")",
      "example": "ethereum",
      "minLength": 1
    },
    "contract_name": {
      "type": "string",
      "description": "Name for the new contract",
      "example": "My NFT Collection",
      "minLength": 1
    },
    "contract_symbol": {
      "type": "string",
      "description": "Symbol for the new contract",
      "example": "MNFT",
      "minLength": 1
    },
    "drop_type": {
      "type": "string",
      "description": "Drop type (see validation error for supported values)",
      "example": "seadrop_v1_erc721",
      "minLength": 1
    },
    "token_type": {
      "type": "string",
      "description": "Token type (see validation error for supported values)",
      "example": "erc721_standard",
      "minLength": 1
    },
    "sender": {
      "type": "string",
      "description": "Deployer wallet address",
      "example": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "minLength": 1
    }
  },
  "required": [
    "chain",
    "contract_name",
    "contract_symbol",
    "drop_type",
    "sender",
    "token_type"
  ]
}