Files
scroll/contracts/src/mocks/MockGasSwapTarget.sol

37 lines
863 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity =0.8.16;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
// solhint-disable no-empty-blocks
contract MockGasSwapTarget {
address public token;
uint256 public amountIn;
uint256 public refund;
receive() external payable {}
function setToken(address _token) external {
token = _token;
}
function setAmountIn(uint256 _amountIn) external {
amountIn = _amountIn;
}
function setRefund(uint256 _refund) external {
refund = _refund;
}
function swap() external {
IERC20(token).transferFrom(msg.sender, address(this), amountIn);
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "transfer ETH failed");
IERC20(token).transfer(msg.sender, refund);
}
}