├── .github ├── contracts-json.png ├── deploy-contract.png ├── hardhat-config.png └── preview.png ├── .gitignore ├── LICENSE ├── README.md ├── contracts └── Token.sol ├── customize.md ├── deploy └── 001_deploy_token.ts ├── frontend ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── next.svg │ ├── thirteen.svg │ └── vercel.svg ├── src │ ├── components │ │ ├── Dapp.tsx │ │ └── NavBar.tsx │ ├── contracts │ │ └── contracts.json │ ├── pages │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ └── index.tsx │ └── styles │ │ └── globals.css ├── tailwind.config.js └── tsconfig.json ├── hardhat.config.ts ├── package.json ├── pnpm-lock.yaml ├── tasks └── faucet.ts ├── test ├── Token.test.ts └── chai-setup.ts └── tsconfig.json /.github/contracts-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/.github/contracts-json.png -------------------------------------------------------------------------------- /.github/deploy-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/.github/deploy-contract.png -------------------------------------------------------------------------------- /.github/hardhat-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/.github/hardhat-config.png -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/.github/preview.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/contracts/Token.sol -------------------------------------------------------------------------------- /customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/customize.md -------------------------------------------------------------------------------- /deploy/001_deploy_token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/deploy/001_deploy_token.ts -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/public/thirteen.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/src/components/Dapp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/components/Dapp.tsx -------------------------------------------------------------------------------- /frontend/src/components/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/components/NavBar.tsx -------------------------------------------------------------------------------- /frontend/src/contracts/contracts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/contracts/contracts.json -------------------------------------------------------------------------------- /frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/src/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tasks/faucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/tasks/faucet.ts -------------------------------------------------------------------------------- /test/Token.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/test/Token.test.ts -------------------------------------------------------------------------------- /test/chai-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/test/chai-setup.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleekxyz/evm-starter-kit/HEAD/tsconfig.json --------------------------------------------------------------------------------