OpenSea · Schema

DropDeployReceiptResponse

Deploy contract receipt status

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
status string Deployment status: pending, success, or failed
contract_address string Deployed contract address (only present on success)
chain string Chain slug (only present on success)
collection_slug string Linked collection slug (only present on success, may take time to materialize)
View JSON Schema on GitHub

JSON Schema

DropDeployReceiptResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/DropDeployReceiptResponse",
  "title": "DropDeployReceiptResponse",
  "type": "object",
  "description": "Deploy contract receipt status",
  "properties": {
    "status": {
      "type": "string",
      "description": "Deployment status: pending, success, or failed",
      "example": "success"
    },
    "contract_address": {
      "type": "string",
      "description": "Deployed contract address (only present on success)"
    },
    "chain": {
      "type": "string",
      "description": "Chain slug (only present on success)"
    },
    "collection_slug": {
      "type": "string",
      "description": "Linked collection slug (only present on success, may take time to materialize)"
    }
  },
  "required": [
    "status"
  ]
}