Tezos · Schema

SplitActualStaker

TezosBlockchainTzKTBaking BadCryptocurrencySmart ContractsNFTTokensDelegationsStakingGovernanceFA1.2FA2WebSocket

Properties

Name Type Description
address string Address of the delegator
initialStake integer Staked balance at the beginning of the cycle (micro tez).
finalStake integer Staked balance at the end of the cycle (micro tez).
rewards integer Staking rewards (or losses if negative) earned during the cycle (micro tez).
View JSON Schema on GitHub

JSON Schema

splitactualstaker.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SplitActualStaker",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "address": {
      "type": "string",
      "description": "Address of the delegator"
    },
    "initialStake": {
      "type": "integer",
      "description": "Staked balance at the beginning of the cycle (micro tez).",
      "format": "int64"
    },
    "finalStake": {
      "type": "integer",
      "description": "Staked balance at the end of the cycle (micro tez).",
      "format": "int64"
    },
    "rewards": {
      "type": "integer",
      "description": "Staking rewards (or losses if negative) earned during the cycle (micro tez).",
      "format": "int64"
    }
  }
}