Tezos · Schema

EntrypointInterface

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
name string Entrypoint name
parameterSchema object JSON Schema of the entrypoint parameter in humanified format (as returned by API)
View JSON Schema on GitHub

JSON Schema

entrypointinterface.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EntrypointInterface",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "description": "Entrypoint name"
    },
    "parameterSchema": {
      "description": "JSON Schema of the entrypoint parameter in humanified format (as returned by API)",
      "nullable": true
    }
  }
}