tornado-core/contracts/ETHMixer.sol

41 lines
1.6 KiB
Solidity
Raw Normal View History

2019-08-20 20:39:21 +00:00
// https://tornado.cash
/*
* d888888P dP a88888b. dP
* 88 88 d8' `88 88
* 88 .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b. 88 .d8888b. .d8888b. 88d888b.
* 88 88' `88 88' `88 88' `88 88' `88 88' `88 88' `88 88 88' `88 Y8ooooo. 88' `88
* 88 88. .88 88 88 88 88. .88 88. .88 88. .88 dP Y8. .88 88. .88 88 88 88
* dP `88888P' dP dP dP `88888P8 `88888P8 `88888P' 88 Y88888P' `88888P8 `88888P' dP dP
* ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
*/
pragma solidity ^0.5.8;
import "./Mixer.sol";
contract ETHMixer is Mixer {
constructor(
address _verifier,
2019-10-04 14:27:47 +00:00
uint256 _denomination,
2019-08-20 20:39:21 +00:00
uint8 _merkleTreeHeight,
uint256 _emptyElement,
address payable _operator
2019-10-04 14:27:47 +00:00
) Mixer(_verifier, _denomination, _merkleTreeHeight, _emptyElement, _operator) public {
2019-08-20 20:39:21 +00:00
}
2019-10-17 13:35:23 +00:00
function _processWithdraw(address payable _receiver, address payable _relayer, uint256 _fee, uint256 _refund) internal {
2019-10-17 15:54:21 +00:00
// sanity checks
2019-10-07 04:15:06 +00:00
require(msg.value == 0, "Message value is supposed to be zero for ETH mixer");
2019-10-17 15:54:21 +00:00
require(_refund == 0, "Refund value is supposed to be zero for ETH mixer");
2019-10-07 04:15:06 +00:00
2019-10-04 14:27:47 +00:00
_receiver.transfer(denomination - _fee);
2019-09-06 21:22:30 +00:00
if (_fee > 0) {
2019-09-06 20:54:37 +00:00
_relayer.transfer(_fee);
2019-08-20 20:39:21 +00:00
}
2019-09-06 21:22:30 +00:00
}
2019-08-20 20:39:21 +00:00
2019-09-06 21:22:30 +00:00
function _processDeposit() internal {
2019-10-04 14:27:47 +00:00
require(msg.value == denomination, "Please send `mixDenomination` ETH along with transaction");
2019-08-20 20:39:21 +00:00
}
}