Tezos · Schema

OriginatedContract

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
kind string Kind of the contract (`delegator_contract` or `smart_contract`), where `delegator_contract` - manager.tz smart contract for delegation purpose only
alias string Name of the project behind the contract or contract description
address string Public key hash of the contract
typeHash integer 32-bit hash of the contract parameter and storage types. This field can be used for searching similar contracts (which have the same interface).
codeHash integer 32-bit hash of the contract code. This field can be used for searching same contracts (which have the same script).
tzips array List of implemented standards (TZIPs)
View JSON Schema on GitHub

JSON Schema

originatedcontract.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OriginatedContract",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "kind": {
      "type": "string",
      "description": "Kind of the contract (`delegator_contract` or `smart_contract`),\nwhere `delegator_contract` - manager.tz smart contract for delegation purpose only"
    },
    "alias": {
      "type": "string",
      "description": "Name of the project behind the contract or contract description",
      "nullable": true
    },
    "address": {
      "type": "string",
      "description": "Public key hash of the contract"
    },
    "typeHash": {
      "type": "integer",
      "description": "32-bit hash of the contract parameter and storage types.\nThis field can be used for searching similar contracts (which have the same interface).",
      "format": "int32"
    },
    "codeHash": {
      "type": "integer",
      "description": "32-bit hash of the contract code.\nThis field can be used for searching same contracts (which have the same script).",
      "format": "int32"
    },
    "tzips": {
      "type": "array",
      "description": "List of implemented standards (TZIPs)",
      "nullable": true,
      "items": {
        "type": "string"
      }
    }
  }
}