├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public ├── logo.png └── meta.png ├── styles ├── Home.module.scss └── global.scss └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/public/meta.png -------------------------------------------------------------------------------- /styles/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/styles/Home.module.scss -------------------------------------------------------------------------------- /styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/styles/global.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anish-Agnihotri/flashbots-connect-rpc/HEAD/tsconfig.json --------------------------------------------------------------------------------