Navigate to Tranchess Operator Portal. On the left column of the page, you will find a status summary of all operators for quick reference.
For full details, the NodeOperatorRegistry contract implements the view functions to read node operator properties. A few commonly used functions are listed below.
/// @notice Statistics of validator pubkeys from a node operator./// @param totalCount Total number of validator pubkeys uploaded to this contract/// @param usedCount Number of validator pubkeys that are already used/// @param verifiedCount Number of validator pubkeys that are verified by the contract owner/// @param depositLimit Maximum number of usable validator pubkeys, set by the node operatorstructKeyStat {uint64 totalCount;uint64 usedCount;uint64 verifiedCount;uint64 depositLimit;}/// @notice Node operator parameters and internal state/// @param operatorOwner Admin address of the node operator/// @param name Human-readable name/// @param withdrawalAddress Address receiving withdrawals and execution layer rewards/// @param rewardAddress Address receiving performance rewardsstructOperator {address operatorOwner;string name;address rewardAddress;address withdrawalAddress; KeyStat keyStat;}functiongetOperator(uint256 id) externalviewreturns (Operatormemory);functiongetRewardAddress(uint256 id) externalviewreturns (address);functiongetWithdrawalAddress(uint256 id) externalviewreturns (address);functiongetWithdrawalCredential(uint256 id) externalviewreturns (bytes32);functiongetKeyStat(uint256 id) externalviewreturns (KeyStatmemory);functiongetPubkeys(uint256 id,uint256 start,uint256 count) externalviewreturns (bytes[] memory pubkeys)