platform.getPendingValidators
List the validators in the pending validator set of the specified Subnet. Each validator is not currently validating the Subnet but will in the future.
This method will use 10
Compute Units.
Reference: Here
Parameters
nodeIDs
- []string - (optional) a list of the nodeIDs of pending validators to request. If omitted, all pending validators are returned. If a specified nodeID is not in the set of pending validators, it will not be included in the response.subnetID
(optional) The subnet whose current validators are returned. If omitted, returns the current validators of the Primary Network.
Returns
delegators
- objecttxID
- string - the validator transaction.startTime
- string - the Unix time when the validator starts.endTime
- string - the Unix time when the validator stops.stakeAmount
- string - (optional) the amount of nAVAX this validator staked. Omitted if subnetID is not the Primary Network.nodeID
- string - (optional) the validating node’s node ID.
validators - object
weight - string - (optional) the validator’s weight when sampling validators. Omitted if subnetID is the Primary Network.
connected - bool - (optional) if the node is connected.
nodeID - string - (optional) the validator’s node ID.
stakeAmount - string - (optional) the amount of nAVAX this validator staked. Omitted if subnetID is not the Primary Network.
endTime - string - the Unix time when the validator stops validating the Subnet.
startTime - string - the Unix time when the validator starts validating the Subnet.
txID - string - the validator transaction.
Last updated