tornado-core/contracts/ETHMixer.sol

72 lines
2.8 KiB
Solidity
Raw Normal View History

2019-08-20 23:39:21 +03: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(
2019-11-01 04:14:01 +03:00
IVerifier _verifier,
2019-10-04 17:27:47 +03:00
uint256 _denomination,
uint32 _merkleTreeHeight,
2019-11-01 03:56:24 +03:00
address _operator
2019-11-02 15:35:22 +03:00
) Mixer(_verifier, _denomination, _merkleTreeHeight, _operator) public {
2019-08-20 23:39:21 +03:00
}
2019-11-14 20:49:34 +03:00
function _processDeposit() internal {
2019-11-04 22:45:56 +03:00
require(msg.value == denomination, "Please send `mixDenomination` ETH along with transaction");
}
2019-11-14 20:49:34 +03:00
function _processWithdraw(address payable _recipient, address payable _relayer, uint256 _fee, uint256 _refund) internal {
2019-10-17 18:54:21 +03:00
// sanity checks
2019-10-07 07:15:06 +03:00
require(msg.value == 0, "Message value is supposed to be zero for ETH mixer");
2019-10-17 18:54:21 +03:00
require(_refund == 0, "Refund value is supposed to be zero for ETH mixer");
2019-10-07 07:15:06 +03:00
2019-11-08 14:41:39 +03:00
(bool success, ) = _recipient.call.value(denomination - _fee)("");
require(success, "payment to _recipient did not go thru");
2019-09-06 17:22:30 -04:00
if (_fee > 0) {
2019-11-08 14:41:39 +03:00
(success, ) = _relayer.call.value(_fee)("");
require(success, "payment to _relayer did not go thru");
2019-08-20 23:39:21 +03:00
}
2019-09-06 17:22:30 -04:00
}
2019-12-09 23:39:50 -08:00
/**
@dev Migrate state from old mixer to this one.
@param _commitments deposited commitments from previous contract
@param _nullifierHashes spent nullifiers from previous contract
*/
bool public isMigrated = false;
function migrateState(bytes32[] calldata _commitments, bytes32[] calldata _nullifierHashes) external onlyOperator {
require(!isMigrated, "Migration is disabled");
for (uint32 i = 0; i < _commitments.length; i++) {
commitments[_commitments[i]] = true;
emit Deposit(_commitments[i], nextIndex + i, block.timestamp);
}
nextIndex += uint32(_commitments.length);
for (uint256 i = 0; i < _nullifierHashes.length; i++) {
nullifierHashes[_nullifierHashes[i]] = true;
emit Withdrawal(address(0), _nullifierHashes[i], address(0), 0);
}
}
2019-12-11 17:15:49 +07:00
function initializeTreeForMigration(bytes32[] calldata _filledSubtrees, bytes32 _root) external onlyOperator {
2019-12-09 23:39:50 -08:00
require(!isMigrated, "already migrated");
filledSubtrees = _filledSubtrees;
roots[0] = _root;
}
2019-12-10 07:48:11 -08:00
function finishMigration() external payable onlyOperator {
2019-12-09 23:39:50 -08:00
isMigrated = true;
}
2019-08-20 23:39:21 +03:00
}