Last active
January 19, 2022 22:27
-
-
Save servatj/209410c540de7ee35492ee848c38bfa9 to your computer and use it in GitHub Desktop.
Simple Lotery smart contract
This file contains hidden or 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
pragma solidity ^0.4.21; | |
contract Lottery { | |
address public manager; | |
address[] public players; | |
constructor() public { | |
manager = msg.sender; | |
} | |
function enter() public payable { | |
require(msg.value > .01 ether); | |
players.push(msg.sender); | |
} | |
function random() private view returns (uint) { | |
return uint(keccak256(abi.encodePacked(block.difficulty, now, players))); | |
} | |
function pickWinner() public restricted { | |
uint index = random() % players.length; | |
players[index].transfer(address(this).balance); | |
players = new address[](0); | |
} | |
function getPlayers() public view returns (address[]) { | |
return players; | |
} | |
modifier restricted() { | |
require(msg.sender == manager); | |
_; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment