{
    "Function": "getProxyAdmin",
    "File": "contracts/StrategyProxyAdmin.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool)",
        "abi.decode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "staticcall"
    ],
    "Code": "function getProxyAdmin(TransparentUpgradeableProxy proxy) public view returns (address) {\n        // We need to manually run the static call since the getter cannot be flagged as view\n        // bytes4(keccak256(\"admin()\")) == 0xf851a440\n        (bool success, bytes memory returndata) = address(proxy).staticcall(hex\"f851a440\");\n        require(success);\n        return abi.decode(returndata, (address));\n    }"
}