Cardano · Schema

Tx Content Mirs

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

tx-content-mirs.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/tx_content_mirs",
  "title": "Tx Content Mirs",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "pot": {
        "type": "string",
        "enum": [
          "reserve",
          "treasury"
        ],
        "example": "reserve",
        "description": "Source of MIR funds"
      },
      "cert_index": {
        "type": "integer",
        "example": 0,
        "description": "Index of the certificate within the transaction"
      },
      "address": {
        "type": "string",
        "example": "stake1u9r76ypf5fskppa0cmttas05cgcswrttn6jrq4yd7jpdnvc7gt0yc",
        "description": "Bech32 stake address"
      },
      "amount": {
        "type": "string",
        "example": "431833601",
        "description": "MIR amount in Lovelaces"
      }
    },
    "required": [
      "pot",
      "cert_index",
      "address",
      "amount"
    ]
  }
}