2017-08-26 19:46:34 +00:00
|
|
|
|
|
|
|
//File: contracts/Owned.sol
|
|
|
|
pragma solidity ^0.4.11;
|
|
|
|
|
|
|
|
|
|
|
|
/// @dev `Owned` is a base level contract that assigns an `owner` that can be
|
|
|
|
/// later changed
|
|
|
|
contract Owned {
|
|
|
|
|
|
|
|
/// @dev `owner` is the only address that can call a function with this
|
|
|
|
/// modifier
|
|
|
|
modifier onlyOwner() {
|
|
|
|
require(msg.sender == owner);
|
|
|
|
_;
|
|
|
|
}
|
|
|
|
|
|
|
|
address public owner;
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @notice The Constructor assigns the account deploying the contract to be
|
|
|
|
/// the `owner`
|
2017-08-26 19:46:34 +00:00
|
|
|
function Owned() {
|
|
|
|
owner = msg.sender;
|
|
|
|
}
|
|
|
|
|
|
|
|
address public newOwner;
|
|
|
|
|
|
|
|
/// @notice `owner` can step down and assign some other address to this role
|
2017-10-03 12:42:21 +00:00
|
|
|
/// but after this function is called the current owner still has ownership
|
|
|
|
/// powers in this contract; change of ownership is a 2 step process
|
|
|
|
/// @param _newOwner The address of the new owner. A simple contract with
|
|
|
|
/// the ability to accept ownership but the inability to do anything else
|
|
|
|
/// can be used to create an unowned contract to achieve decentralization
|
2017-08-26 19:46:34 +00:00
|
|
|
function changeOwner(address _newOwner) onlyOwner {
|
|
|
|
newOwner = _newOwner;
|
|
|
|
}
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @notice `newOwner` can accept ownership over this contract
|
2017-08-26 19:46:34 +00:00
|
|
|
function acceptOwnership() {
|
2017-10-03 12:42:21 +00:00
|
|
|
require(msg.sender == newOwner);
|
|
|
|
owner = newOwner;
|
2017-08-26 19:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//File: ./contracts/Vault.sol
|
|
|
|
pragma solidity ^0.4.11;
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @title Vault
|
|
|
|
/// @author Jordi Baylina
|
|
|
|
/// @notice This contract holds ether securely for liquid pledging systems. For
|
|
|
|
/// this iteration the funds will come straight from the Giveth Multisig as a
|
|
|
|
/// safety precaution, but once fully tested and optimized this contract will
|
|
|
|
/// be a safe place to store funds equipped with optional variable time delays
|
|
|
|
/// to allow for an optional escape hatch to be implemented
|
2017-08-26 19:46:34 +00:00
|
|
|
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @dev This is declares a few functions from `LiquidPledging` so that the
|
|
|
|
/// `Vault` contract can interface with the `LiquidPledging` contract
|
2017-08-26 19:46:34 +00:00
|
|
|
contract LiquidPledging {
|
|
|
|
function confirmPayment(uint64 idNote, uint amount);
|
|
|
|
function cancelPayment(uint64 idNote, uint amount);
|
|
|
|
}
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
|
|
|
|
/// @dev `Vault` is a higher level contract built off of the `Owned`
|
2017-10-04 11:02:19 +00:00
|
|
|
/// contract that holds funds for the liquid pledging system.
|
2017-08-26 19:46:34 +00:00
|
|
|
contract Vault is Owned {
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
LiquidPledging public liquidPledging; // liquidPledging contract's address
|
|
|
|
bool public autoPay; // if false, payments will take 2 txs to be completed
|
2017-08-26 19:46:34 +00:00
|
|
|
|
2017-10-04 11:02:19 +00:00
|
|
|
enum PaymentStatus {
|
2017-10-03 12:42:21 +00:00
|
|
|
Pending, // means the payment is awaiting confirmation
|
2017-10-04 11:02:19 +00:00
|
|
|
Paid, // means the payment has been sent
|
2017-10-03 12:42:21 +00:00
|
|
|
Canceled // means the payment will never be sent
|
2017-08-26 19:46:34 +00:00
|
|
|
}
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @dev `Payment` is a public structure that describes the details of
|
|
|
|
/// each payment the `ref` param makes it easy to track the movements of
|
|
|
|
/// funds transparently by its connection to other `Payment` structs
|
2017-08-26 19:46:34 +00:00
|
|
|
struct Payment {
|
2017-10-04 11:02:19 +00:00
|
|
|
PaymentStatus state; //
|
2017-10-03 12:42:21 +00:00
|
|
|
bytes32 ref; // an input that references details from other contracts
|
|
|
|
address dest; // recipient of the ETH
|
|
|
|
uint amount; // amount of ETH (in wei) to be sent
|
2017-08-26 19:46:34 +00:00
|
|
|
}
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
// @dev An array that contains all the payments for this Vault
|
2017-08-26 19:46:34 +00:00
|
|
|
Payment[] public payments;
|
|
|
|
|
2017-10-03 12:42:21 +00:00
|
|
|
// @dev `liquidPledging` is the only address that can call a function with
|
|
|
|
/// this modifier
|
2017-08-26 19:46:34 +00:00
|
|
|
modifier onlyLiquidPledging() {
|
|
|
|
require(msg.sender == address(liquidPledging));
|
|
|
|
_;
|
|
|
|
}
|
2017-10-03 12:42:21 +00:00
|
|
|
/// @dev USED FOR TESTING???
|
2017-08-26 19:46:34 +00:00
|
|
|
function VaultMock() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function () payable {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function setLiquidPledging(address _newLiquidPledging) onlyOwner {
|
2017-10-03 12:42:21 +00:00
|
|
|
require(address(liquidPledging) == 0x0);
|
2017-08-26 19:46:34 +00:00
|
|
|
liquidPledging = LiquidPledging(_newLiquidPledging);
|
|
|
|
}
|
|
|
|
|
|
|
|
function setAutopay(bool _automatic) onlyOwner {
|
|
|
|
autoPay = _automatic;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function authorizePayment(bytes32 _ref, address _dest, uint _amount) onlyLiquidPledging returns (uint) {
|
|
|
|
uint idPayment = payments.length;
|
|
|
|
payments.length ++;
|
2017-10-04 11:02:19 +00:00
|
|
|
payments[idPayment].state = PaymentStatus.Pending;
|
2017-08-26 19:46:34 +00:00
|
|
|
payments[idPayment].ref = _ref;
|
|
|
|
payments[idPayment].dest = _dest;
|
|
|
|
payments[idPayment].amount = _amount;
|
|
|
|
|
|
|
|
AuthorizePayment(idPayment, _ref, _dest, _amount);
|
|
|
|
|
|
|
|
if (autoPay) doConfirmPayment(idPayment);
|
|
|
|
|
|
|
|
return idPayment;
|
|
|
|
}
|
|
|
|
|
|
|
|
function confirmPayment(uint _idPayment) onlyOwner {
|
|
|
|
doConfirmPayment(_idPayment);
|
|
|
|
}
|
|
|
|
|
|
|
|
function doConfirmPayment(uint _idPayment) internal {
|
|
|
|
require(_idPayment < payments.length);
|
|
|
|
Payment storage p = payments[_idPayment];
|
2017-10-04 11:02:19 +00:00
|
|
|
require(p.state == PaymentStatus.Pending);
|
2017-08-26 19:46:34 +00:00
|
|
|
|
2017-10-04 11:02:19 +00:00
|
|
|
p.state = PaymentStatus.Paid;
|
2017-10-03 12:42:21 +00:00
|
|
|
p.dest.transfer(p.amount); // only ETH denominated in wei
|
2017-08-26 19:46:34 +00:00
|
|
|
|
|
|
|
liquidPledging.confirmPayment(uint64(p.ref), p.amount);
|
|
|
|
|
|
|
|
ConfirmPayment(_idPayment);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancelPayment(uint _idPayment) onlyOwner {
|
|
|
|
doCancelPayment(_idPayment);
|
|
|
|
}
|
|
|
|
|
|
|
|
function doCancelPayment(uint _idPayment) internal {
|
|
|
|
require(_idPayment < payments.length);
|
|
|
|
Payment storage p = payments[_idPayment];
|
2017-10-04 11:02:19 +00:00
|
|
|
require(p.state == PaymentStatus.Pending);
|
2017-08-26 19:46:34 +00:00
|
|
|
|
2017-10-04 11:02:19 +00:00
|
|
|
p.state = PaymentStatus.Canceled;
|
2017-08-26 19:46:34 +00:00
|
|
|
|
|
|
|
liquidPledging.cancelPayment(uint64(p.ref), p.amount);
|
|
|
|
|
|
|
|
CancelPayment(_idPayment);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function multiConfirm(uint[] _idPayments) onlyOwner {
|
|
|
|
for (uint i=0; i < _idPayments.length; i++) {
|
|
|
|
doConfirmPayment(_idPayments[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function multiCancel(uint[] _idPayments) onlyOwner {
|
|
|
|
for (uint i=0; i < _idPayments.length; i++) {
|
|
|
|
doCancelPayment(_idPayments[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function nPayments() constant returns (uint) {
|
|
|
|
return payments.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
event ConfirmPayment(uint indexed idPayment);
|
|
|
|
event CancelPayment(uint indexed idPayment);
|
|
|
|
event AuthorizePayment(uint indexed idPayment, bytes32 indexed ref, address indexed dest, uint amount);
|
|
|
|
}
|