Skip to main content

suix_getCommitteeInfo

Returns information about the current validator committee for a specific epoch on the Sui network.

Overview​

The suix_getCommitteeInfo method provides detailed information about the validator committee for a given epoch. This includes the complete list of validators, their voting power, stake distribution, and committee composition. The committee information is essential for understanding network governance, validator participation, and consensus mechanisms on Sui.

Parameters​

ParameterTypeRequiredDescription
epochstringNoThe epoch to query committee info for (defaults to current epoch)

Epoch Parameter​

  • If not provided, returns committee info for the current epoch
  • Must be a valid epoch number as a string
  • Historical epoch data may have retention limits

Returns​

Returns comprehensive committee information for the specified epoch.

FieldTypeDescription
epochstringThe epoch number for this committee
validatorsarrayArray of validator objects with details
totalStakestringTotal stake delegated to all validators
quorumThresholdstringMinimum stake needed for consensus quorum

Validator Object Structure​

Each validator in the committee contains:

FieldTypeDescription
authorityPubkeyBytesstringValidator's authority public key
networkPubkeyBytesstringNetwork public key for consensus
accountAddressstringValidator's Sui address
networkAddressstringNetwork endpoint address
hostnamestringValidator hostname
portstringNetwork port
stakestringValidator's voting power/stake
votingPowernumberNormalized voting power (0-10000)

Code Examples​

# Get current epoch committee info
curl -X POST https://sui-mainnet.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "suix_getCommitteeInfo",
"params": [],
"id": 1
}'

# Get committee info for specific epoch
curl -X POST https://sui-mainnet.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "suix_getCommitteeInfo",
"params": ["245"],
"id": 1
}'