{
    "Function": "setStablePrice",
    "File": "contracts/Oracle.sol",
    "Parent Contracts": [
        "contracts/legos/Governable.sol",
        "node_modules/@openzeppelin/contracts/proxy/utils/Initializable.sol",
        "contracts/legos/Governable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "requireNonEmptyAddress",
        "onlyGovernance"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setStablePrice(address underlying, int256 price) external onlyGovernance {\n        requireNonEmptyAddress(underlying);\n        stablePrice[underlying] = price;\n    }"
}