{
    "Function": "safeTransferETH",
    "File": "contracts/lib/solmate/src/utils/SafeTransferLib.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "call(uint256,uint256,uint256,uint256,uint256,uint256,uint256)",
        "require(bool,string)",
        "gas()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function safeTransferETH(address to, uint256 amount) internal {\n        bool success;\n\n        assembly {\n            // Transfer the ETH and store if it succeeded or not.\n            success := call(gas(), to, amount, 0, 0, 0, 0)\n        }\n\n        require(success, \"ETH_TRANSFER_FAILED\");\n    }"
}