├── Final ├── admin-front-end │ ├── components │ │ ├── config.js │ │ ├── interfaces.js │ │ └── tokenAbi.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── api │ │ │ └── hello.js │ │ └── index.js │ └── public │ │ ├── favicon.ico │ │ ├── n2dlotto.png │ │ ├── n2dr.png │ │ ├── next.svg │ │ ├── thirteen.svg │ │ └── vercel.svg ├── backend │ ├── LotteryABI.json │ ├── backend.js │ ├── interfaces.js │ └── package.json ├── game-front-end │ ├── components │ │ ├── config.js │ │ ├── erc20abi.json │ │ ├── interfaces.js │ │ ├── lottoabi.json │ │ └── web3functions.js │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── api │ │ │ └── hello.js │ │ └── index.js │ ├── public │ │ ├── bsc.png │ │ ├── cartoon1.png │ │ ├── cartoon2.png │ │ ├── ethereumlogo.png │ │ ├── favicon.ico │ │ ├── n2dLotto2.png │ │ ├── n2dlotto.png │ │ ├── n2dr.png │ │ ├── polygonwhite.png │ │ ├── star-big.png │ │ ├── star-small.png │ │ ├── three-stars.png │ │ ├── ticket-l.png │ │ ├── ticket-r.png │ │ ├── tombola.png │ │ ├── torn-ticket-l.png │ │ ├── torn-ticket-r.png │ │ └── vercel.svg │ └── styles │ │ ├── Home.module.css │ │ ├── ball.css │ │ └── globals.css └── smart-contracts │ ├── N2D-ERC20-Sample-SmartContract.sol │ └── N2DLotto-SmartContract-Final.sol ├── Part2 ├── N2DLotto-SmartContract-ChainlinkVRF-Part1.sol └── bubblesort.js ├── Part3 ├── N2D-ERC20-Sample-SmartContract.sol └── N2DLotto-SmartContract-Final.sol ├── Part4 ├── LotteryABI.json ├── backend.js ├── interfaces.js └── package.json ├── Part5 ├── admin_frontend_files │ ├── components │ │ ├── config.js │ │ ├── interfaces.js │ │ └── tokenAbi.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── api │ │ │ └── hello.js │ │ └── index.js │ └── public │ │ ├── favicon.ico │ │ ├── n2dlotto.png │ │ ├── n2dr.png │ │ ├── next.svg │ │ ├── thirteen.svg │ │ └── vercel.svg └── backend_files │ ├── backend.js │ └── interfaces.js └── README.md /Final/admin-front-end/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/components/config.js -------------------------------------------------------------------------------- /Final/admin-front-end/components/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/components/interfaces.js -------------------------------------------------------------------------------- /Final/admin-front-end/components/tokenAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/components/tokenAbi.json -------------------------------------------------------------------------------- /Final/admin-front-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/package.json -------------------------------------------------------------------------------- /Final/admin-front-end/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/pages/_app.js -------------------------------------------------------------------------------- /Final/admin-front-end/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/pages/_document.js -------------------------------------------------------------------------------- /Final/admin-front-end/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/pages/api/hello.js -------------------------------------------------------------------------------- /Final/admin-front-end/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/pages/index.js -------------------------------------------------------------------------------- /Final/admin-front-end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/favicon.ico -------------------------------------------------------------------------------- /Final/admin-front-end/public/n2dlotto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/n2dlotto.png -------------------------------------------------------------------------------- /Final/admin-front-end/public/n2dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/n2dr.png -------------------------------------------------------------------------------- /Final/admin-front-end/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/next.svg -------------------------------------------------------------------------------- /Final/admin-front-end/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/thirteen.svg -------------------------------------------------------------------------------- /Final/admin-front-end/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/admin-front-end/public/vercel.svg -------------------------------------------------------------------------------- /Final/backend/LotteryABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/backend/LotteryABI.json -------------------------------------------------------------------------------- /Final/backend/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/backend/backend.js -------------------------------------------------------------------------------- /Final/backend/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/backend/interfaces.js -------------------------------------------------------------------------------- /Final/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/backend/package.json -------------------------------------------------------------------------------- /Final/game-front-end/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/components/config.js -------------------------------------------------------------------------------- /Final/game-front-end/components/erc20abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/components/erc20abi.json -------------------------------------------------------------------------------- /Final/game-front-end/components/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/components/interfaces.js -------------------------------------------------------------------------------- /Final/game-front-end/components/lottoabi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/components/lottoabi.json -------------------------------------------------------------------------------- /Final/game-front-end/components/web3functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/components/web3functions.js -------------------------------------------------------------------------------- /Final/game-front-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/package.json -------------------------------------------------------------------------------- /Final/game-front-end/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/pages/_app.js -------------------------------------------------------------------------------- /Final/game-front-end/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/pages/_document.js -------------------------------------------------------------------------------- /Final/game-front-end/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/pages/api/hello.js -------------------------------------------------------------------------------- /Final/game-front-end/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/pages/index.js -------------------------------------------------------------------------------- /Final/game-front-end/public/bsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/bsc.png -------------------------------------------------------------------------------- /Final/game-front-end/public/cartoon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/cartoon1.png -------------------------------------------------------------------------------- /Final/game-front-end/public/cartoon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/cartoon2.png -------------------------------------------------------------------------------- /Final/game-front-end/public/ethereumlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/ethereumlogo.png -------------------------------------------------------------------------------- /Final/game-front-end/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/favicon.ico -------------------------------------------------------------------------------- /Final/game-front-end/public/n2dLotto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/n2dLotto2.png -------------------------------------------------------------------------------- /Final/game-front-end/public/n2dlotto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/n2dlotto.png -------------------------------------------------------------------------------- /Final/game-front-end/public/n2dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/n2dr.png -------------------------------------------------------------------------------- /Final/game-front-end/public/polygonwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/polygonwhite.png -------------------------------------------------------------------------------- /Final/game-front-end/public/star-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/star-big.png -------------------------------------------------------------------------------- /Final/game-front-end/public/star-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/star-small.png -------------------------------------------------------------------------------- /Final/game-front-end/public/three-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/three-stars.png -------------------------------------------------------------------------------- /Final/game-front-end/public/ticket-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/ticket-l.png -------------------------------------------------------------------------------- /Final/game-front-end/public/ticket-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/ticket-r.png -------------------------------------------------------------------------------- /Final/game-front-end/public/tombola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/tombola.png -------------------------------------------------------------------------------- /Final/game-front-end/public/torn-ticket-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/torn-ticket-l.png -------------------------------------------------------------------------------- /Final/game-front-end/public/torn-ticket-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/torn-ticket-r.png -------------------------------------------------------------------------------- /Final/game-front-end/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/public/vercel.svg -------------------------------------------------------------------------------- /Final/game-front-end/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/styles/Home.module.css -------------------------------------------------------------------------------- /Final/game-front-end/styles/ball.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/styles/ball.css -------------------------------------------------------------------------------- /Final/game-front-end/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/game-front-end/styles/globals.css -------------------------------------------------------------------------------- /Final/smart-contracts/N2D-ERC20-Sample-SmartContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/smart-contracts/N2D-ERC20-Sample-SmartContract.sol -------------------------------------------------------------------------------- /Final/smart-contracts/N2DLotto-SmartContract-Final.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Final/smart-contracts/N2DLotto-SmartContract-Final.sol -------------------------------------------------------------------------------- /Part2/N2DLotto-SmartContract-ChainlinkVRF-Part1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part2/N2DLotto-SmartContract-ChainlinkVRF-Part1.sol -------------------------------------------------------------------------------- /Part2/bubblesort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part2/bubblesort.js -------------------------------------------------------------------------------- /Part3/N2D-ERC20-Sample-SmartContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part3/N2D-ERC20-Sample-SmartContract.sol -------------------------------------------------------------------------------- /Part3/N2DLotto-SmartContract-Final.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part3/N2DLotto-SmartContract-Final.sol -------------------------------------------------------------------------------- /Part4/LotteryABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part4/LotteryABI.json -------------------------------------------------------------------------------- /Part4/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part4/backend.js -------------------------------------------------------------------------------- /Part4/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part4/interfaces.js -------------------------------------------------------------------------------- /Part4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part4/package.json -------------------------------------------------------------------------------- /Part5/admin_frontend_files/components/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/components/config.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/components/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/components/interfaces.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/components/tokenAbi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/components/tokenAbi.json -------------------------------------------------------------------------------- /Part5/admin_frontend_files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/package.json -------------------------------------------------------------------------------- /Part5/admin_frontend_files/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/pages/_app.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/pages/_document.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/pages/api/hello.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/pages/index.js -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/favicon.ico -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/n2dlotto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/n2dlotto.png -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/n2dr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/n2dr.png -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/next.svg -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/thirteen.svg -------------------------------------------------------------------------------- /Part5/admin_frontend_files/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/admin_frontend_files/public/vercel.svg -------------------------------------------------------------------------------- /Part5/backend_files/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/backend_files/backend.js -------------------------------------------------------------------------------- /Part5/backend_files/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/Part5/backend_files/interfaces.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/N2DLotto-ERC20-Lottery-App/HEAD/README.md --------------------------------------------------------------------------------