{
    "Function": "getValidatorStruct",
    "File": "src/OperatorRegistry.sol",
    "Parent Contracts": [
        "src/Utils/Owned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getValidatorStruct(\n        bytes memory pubKey, \n        bytes memory signature, \n        bytes32 depositDataRoot\n    ) external pure returns (Validator memory) {\n        return Validator(pubKey, signature, depositDataRoot);\n    }"
}