Links

sui_getCommitteeInfo

Return the committee information for the asked `epoch`.

Parameters

  • epoch : <uint64> - The epoch of interest. If None, default to the latest epoch

Returns

CommitteeInfoResponse : <CommitteeInfoResponse>
  • committee_info : <[AuthorityPublicKeyBytes]>
  • epoch : <uint64>

Example Request and Result for sui_getCommitteeInfo

Request
curl
--location --request POST 'https://sui-devnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"id": 1,
"method": "sui_getCommitteeInfo",
"params": []
}'
Result
{
"jsonrpc": "2.0",
"result": {
"epoch": 0,
"committee_info": [
[
"jx8cI9u1UJBFUPZhz1YSYSY2UhjaTyqUh2EYyfsK1LRXNcwQhtOyI8vKCdfMrigHBO96gYKSJEVPhT0mAUY2Tq84re3VlU9saDqSRTBMYWueiNvBkIrtu2/XMkxz1Lsn",
1
],
[
"rC2Kq6a7ZBRATmkK+eK2zrdktgtzv21tmqHCMBuQZVdFMCrbaTleZ4HPxwWkm1lqB4OCVF4RWKd7HcpAco2WqcLaLlxZGyX7DckP6J2oHjSHJVCaeJNy+MVlJnsq/4H9",
1
],
[
"rGf95t68itAPtMYxn6mbuMjg3tep0VwuS1brirtohtWkCcJMh0L01MerDJcGVCyvAZABmGqQO3npZrnLtxc01jYg1VI1q/KJHjRQJWjgDtkiVTmojjMiqXv4Z0HVCZYR",
1
],
[
"t6QP8//dXSO7Ynhk+QdKqZ44cLDvrjvehlOdpPW2e2Lvl4KUhwW+FJhy0yShmEBSGJQvd35db3hSobDpfTMeQj5Lc/54fdQcpwo+YCbyfc+POl0ZbiocATVUunp+6C1t",
1
]
]
},
"id": 1
}