OpenSea · Schema

DropDeployResponse

Ready-to-sign deploy contract transaction data

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
to string Transaction target contract address
data string Encoded transaction data (hex)
value string Transaction value in wei (hex)
chain string Chain identifier
View JSON Schema on GitHub

JSON Schema

DropDeployResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/DropDeployResponse",
  "title": "DropDeployResponse",
  "type": "object",
  "description": "Ready-to-sign deploy contract transaction data",
  "properties": {
    "to": {
      "type": "string",
      "description": "Transaction target contract address"
    },
    "data": {
      "type": "string",
      "description": "Encoded transaction data (hex)"
    },
    "value": {
      "type": "string",
      "description": "Transaction value in wei (hex)"
    },
    "chain": {
      "type": "string",
      "description": "Chain identifier"
    }
  },
  "required": [
    "chain",
    "data",
    "to",
    "value"
  ]
}