Solidity API
SafeCall
Perform low level safe calls
safeCall
function safeCall(address _target, uint256 _gas, uint256 _value, bytes _calldata) internal returns (bool)
Perform a low level call without copying any returndata
Parameters
Name | Type | Description |
---|---|---|
_target | address | Address to call |
_gas | uint256 | Amount of gas to pass to the call |
_value | uint256 | Amount of value to pass to the call |
_calldata | bytes | Calldata to pass to the call |