Avalanche · Schema

ActiveDelegatorDetails

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
txHash string
nodeId string
rewardAddresses array
amountDelegated string
delegationFee string
startTimestamp number
endTimestamp number
estimatedGrossReward string
estimatedNetReward string
delegationStatus string
View JSON Schema on GitHub

JSON Schema

ActiveDelegatorDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ActiveDelegatorDetails.json",
  "title": "ActiveDelegatorDetails",
  "type": "object",
  "properties": {
    "txHash": {
      "type": "string"
    },
    "nodeId": {
      "type": "string"
    },
    "rewardAddresses": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "amountDelegated": {
      "type": "string"
    },
    "delegationFee": {
      "type": "string"
    },
    "startTimestamp": {
      "type": "number"
    },
    "endTimestamp": {
      "type": "number"
    },
    "estimatedGrossReward": {
      "type": "string"
    },
    "estimatedNetReward": {
      "type": "string"
    },
    "delegationStatus": {
      "type": "string",
      "enum": [
        "active"
      ]
    }
  },
  "required": [
    "txHash",
    "nodeId",
    "rewardAddresses",
    "amountDelegated",
    "delegationFee",
    "startTimestamp",
    "endTimestamp",
    "estimatedGrossReward",
    "estimatedNetReward",
    "delegationStatus"
  ]
}