{
    "Function": "slitherConstructorVariables",
    "File": "src/test/mocks/EthFeed.sol",
    "Parent Contracts": [
        "src/test/mocks/EthFeed.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract EthFeed is IChainlinkFeed {\n    uint8 decimals_ = 18;\n    uint price_ = 1600e18;\n\n    function decimals() external view returns (uint8) {\n        return decimals_;\n    }\n\n    function latestAnswer() external view returns (uint) {\n        return price_;\n    }\n\n    function changeAnswer(uint price) external {\n        price_ = price;\n    }\n}"
}