Skip to main content

overview

POST itc_getAllValidatorAddresses

The itc_getAllValidatorAddresses method is a JSON-RPC API endpoint that returns a list of all wallet addresses that have created validators on the blockchain. Validators are essential for processing transactions, securing the network, and maintaining consensus.

URL

https://testnet.intelchain.network/

Parameter

This method does not require any parameters. The request is straightforward, as it simply retrieves the list of all validator addresses.

Result

Array of String : The response is an array of strings, where each string represents a validator's wallet address.

HEADERS

Content Type : application/json

Body

{
"jsonrpc": "2.0",
"id": 1,
"method": "itc_getAllValidatorAddresses",
"params": []
}

Example Request

curl --location 'https://testnet.intelchain.network' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "itc_getAllValidatorAddresses",
"params": []
}'

Example Response

{
"jsonrpc": "2.0",
"id": 1,
"result": []
}