tornado-core/contracts/Mixer.sol

77 lines
2.8 KiB
Solidity
Raw Normal View History

2019-07-09 13:05:30 +00:00
pragma solidity ^0.5.8;
import "./MerkleTreeWithHistory.sol";
contract IVerifier {
2019-07-12 21:50:26 +00:00
function verifyProof(uint256[2] memory a, uint256[2][2] memory b, uint256[2] memory c, uint256[4] memory input) public returns(bool);
2019-07-09 13:05:30 +00:00
}
contract Mixer is MerkleTreeWithHistory {
uint256 public transferValue;
mapping(uint256 => bool) public nullifiers;
2019-07-15 15:04:48 +00:00
// we store all commitments just to prevent accidental deposits with the same commitment
mapping(uint256 => bool) public commitments;
2019-07-09 13:05:30 +00:00
IVerifier verifier;
event Deposit(address from, uint256 commitment);
event Withdraw(address to, uint256 nullifier, uint256 fee);
2019-07-10 12:35:46 +00:00
/**
@dev The constructor
@param _verifier the address of SNARK verifier for this contract
@param _transferValue the value for all deposits in this contract in wei
*/
2019-07-12 15:04:45 +00:00
constructor(
address _verifier,
uint256 _transferValue,
uint8 _merkleTreeHeight,
uint256 _emptyElement
) MerkleTreeWithHistory(_merkleTreeHeight, _emptyElement) public {
2019-07-09 13:05:30 +00:00
verifier = IVerifier(_verifier);
transferValue = _transferValue;
}
2019-07-10 12:35:46 +00:00
/**
@dev Deposit funds into mixer. The caller must send value equal to `transferValue` of this mixer.
@param commitment the note commitment, which is PedersenHash(nullifier + secret)
*/
2019-07-09 13:05:30 +00:00
function deposit(uint256 commitment) public payable {
require(msg.value == transferValue, "Please send `transferValue` ETH along with transaction");
2019-07-15 15:04:48 +00:00
require(!commitments[commitment], "The commitment has been submitted");
2019-07-10 16:58:21 +00:00
_insert(commitment);
2019-07-15 15:04:48 +00:00
commitments[commitment] = true;
2019-07-09 13:05:30 +00:00
emit Deposit(msg.sender, commitment);
}
2019-07-10 12:35:46 +00: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
- unique deposit nullifier to prevent double spends
- the receiver of funds
- optional fee that goes to the transaction sender (usually a relay)
*/
2019-07-09 13:05:30 +00:00
function withdraw(uint256[2] memory a, uint256[2][2] memory b, uint256[2] memory c, uint256[4] memory input) public {
uint256 root = input[0];
uint256 nullifier = input[1];
address payable receiver = address(input[2]);
uint256 fee = input[3];
require(fee < transferValue, "Fee exceeds transfer value");
require(!nullifiers[nullifier], "The note has been already spent");
require(isKnownRoot(root), "Cannot find your merkle root"); // Make sure to use a recent one
2019-07-12 21:50:26 +00:00
require(verifier.verifyProof(a, b, c, input), "Invalid withdraw proof");
2019-07-09 13:05:30 +00:00
nullifiers[nullifier] = true;
receiver.transfer(transferValue - fee);
if (fee > 0) {
msg.sender.transfer(fee);
}
emit Withdraw(receiver, nullifier, fee);
}
2019-07-15 16:15:06 +00:00
function isSpent(uint256 nullifier) public view returns(bool) {
return nullifiers[nullifier];
}
2019-07-10 16:58:21 +00:00
}