Rocket Pool · Schema

RocketPoolNode

A registered Rocket Pool node operator, including its RPL stake, ETH-matched limits, and smoothing pool participation.

BlockchainEthereumLiquid StakingProof of StakeDeFiSmart ContractsNode OperatorsValidatorrETHRPLMinipoolDecentralized FinanceDecentralized GovernanceDAOWeb3

Properties

Name Type Description
address string
registrationTime string
timezone string
withdrawalAddress string
rplWithdrawalAddress string
rplStake string
effectiveRplStake string
minimumRplStake string
maximumRplStake string
ethMatched string
ethMatchedLimit string
minipoolCount integer
smoothingPoolRegistered boolean
View JSON Schema on GitHub

JSON Schema

rocket-pool-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/rocket-pool/main/json-schema/rocket-pool-node-schema.json",
  "title": "RocketPoolNode",
  "description": "A registered Rocket Pool node operator, including its RPL stake, ETH-matched limits, and smoothing pool participation.",
  "type": "object",
  "required": ["address", "registrationTime"],
  "properties": {
    "address": {
      "type": "string",
      "pattern": "^0x[a-fA-F0-9]{40}$"
    },
    "registrationTime": {
      "type": "string",
      "format": "date-time"
    },
    "timezone": {
      "type": "string"
    },
    "withdrawalAddress": {
      "type": "string",
      "pattern": "^0x[a-fA-F0-9]{40}$"
    },
    "rplWithdrawalAddress": {
      "type": "string",
      "pattern": "^0x[a-fA-F0-9]{40}$"
    },
    "rplStake": {
      "type": "string"
    },
    "effectiveRplStake": {
      "type": "string"
    },
    "minimumRplStake": {
      "type": "string"
    },
    "maximumRplStake": {
      "type": "string"
    },
    "ethMatched": {
      "type": "string"
    },
    "ethMatchedLimit": {
      "type": "string"
    },
    "minipoolCount": {
      "type": "integer",
      "minimum": 0
    },
    "smoothingPoolRegistered": {
      "type": "boolean"
    }
  }
}