We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getCurrentValidators
The code at https://docs.avax.network/reference/avalanchego/p-chain/api#platformgetcurrentvalidators is missing, it probably has been moved so I cannot edit it edit: okay it has been migrated as part of 2f245e557849cafbf562367b088d5fc0abc77cae And the response of platform.getCurrentValidators is wrong, here is the correct one:
2f245e557849cafbf562367b088d5fc0abc77cae
platform.getCurrentValidators
platform.getCurrentValidators({ subnetID: string, // optional nodeIDs: string[], // optional }) -> { validators: []{ txID: string, startTime: string, endTime: string, weight: string, nodeID: string, stakeAmount: string, rewardOwner: { locktime: string, threshold: string, addresses: string[] }, validationRewardOwner: { locktime: string, threshold: string, addresses: string[] }, delegationRewardOwner: { locktime: string, threshold: string, addresses: string[] }, potentialReward: string, accruedDelegateeReward: string, delegationFee: string, uptime: string, connected: bool, signer: { publicKey: string, proofOfPosession: string }, // optional delegatorCount: string, delegatorWeight: string } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The code at https://docs.avax.network/reference/avalanchego/p-chain/api#platformgetcurrentvalidators is missing, it probably has been moved so I cannot edit it
edit: okay it has been migrated as part of
2f245e557849cafbf562367b088d5fc0abc77cae
And the response of
platform.getCurrentValidators
is wrong, here is the correct one:The text was updated successfully, but these errors were encountered: