validatorAddresses
POST
itc_getElectedValidatorAddresses
The itc_getElectedValidatorAddresses
method is crucial for retrieving the list of elected validator addresses within the blockchain network. Validators play a key role in ensuring the integrity and stability of the decentralized system by participating in the consensus mechanism.
URL
https://testnet.intelchain.network/
Parameters
None
: No input parameters are required. The API automatically fetches the relevant data for the current epoch.
Result
Array of String
: Each string represents the wallet address of an elected validator.
HEADERS
Content Type
: application/json
Body
{
"jsonrpc": "2.0",
"id": 1,
"method": "itc_getElectedValidatorAddresses",
"params": []
}
Example Request
curl --location 'https://testnet.intelchain.network' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "itc_getElectedValidatorAddresses",
"params": []
}'
Example Response
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}