Cardano · Schema

Stake

Stake represents the stakes of a participant in the Cardano chain

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
stake integer Stake share as computed in the 'stake distribution' by the Cardano Node, multiplied by a billion (1.0e9)
View JSON Schema on GitHub

JSON Schema

Stake.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/Stake",
  "title": "Stake",
  "description": "Stake represents the stakes of a participant in the Cardano chain",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "stake"
  ],
  "properties": {
    "stake": {
      "description": "Stake share as computed in the 'stake distribution' by the Cardano Node, multiplied by a billion (1.0e9)",
      "type": "integer",
      "format": "int64"
    }
  },
  "example": {
    "stake": 1234
  }
}