-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lottery.sol
42 lines (33 loc) · 1.31 KB
/
Lottery.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.9.0;
contract Lottery {
address public manager;
address payable[] public participants;
constructor() {
manager = msg.sender; // The contract's address is given to the manager
}
receive() external payable {
require(msg.value >= 1 ether);
participants.push(payable(msg.sender));
}
function getBalance() public view returns(uint){
require(msg.sender == manager);
return address(this).balance;
}
//selecting particiapnts on random basis now!
function random() public view returns(uint){
return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, participants.length)));
}
// this random function generates a big number soo we have to shrten it to give 1 index and that index holder is the winner of lottery!
function selectWinner() public{
require(msg.sender == manager);
require(participants.length >= 3);
uint r = random();
address payable winner;
uint index = r % participants.length;
winner = participants[index];
//return winner;
winner.transfer(getBalance());
participants = new address payable[](0); //reset the participants array!
}
}