├── LICENSE ├── README.md ├── hardhat-tutorial ├── .gitignore ├── README.md ├── constants │ └── index.js ├── contracts │ ├── CryptoDevToken.sol │ ├── Greeter.sol │ └── ICryptoDevs.sol ├── hardhat.config.js ├── package-lock.json ├── package.json ├── scripts │ ├── deploy.js │ └── sample-script.js └── test │ └── sample-test.js └── my-app ├── .eslintrc.json ├── .gitignore ├── README.md ├── constants └── index.js ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js └── index.js ├── public ├── 0.svg ├── favicon.ico └── vercel.svg └── styles ├── Home.module.css └── globals.css /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/README.md -------------------------------------------------------------------------------- /hardhat-tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/.gitignore -------------------------------------------------------------------------------- /hardhat-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/README.md -------------------------------------------------------------------------------- /hardhat-tutorial/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/constants/index.js -------------------------------------------------------------------------------- /hardhat-tutorial/contracts/CryptoDevToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/contracts/CryptoDevToken.sol -------------------------------------------------------------------------------- /hardhat-tutorial/contracts/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/contracts/Greeter.sol -------------------------------------------------------------------------------- /hardhat-tutorial/contracts/ICryptoDevs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/contracts/ICryptoDevs.sol -------------------------------------------------------------------------------- /hardhat-tutorial/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/hardhat.config.js -------------------------------------------------------------------------------- /hardhat-tutorial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/package-lock.json -------------------------------------------------------------------------------- /hardhat-tutorial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/package.json -------------------------------------------------------------------------------- /hardhat-tutorial/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/scripts/deploy.js -------------------------------------------------------------------------------- /hardhat-tutorial/scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/scripts/sample-script.js -------------------------------------------------------------------------------- /hardhat-tutorial/test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/hardhat-tutorial/test/sample-test.js -------------------------------------------------------------------------------- /my-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /my-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/.gitignore -------------------------------------------------------------------------------- /my-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/README.md -------------------------------------------------------------------------------- /my-app/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/constants/index.js -------------------------------------------------------------------------------- /my-app/next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | } 4 | -------------------------------------------------------------------------------- /my-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/package-lock.json -------------------------------------------------------------------------------- /my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/package.json -------------------------------------------------------------------------------- /my-app/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/pages/_app.js -------------------------------------------------------------------------------- /my-app/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/pages/api/hello.js -------------------------------------------------------------------------------- /my-app/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/pages/index.js -------------------------------------------------------------------------------- /my-app/public/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/public/0.svg -------------------------------------------------------------------------------- /my-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/public/favicon.ico -------------------------------------------------------------------------------- /my-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/public/vercel.svg -------------------------------------------------------------------------------- /my-app/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/styles/Home.module.css -------------------------------------------------------------------------------- /my-app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/ICO/HEAD/my-app/styles/globals.css --------------------------------------------------------------------------------