Cardano · Schema

Stakedistributionparty

Signer registered to a signature round.

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
party_id string The unique identifier of the signer
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

StakeDistributionParty.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/StakeDistributionParty",
  "title": "Stakedistributionparty",
  "description": "Signer registered to a signature round.\n",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "party_id": {
      "description": "The unique identifier of the signer",
      "type": "string"
    },
    "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": {
    "party_id": "1234567890",
    "stake": 1234
  }
}