{
    "Function": "setEstimate",
    "File": "contracts/oracles/estimators/EmergencyEstimator.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/GSN/Context.sol",
        "contracts/interfaces/IEstimator.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setEstimate(address token, int256 amount) external onlyOwner {\n        estimates[token] = amount;\n    }"
}