├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── components ├── Header.js ├── LotteryEntrance.js └── ManualHeader.js ├── constants ├── abi.json ├── contractAddresses.json └── index.js ├── img ├── IPFS-1.png ├── IPFS-2.png ├── IPFS-3.png ├── IPFS-4.png ├── IPFS-5.png ├── IPFS-6.png ├── IPFS-7.png ├── IPFS-8.png ├── readme-app.png └── readme-ipfs.png ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js └── index.js ├── postcss.config.js ├── public ├── favicon.ico └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/README.md -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/components/Header.js -------------------------------------------------------------------------------- /components/LotteryEntrance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/components/LotteryEntrance.js -------------------------------------------------------------------------------- /components/ManualHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/components/ManualHeader.js -------------------------------------------------------------------------------- /constants/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/constants/abi.json -------------------------------------------------------------------------------- /constants/contractAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/constants/contractAddresses.json -------------------------------------------------------------------------------- /constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/constants/index.js -------------------------------------------------------------------------------- /img/IPFS-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-1.png -------------------------------------------------------------------------------- /img/IPFS-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-2.png -------------------------------------------------------------------------------- /img/IPFS-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-3.png -------------------------------------------------------------------------------- /img/IPFS-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-4.png -------------------------------------------------------------------------------- /img/IPFS-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-5.png -------------------------------------------------------------------------------- /img/IPFS-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-6.png -------------------------------------------------------------------------------- /img/IPFS-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-7.png -------------------------------------------------------------------------------- /img/IPFS-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/IPFS-8.png -------------------------------------------------------------------------------- /img/readme-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/readme-app.png -------------------------------------------------------------------------------- /img/readme-ipfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/img/readme-ipfs.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/pages/index.js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickAlphaC/nextjs-smartcontract-lottery-fcc/HEAD/yarn.lock --------------------------------------------------------------------------------