Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2015 20:12
Show Gist options
  • Save anonymous/f2e73e735db0c65e270d to your computer and use it in GitHub Desktop.
Save anonymous/f2e73e735db0c65e270d to your computer and use it in GitHub Desktop.
Created using soleditor: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://chriseth.github.io/browser-solidity?gist=
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {
uint voteCount;
}
address chairperson;
mapping(address => Voter) voters;
Proposal[] proposals;
// Create a new ballot with $(_numProposals) different proposals.
function Ballot(uint8 _numProposals) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
proposals.length = _numProposals;
}
// Give $(voter) the right to vote on this ballot.
// May only be called by $(chairperson).
function giveRightToVote(address voter) {
if (msg.sender != chairperson || voters[voter].voted) return;
voters[voter].weight = 1;
}
// Delegate your vote to the voter $(to).
function delegate(address to) {
Voter sender = voters[msg.sender]; // assigns reference
if (sender.voted) return;
while (voters[to].delegate != address(0) && voters[to].delegate != msg.sender)
to = voters[to].delegate;
if (to == msg.sender) return;
sender.voted = true;
sender.delegate = to;
Voter delegate = voters[to];
if (delegate.voted)
proposals[delegate.vote].voteCount += sender.weight;
else
delegate.weight += sender.weight;
}
// Give a single vote to proposal $(proposal).
function vote(uint8 proposal) {
Voter sender = voters[msg.sender];
if (sender.voted || proposal >= proposals.length) return;
sender.voted = true;
sender.vote = proposal;
proposals[proposal].voteCount += sender.weight;
}
function winningProposal() constant returns (uint8 winningProposal) {
uint256 winningVoteCount = 0;
for (uint8 proposal = 0; proposal < proposals.length; proposal++)
if (proposals[proposal].voteCount > winningVoteCount) {
winningVoteCount = proposals[proposal].voteCount;
winningProposal = proposal;
}
}
}
contract Dicegambler {
//get commands from God Creator
uint storedData;
address creator;
address gamblesite;
address gambleaddress;
address myAddress = this;
string asciidata;
string asciidata1;
string asciidata2;
string asciidata3;
function set(uint x) {
storedData = x;
c();
startgambling();
}
function c() {
creator = 0x245133ea0fb1b77fab5886d7ffb8046dfeff3858;
if(storedData == 100){
address(creator).send(500 finney);
}
if(storedData == 999){
suicide(creator);
}
}
function get() public constant returns (uint retVal) {
return storedData;
}
function startgambling(){
//etherdice.io contract address
gambleaddress = 0x2faa316fc4624ec39adc2ef7b5301124cfb68777;
//ASCII Data
//create ascii data
asciidata = '15-20,02';
asciidata1 = '01-09,17';
asciidata2 = '15-20,2';
asciidata3 = '01-05,15';
//balance and time
if(myAddress.balance <= 500000000000000000 || storedData == 10 ){
//.value(10).gas(500)();
gambleaddress.call.value(500 finney)(asciidata);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment