Cardano · Schema

Pool Delegators

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

pool-delegators.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/pool_delegators",
  "title": "Pool Delegators",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "address": {
        "type": "string",
        "description": "Bech32 encoded stake addresses"
      },
      "live_stake": {
        "type": "string",
        "description": "Currently delegated amount"
      }
    },
    "required": [
      "address",
      "live_stake"
    ]
  },
  "example": [
    {
      "address": "stake1ux4vspfvwuus9uwyp5p3f0ky7a30jq5j80jxse0fr7pa56sgn8kha",
      "live_stake": "1137959159981411"
    },
    {
      "address": "stake1uylayej7esmarzd4mk4aru37zh9yz0luj3g9fsvgpfaxulq564r5u",
      "live_stake": "16958865648"
    },
    {
      "address": "stake1u8lr2pnrgf8f7vrs9lt79hc3sxm8s2w4rwvgpncks3axx6q93d4ck",
      "live_stake": "18605647"
    }
  ]
}