Blockchain

GetStakersByValidatorAddress

Fetches all stakers for a given validator. IMPORTANT: This operation iterates over all stakers of the staking contract and thus is extremely computationally expensive.

const res = await fetch("http://127.0.0.1:8648", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
  jsonrpc: "2.0",
  method: "getStakersByValidatorAddress",
  params: ["address"],
  id: 1
})
});
const data = await res.json();

Parameters

PropType / Default
address
string

Returns

PropType / Default
returnValue
array

On this page