sui_json_rpc_api/
governance.rsuse jsonrpsee::core::RpcResult;
use jsonrpsee::proc_macros::rpc;
use sui_json_rpc_types::{DelegatedStake, SuiCommittee, ValidatorApys};
use sui_open_rpc_macros::open_rpc;
use sui_types::base_types::{ObjectID, SuiAddress};
use sui_types::sui_serde::BigInt;
use sui_types::sui_system_state::sui_system_state_summary::SuiSystemStateSummary;
#[open_rpc(namespace = "suix", tag = "Governance Read API")]
#[rpc(server, client, namespace = "suix")]
pub trait GovernanceReadApi {
#[method(name = "getStakesByIds")]
async fn get_stakes_by_ids(
&self,
staked_sui_ids: Vec<ObjectID>,
) -> RpcResult<Vec<DelegatedStake>>;
#[method(name = "getStakes")]
async fn get_stakes(&self, owner: SuiAddress) -> RpcResult<Vec<DelegatedStake>>;
#[method(name = "getCommitteeInfo")]
async fn get_committee_info(
&self,
epoch: Option<BigInt<u64>>,
) -> RpcResult<SuiCommittee>;
#[method(name = "getLatestSuiSystemState")]
async fn get_latest_sui_system_state(&self) -> RpcResult<SuiSystemStateSummary>;
#[method(name = "getReferenceGasPrice")]
async fn get_reference_gas_price(&self) -> RpcResult<BigInt<u64>>;
#[method(name = "getValidatorsApy")]
async fn get_validators_apy(&self) -> RpcResult<ValidatorApys>;
}