Files
dodo-contractV2/contracts/SmartRoute/SmartApprove.sol

32 lines
718 B
Solidity
Raw Normal View History

2020-11-09 14:26:38 +08:00
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;
import {IERC20} from "../intf/IERC20.sol";
import {SafeERC20} from "../lib/SafeERC20.sol";
import {Ownable} from "../lib/Ownable.sol";
contract SmartApprove is Ownable {
using SafeERC20 for IERC20;
address public smartSwap;
function setSmartSwap(address _smartSwap) external onlyOwner {
smartSwap = _smartSwap;
}
function claimTokens(
IERC20 token,
address who,
address dest,
uint256 amount
) external {
require(msg.sender == smartSwap, "Not SmartSwap Address, Access restricted");
2020-11-10 18:37:51 +08:00
token.safeTransferFrom(who, dest, amount);
2020-11-09 14:26:38 +08:00
}
}