Tezos · Schema

DelegateInfo

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
alias string Name of the baking service
address string Public key hash of the delegate (baker)
active boolean Delegation status (`true` - active, `false` - deactivated)
View JSON Schema on GitHub

JSON Schema

delegateinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DelegateInfo",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "alias": {
      "type": "string",
      "description": "Name of the baking service",
      "nullable": true
    },
    "address": {
      "type": "string",
      "description": "Public key hash of the delegate (baker)"
    },
    "active": {
      "type": "boolean",
      "description": "Delegation status (`true` - active, `false` - deactivated)"
    }
  }
}