mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
45 lines
1.6 KiB
Solidity
45 lines
1.6 KiB
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.7.4;
|
|
|
|
import {Address} from "./Address.sol";
|
|
import {IERC20} from "../interfaces/tokens/IERC20.sol";
|
|
|
|
library SafeERC20 {
|
|
using Address for address;
|
|
|
|
function safeTransfer(
|
|
IERC20 token,
|
|
address to,
|
|
uint256 value
|
|
) internal {
|
|
_callOptionalReturn(
|
|
token,
|
|
abi.encodeWithSelector(token.transfer.selector, to, value)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
|
|
* on the return value: the return value is optional (but if data is returned, it must not be false).
|
|
* @param token The token targeted by the call.
|
|
* @param data The call data (encoded using abi.encode or one of its variants).
|
|
*/
|
|
function _callOptionalReturn(IERC20 token, bytes memory data) private {
|
|
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
|
|
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
|
|
// the target address contains contract code and also asserts for success in the low-level call.
|
|
|
|
bytes memory returndata = address(token).functionCall(
|
|
data,
|
|
"SafeERC20: low-level call failed"
|
|
);
|
|
if (returndata.length > 0) {
|
|
// Return data is optional
|
|
// solhint-disable-next-line max-line-length
|
|
require(
|
|
abi.decode(returndata, (bool)),
|
|
"SafeERC20: ERC20 operation did not succeed"
|
|
);
|
|
}
|
|
}
|
|
} |