{
    "Function": "_estimateItem",
    "File": "contracts/test/GasBurnerEstimator.sol",
    "Parent Contracts": [
        "contracts/interfaces/IEstimator.sol"
    ],
    "High-Level Calls": [
        "Gas"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _estimateItem(uint256, address) private view returns (int256) {\n        try Gas(address(0)).burn() returns (int256 response) {\n          return response;\n        } catch {\n          return 0;\n        }\n    }"
}