Tezos · Schema

NonExistingContractError

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
View JSON Schema on GitHub

JSON Schema

nonexistingcontracterror.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NonExistingContractError",
  "allOf": [
    {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": {
          "type": "string",
          "description": "Type of an error, `contract.non_existing_contract` - the operation was sent to non-existent contract\nhttps://tezos.gitlab.io/api/errors.html - full list of errors"
        },
        "contract": {
          "type": "string",
          "description": "Public key hash of the account to which in the operation tried to send to"
        }
      }
    }
  ]
}