Skip to content

Instantly share code, notes, and snippets.

View krishi-agrawal's full-sized avatar
:octocat:
having fun!

Krishi Agrawal krishi-agrawal

:octocat:
having fun!
View GitHub Profile
@krishi-agrawal
krishi-agrawal / Lottery.sol
Created September 2, 2023 12:09
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.18+commit.87f61d96.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.5.0 <0.9.0;
contract Lottery{
address payable[] public players;
address public manager;