* Improve encapsulation on Pausable * add the underscore * Improve encapsulation on ownership * fix rebase * fix ownership * Improve encapsulation on payments * Add missing tests * add missing test * Do not prefix getters * Fix tests. * revert pending owner reset * add missing underscore * Add missing underscore
27 lines
735 B
Solidity
27 lines
735 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
import "./Ownable.sol";
|
|
import "../token/ERC20/IERC20.sol";
|
|
import "../token/ERC20/SafeERC20.sol";
|
|
|
|
|
|
/**
|
|
* @title Contracts that should be able to recover tokens
|
|
* @author SylTi
|
|
* @dev This allow a contract to recover any ERC20 token received in a contract by transferring the balance to the contract owner.
|
|
* This will prevent any accidental loss of tokens.
|
|
*/
|
|
contract CanReclaimToken is Ownable {
|
|
using SafeERC20 for IERC20;
|
|
|
|
/**
|
|
* @dev Reclaim all ERC20 compatible tokens
|
|
* @param _token ERC20 The address of the token contract
|
|
*/
|
|
function reclaimToken(IERC20 _token) external onlyOwner {
|
|
uint256 balance = _token.balanceOf(this);
|
|
_token.safeTransfer(owner(), balance);
|
|
}
|
|
|
|
}
|