{
    "Function": "_withdrawRONTo",
    "File": "src/RonHelper.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IWRON"
    ],
    "Internal Calls": [
        "revert ErrWithdrawFailed()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function _withdrawRONTo(address to, uint256 amount) internal {\n        IWRON(wron).withdraw(amount);\n        (bool success, ) = to.call{value: amount}(\"\");\n        if (!success) revert ErrWithdrawFailed();\n    }"
}