Created
November 26, 2015 17:31
-
-
Save alexvandesande/6c489fe759b27c7a2669 to your computer and use it in GitHub Desktop.
Democratic Autonomous Organisation in Ethereum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This creates a Democractic Autonomous Organization. Membership is based | |
on ownership of custom tokens, which are used to vote on proposals. | |
This contract is intended for educational purposes, you are fully responsible | |
for compliance with present or future regulations of finance, communications | |
and the universal rights of digital beings. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a compiled | |
binary, for any purpose, commercial or non-commercial, and by any | |
means. | |
In jurisdictions that recognize copyright laws, the author or authors | |
of this software dedicate any and all copyright interest in the | |
software to the public domain. We make this dedication for the benefit | |
of the public at large and to the detriment of our heirs and | |
successors. We intend this dedication to be an overt act of | |
relinquishment in perpetuity of all present and future rights to this | |
software under copyright law. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
OTHER DEALINGS IN THE SOFTWARE. | |
For more information, please refer to <http://unlicense.org> | |
*/ | |
contract token { mapping (address => uint256) public balanceOf; } | |
contract Democracy { | |
uint public minimumQuorum; | |
uint public debatingPeriodInMinutes; | |
Proposal[] public proposals; | |
uint public numProposals; | |
token public sharesTokenAddress; | |
event ProposalAdded(uint proposalID, address recipient, uint amount, string description); | |
event Voted(uint proposalID, bool position, address voter); | |
event ProposalTallied(uint proposalID, int result, uint quorum, bool active); | |
struct Proposal { | |
address recipient; | |
uint amount; | |
string description; | |
uint creationDate; | |
bool openToVote; | |
bool proposalPassed; | |
uint numberOfVotes; | |
bytes32 data; | |
Vote[] votes; | |
mapping (address => bool) voted; | |
} | |
struct Vote { | |
bool inSupport; | |
address voter; | |
} | |
modifier onlyShareholders { | |
if (sharesTokenAddress.balanceOf(msg.sender) == 0) throw; | |
_ | |
} | |
function Democracy(token sharesAddress, uint minimumSharesForVoting, uint minutesForDebate) { | |
sharesTokenAddress = token(sharesAddress); | |
if (minimumSharesForVoting == 0 ) minimumSharesForVoting = 1; | |
minimumQuorum = minimumSharesForVoting; | |
debatingPeriodInMinutes = minutesForDebate; | |
} | |
function newProposal(address beneficiary, uint etherAmount, string JobDescription, bytes32 transactionBytecode) onlyShareholders returns (uint proposalID) { | |
proposalID = proposals.length++; | |
Proposal p = proposals[proposalID]; | |
p.recipient = beneficiary; | |
p.amount = etherAmount; | |
p.description = JobDescription; | |
p.data = transactionBytecode; | |
p.creationDate = now; | |
p.openToVote = true; | |
p.proposalPassed = false; | |
p.numberOfVotes = 0; | |
ProposalAdded(proposalID, beneficiary, etherAmount, JobDescription); | |
numProposals = proposalID+1; | |
} | |
function vote(uint proposalNumber, bool supportsProposal) onlyShareholders returns (uint voteID){ | |
Proposal p = proposals[proposalNumber]; | |
if (p.voted[msg.sender] == true) throw; | |
voteID = p.votes.length++; | |
p.votes[voteID] = Vote({inSupport: supportsProposal, voter: msg.sender}); | |
p.voted[msg.sender] = true; | |
p.numberOfVotes = voteID +1; | |
Voted(proposalNumber, supportsProposal, msg.sender); | |
} | |
function executeProposal(uint proposalNumber) returns (int result) { | |
Proposal p = proposals[proposalNumber]; | |
/* Check if debating period is over */ | |
if (now < (p.creationDate + debatingPeriodInMinutes * 1 minutes) || !p.openToVote) throw; | |
/* tally the votes */ | |
uint quorum = 0; | |
uint yea = 0; | |
uint nay = 0; | |
for (uint i = 0; i < p.votes.length; ++i) { | |
Vote v = p.votes[i]; | |
uint voteWeight = sharesTokenAddress.balanceOf(v.voter); | |
quorum += voteWeight; | |
if (v.inSupport) { | |
yea += voteWeight; | |
} else { | |
nay += voteWeight; | |
} | |
} | |
/* execute result */ | |
if (quorum > minimumQuorum && yea > nay ) { | |
// has quorum and was approved | |
p.recipient.call.value(p.amount*1000000000000000000)(p.data); | |
p.openToVote = false; | |
p.proposalPassed = true; | |
} else if (quorum > minimumQuorum && nay > yea) { | |
p.openToVote = false; | |
p.proposalPassed = false; | |
} | |
// Fire Events | |
ProposalTallied(proposalNumber, result, quorum, p.openToVote); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment