Created
August 9, 2018 12:21
-
-
Save adamw/8fc7f4f4a6c17ac9b5bd43919d5618da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
import "./ERC20Interface.sol"; | |
/** | |
* Contract that will forward any incoming Ether to the creator of the contract | |
*/ | |
contract Forwarder { | |
// Address to which any funds sent to this contract will be forwarded | |
address public parentAddress; | |
event EthForwarded(address indexed from, address indexed to, uint256 value); | |
/** | |
* Create the contract, and sets the destination address to that of the creator | |
*/ | |
function Forwarder() public { | |
parentAddress = msg.sender; | |
} | |
/** | |
* Modifier that will execute internal code block only if the sender is the parent address | |
*/ | |
modifier onlyParent { | |
if (msg.sender != parentAddress) { | |
revert(); | |
} | |
_; | |
} | |
/** | |
* Default function; Gets called when Ether is deposited, and forwards it to the parent address | |
*/ | |
function() public payable { | |
// throws on failure | |
parentAddress.transfer(msg.value); | |
// Fire off the deposited event if we can forward it | |
EthForwarded(msg.sender, parentAddress, msg.value); | |
} | |
/** | |
* Execute a token transfer of the full balance from the forwarder token to the parent address | |
* @param tokenContractAddress the address of the erc20 token contract | |
*/ | |
function flushTokens(address tokenContractAddress) public onlyParent { | |
ERC20Interface instance = ERC20Interface(tokenContractAddress); | |
var forwarderAddress = address(this); | |
var forwarderBalance = instance.balanceOf(forwarderAddress); | |
if (forwarderBalance == 0) { | |
return; | |
} | |
if (!instance.transfer(parentAddress, forwarderBalance)) { | |
revert(); | |
} | |
} | |
/** | |
* It is possible that funds were sent to this address before the contract was deployed. | |
* We can flush those funds to the parent address. | |
*/ | |
function flush() public { | |
// throws on failure | |
parentAddress.transfer(this.balance); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment