tornado-core/contracts/ETHMixer.sol

63 lines
2.4 KiB
Solidity
Raw Normal View History

2019-08-20 22:39:21 +02: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 {
2019-08-27 22:42:24 +02:00
uint256 public etherDenomination;
2019-08-20 22:39:21 +02:00
constructor(
address _verifier,
2019-08-27 22:42:24 +02:00
uint256 _etherDenomination,
2019-08-20 22:39:21 +02:00
uint8 _merkleTreeHeight,
uint256 _emptyElement,
address payable _operator
2019-08-27 22:42:24 +02:00
) Mixer(_verifier, _merkleTreeHeight, _emptyElement, _operator) public {
etherDenomination = _etherDenomination;
}
2019-08-20 22:39:21 +02:00
2019-08-27 22:42:24 +02:00
/**
@dev Deposit funds into mixer. The caller must send value equal to `etherDenomination` of this mixer.
@param commitment the note commitment, which is PedersenHash(nullifier + secret)
*/
2019-08-20 22:39:21 +02:00
function deposit(uint256 commitment) public payable {
2019-08-27 22:42:24 +02:00
require(msg.value == etherDenomination, "Please send `etherDenomination` ETH along with transaction");
2019-08-20 22:39:21 +02:00
_deposit(commitment);
emit Deposit(commitment, next_index - 1, block.timestamp);
}
2019-08-27 22:42:24 +02:00
/**
@dev Withdraw deposit from the mixer. `a`, `b`, and `c` are zkSNARK proof data, and input is an array of circuit public inputs
`input` array consists of:
- merkle root of all deposits in the mixer
- hash of unique deposit nullifier to prevent double spends
- the receiver of funds
- optional fee that goes to the transaction sender (usually a relay)
*/
2019-08-20 22:39:21 +02:00
function withdraw(uint256[2] memory a, uint256[2][2] memory b, uint256[2] memory c, uint256[4] memory input) public {
_withdraw(a, b, c, input);
address payable receiver = address(input[2]);
uint256 fee = input[3];
uint256 nullifierHash = input[1];
2019-08-27 22:42:24 +02:00
require(fee < etherDenomination, "Fee exceeds transfer value");
receiver.transfer(etherDenomination - fee);
2019-08-20 22:39:21 +02:00
if (fee > 0) {
operator.transfer(fee);
}
emit Withdraw(receiver, nullifierHash, fee);
}
}