├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── README.md ├── chains.min.json ├── components └── SEO.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── [network].ts └── index.tsx ├── public ├── favicon.ico └── vercel.svg ├── scripts └── build-chains.js ├── styles ├── Home.module.css └── globals.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/README.md -------------------------------------------------------------------------------- /chains.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/chains.min.json -------------------------------------------------------------------------------- /components/SEO.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/components/SEO.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/[network].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/pages/api/[network].ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /scripts/build-chains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/scripts/build-chains.js -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawsbot/free-eth-node/HEAD/tsconfig.json --------------------------------------------------------------------------------