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