2017-06-06 17:40:14 +00:00
|
|
|
pragma solidity ^0.4.11;
|
|
|
|
|
|
|
|
import "./LiquidPledgingBase.sol";
|
|
|
|
|
|
|
|
|
|
|
|
contract LiquidPledging is LiquidPledgingBase {
|
|
|
|
|
|
|
|
//////
|
|
|
|
// Constructor
|
|
|
|
//////
|
|
|
|
|
|
|
|
function LiquidPledging(address _vault) LiquidPledgingBase(_vault) {
|
|
|
|
}
|
|
|
|
|
|
|
|
function donate(uint64 idDonor, uint64 idReceiver) payable {
|
|
|
|
NoteManager sender = findManager(idDonor);
|
|
|
|
|
|
|
|
if (sender.managerType != NoteManagerType.Donor) throw;
|
|
|
|
if (sender.addr != msg.sender) throw;
|
|
|
|
|
|
|
|
uint amount = msg.value;
|
|
|
|
|
|
|
|
if (amount == 0) throw;
|
|
|
|
|
|
|
|
vault.transfer(amount);
|
|
|
|
uint64 idNote = findNote(
|
|
|
|
idDonor,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
|
|
|
|
|
2017-06-26 17:54:28 +00:00
|
|
|
Note nTo = findNote(idNote);
|
|
|
|
nTo.amount += amount;
|
|
|
|
|
|
|
|
Transfer(0, idNote, amount);
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
transfer(idDonor, idNote, amount, idReceiver);
|
|
|
|
}
|
|
|
|
|
|
|
|
function transfer(uint64 idSender, uint64 idNote, uint amount, uint64 idReceiver) {
|
|
|
|
|
|
|
|
idNote = normalizeNote(idNote);
|
|
|
|
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
NoteManager receiver = findManager(idReceiver);
|
|
|
|
NoteManager sender = findManager(idSender);
|
|
|
|
|
|
|
|
if (sender.addr != msg.sender) throw;
|
|
|
|
if (n.paymentState != PaymentState.NotPaid) throw;
|
|
|
|
|
|
|
|
// If the sender is the owner
|
|
|
|
if (n.owner == idSender) {
|
|
|
|
if ((receiver.managerType == NoteManagerType.Donor) ||
|
|
|
|
(receiver.managerType == NoteManagerType.Project)) {
|
|
|
|
transferOwnership(idNote, amount, idReceiver);
|
|
|
|
} else if (receiver.managerType == NoteManagerType.Delegate) {
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
|
|
|
} else {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the sender is a delegate
|
|
|
|
uint senderDIdx = getDelegateIdx(n, idSender);
|
|
|
|
if (senderDIdx != NOTFOUND) {
|
|
|
|
|
|
|
|
// If the receiver is another doner
|
|
|
|
if (receiver.managerType == NoteManagerType.Donor) {
|
|
|
|
// Only accept to change to the original donor to remove all delegates
|
|
|
|
if (n.owner == idReceiver) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length);
|
|
|
|
} else {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the receiver is another delegate
|
|
|
|
if (receiver.managerType == NoteManagerType.Delegate) {
|
|
|
|
uint receiverDIdx = getDelegateIdx(n, idReceiver);
|
|
|
|
// If the receiver is not in the delegate list
|
|
|
|
if (receiverDIdx == NOTFOUND) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
|
|
|
// If the receiver is after the delegate list and is not the next one.
|
|
|
|
// Canccel delegations an redelegate
|
|
|
|
} else if (receiverDIdx > senderDIdx) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
appendDelegate(idNote, amount, idReceiver);
|
|
|
|
// If it's before the list cancel thelegations until him
|
|
|
|
} else if (receiverDIdx <= senderDIdx) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - receiverDIdx -1);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the delegate chose a project to assign
|
|
|
|
if (receiver.managerType == NoteManagerType.Project) {
|
|
|
|
undelegate(idNote, amount, n.delegationChain.length - senderDIdx - 1);
|
|
|
|
proposeAssignProject(idNote, amount, idReceiver);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw; // It is not the owner nor any delegate.
|
|
|
|
}
|
|
|
|
|
|
|
|
function withdraw(uint64 idNote, uint amount) {
|
|
|
|
|
|
|
|
idNote = normalizeNote(idNote);
|
|
|
|
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
|
|
|
|
if (n.paymentState != PaymentState.NotPaid) throw;
|
|
|
|
|
|
|
|
NoteManager owner = findManager(n.owner);
|
|
|
|
|
|
|
|
if (owner.addr != msg.sender) throw;
|
|
|
|
|
|
|
|
uint64 idNewNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.Paying
|
|
|
|
);
|
|
|
|
|
|
|
|
doTransfer(idNote, idNewNote, amount);
|
|
|
|
|
|
|
|
vault.authorizePayment(bytes32(idNewNote), owner.addr, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function confirmPayment(uint64 idNote, uint amount) onlyVault {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
|
|
|
|
if (n.paymentState != PaymentState.Paying) throw;
|
|
|
|
|
2017-06-27 11:08:23 +00:00
|
|
|
// Check the project is not canceled in the while.
|
|
|
|
if (getOldestNoteNotCanceled(idNote) != idNote) throw;
|
2017-06-06 17:40:14 +00:00
|
|
|
|
|
|
|
uint64 idNewNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.Paid
|
|
|
|
);
|
|
|
|
|
|
|
|
doTransfer(idNote, idNewNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancelPayment(uint64 idNote, uint amount) onlyVault {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
|
|
|
|
if (n.paymentState != PaymentState.Paying) throw;
|
|
|
|
|
|
|
|
// When a payment is cacnceled, never is assigned to a project.
|
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
2017-06-26 17:54:28 +00:00
|
|
|
n.oldNote,
|
2017-06-06 17:40:14 +00:00
|
|
|
PaymentState.NotPaid
|
|
|
|
);
|
|
|
|
|
|
|
|
oldNote = normalizeNote(oldNote);
|
|
|
|
|
|
|
|
doTransfer(idNote, oldNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cancelProject(uint64 idProject) {
|
|
|
|
NoteManager project = findManager(idProject);
|
2017-06-27 11:08:23 +00:00
|
|
|
require((project.reviewer == msg.sender) || (project.addr == msg.sender));
|
2017-06-06 17:40:14 +00:00
|
|
|
project.canceled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////
|
|
|
|
// Multi note methods
|
|
|
|
////////
|
|
|
|
|
|
|
|
uint constant D64 = 0x10000000000000000;
|
|
|
|
function mTransfer(uint64 idSender, uint[] notesAmounts, uint64 idReceiver) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
transfer(idSender, idNote, amount, idReceiver);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mWithdraw(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
withdraw(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mConfirmPayment(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
confirmPayment(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mCancelPayment(uint[] notesAmounts) {
|
|
|
|
for (uint i = 0; i < notesAmounts.length; i++ ) {
|
|
|
|
uint64 idNote = uint64( notesAmounts[i] & (D64-1) );
|
|
|
|
uint amount = notesAmounts[i] / D64;
|
|
|
|
|
|
|
|
cancelPayment(idNote, amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////
|
|
|
|
// Private methods
|
|
|
|
///////
|
|
|
|
|
|
|
|
|
|
|
|
function transferOwnership(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
2017-06-26 17:54:28 +00:00
|
|
|
|
|
|
|
// If the owner does not change, then just let it this way.
|
|
|
|
if (n.owner == idReceiver) return;
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 toNote = findNote(
|
|
|
|
idReceiver,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function appendDelegate(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
uint64[] memory newDelegationChain = new uint64[](n.delegationChain.length + 1);
|
|
|
|
for (uint i=0; i<n.delegationChain.length; i++) {
|
|
|
|
newDelegationChain[i] = n.delegationChain[i];
|
|
|
|
}
|
|
|
|
newDelegationChain[n.delegationChain.length] = idReceiver;
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
newDelegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @param q Unmber of undelegations
|
|
|
|
function undelegate(uint64 idNote, uint amount, uint q) internal {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
uint64[] memory newDelegationChain = new uint64[](n.delegationChain.length - q);
|
|
|
|
for (uint i=0; i<n.delegationChain.length - q; i++) {
|
|
|
|
newDelegationChain[i] = n.delegationChain[i];
|
|
|
|
}
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
newDelegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function proposeAssignProject(uint64 idNote, uint amount, uint64 idReceiver) internal {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
NoteManager owner = findManager(n.owner);
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
idReceiver,
|
2017-06-26 17:54:28 +00:00
|
|
|
uint64(getTime() + owner.commitTime),
|
2017-06-06 17:40:14 +00:00
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function doTransfer(uint64 from, uint64 to, uint amount) internal {
|
2017-06-26 17:54:28 +00:00
|
|
|
if (from == to) return;
|
|
|
|
if (amount == 0) return;
|
2017-06-06 17:40:14 +00:00
|
|
|
Note nFrom = findNote(from);
|
|
|
|
Note nTo = findNote(to);
|
|
|
|
if (nFrom.amount < amount) throw;
|
|
|
|
nFrom.amount -= amount;
|
|
|
|
nTo.amount += amount;
|
|
|
|
|
|
|
|
Transfer(from, to, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
function normalizeNote(uint64 idNote) internal returns(uint64) {
|
|
|
|
Note n = findNote(idNote);
|
|
|
|
if (n.paymentState != PaymentState.NotPaid) return idNote;
|
|
|
|
|
|
|
|
// First send to a project if it's proposed and commited
|
2017-06-27 11:08:23 +00:00
|
|
|
if ((n.proposedProject > 0) && ( getTime() > n.commitTime)) {
|
2017-06-06 17:40:14 +00:00
|
|
|
uint64 oldNote = findNote(
|
|
|
|
n.owner,
|
|
|
|
n.delegationChain,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
n.oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
uint64 toNote = findNote(
|
|
|
|
n.proposedProject,
|
|
|
|
new uint64[](0),
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
oldNote,
|
|
|
|
PaymentState.NotPaid);
|
|
|
|
doTransfer(idNote, toNote, n.amount);
|
2017-06-26 17:54:28 +00:00
|
|
|
idNote = toNote;
|
2017-06-27 11:08:23 +00:00
|
|
|
n = findNote(idNote);
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
toNote = getOldestNoteNotCanceled(idNote);
|
|
|
|
if (toNote != idNote) {
|
|
|
|
doTransfer(idNote, toNote, n.amount);
|
|
|
|
}
|
2017-06-26 17:54:28 +00:00
|
|
|
|
|
|
|
return toNote;
|
|
|
|
}
|
|
|
|
/////////////
|
|
|
|
// Test functions
|
|
|
|
/////////////
|
|
|
|
|
|
|
|
function getTime() internal returns (uint) {
|
|
|
|
return now;
|
2017-06-06 17:40:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
event Transfer(uint64 indexed from, uint64 indexed to, uint amount);
|
|
|
|
|
|
|
|
}
|