Tezos · Schema

NonceRevelationOperation

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket
View JSON Schema on GitHub

JSON Schema

noncerevelationoperation.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NonceRevelationOperation",
  "allOf": [
    {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "type": {
          "type": "string",
          "description": "Type of the operation, `nonce_revelation` - are used by the blockchain to create randomness"
        },
        "id": {
          "type": "integer",
          "description": "Unique ID of the operation, stored in the TzKT indexer database",
          "format": "int64"
        },
        "level": {
          "type": "integer",
          "description": "The height of the block from the genesis block, in which the operation was included",
          "format": "int32"
        },
        "timestamp": {
          "type": "string",
          "description": "Datetime of the block, in which the operation was included (ISO 8601, e.g. `2020-02-20T02:40:57Z`)",
          "format": "date-time"
        },
        "block": {
          "type": "string",
          "description": "Hash of the block, in which the operation was included"
        },
        "hash": {
          "type": "string",
          "description": "Hash of the operation"
        },
        "baker": {
          "description": "Information about the delegate (baker), who produced the block with the operation",
          "oneOf": [
            {
              "$ref": "#/components/schemas/Alias"
            }
          ]
        },
        "sender": {
          "description": "Information about the delegate (baker), who revealed the nonce (sent the operation)",
          "oneOf": [
            {
              "$ref": "#/components/schemas/Alias"
            }
          ]
        },
        "revealedLevel": {
          "type": "integer",
          "description": "Block height of the block, where seed nonce hash is stored",
          "format": "int32"
        },
        "revealedCycle": {
          "type": "integer",
          "description": "Cycle for which seed nonce was revealed",
          "format": "int32"
        },
        "nonce": {
          "type": "string",
          "description": "Seed nonce hex"
        },
        "rewardDelegated": {
          "type": "integer",
          "description": "Reward, corresponding to delegated stake, paid to baker's liquid balance (micro tez)\n(it is not frozen and can be spent immediately).",
          "format": "int64"
        },
        "rewardStakedOwn": {
          "type": "integer",
          "description": "Reward, corresponding to baker's own stake, paid to baker's own staked balance (micro tez)\n(it is frozen and belongs to the baker).",
          "format": "int64"
        },
        "rewardStakedEdge": {
          "type": "integer",
          "description": "Reward, corresponding to baker's edge from external stake, paid to baker's own staked balance (micro tez)\n(it is frozen and belongs to the baker).",
          "format": "int64"
        },
        "rewardStakedShared": {
          "type": "integer",
          "description": "Reward, corresponding to baker's external stake, paid to baker's external staked balance (micro tez)\n(it is frozen and belongs to baker's stakers).",
          "format": "int64"
        },
        "quote": {
          "description": "Injected historical quote at the time of operation",
          "nullable": true,
          "oneOf": [
            {
              "$ref": "#/components/schemas/QuoteShort"
            }
          ]
        }
      }
    }
  ]
}