MEVblocker.io: The best MEV protection under the sun
MEV Blocker is your personal protection from frontrunning and sandwich attacks for a broad spectrum of Ethereum transactions.
- Add the RPC endpoint directly to your wallet
- Trade with DeFi, mint NFTs, or use any dApp
- MEV Blocker auto-protects all transactions
| Network Name | MEV Blocker |
|---|---|
| New RPC URL | https://rpc.mevblocker.io |
| Chain ID | 1 |
| Currency Symbol | ETH |
| Block Explorer URL | https://etherscan.io |
Run the development server: Choose your preferred package manager and run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
Open the application: Visit http://localhost:3000 in your browser to see the result.
- Edit general site Config/Meta data ->
src/const/meta.ts - Edit main and footer menu ->
src/const/menu.ts - Index / Landing page -> Start editing the landing page by modifying pages/index.tsx.
- Add or Remove a Launch partner (Launch partners section on landing page) -> Add an object to
const LAUNCH_PARTNERSinsrc/const/content.tsx. Make sure the logo is a SVG in color black (#000000) and add it to the root folderpublic/partners. - Edit misc content like FAQ items, USPs that are shown on the index / landing page ->
src/const/content.tsx - /docs/ -> Comes from page
src/pages/docs.mdxand the content is sourced directly from a Markdown filesrc/const/docs.md. Please editsrc/const/docs.mdif you want to edit the content on /docs/ - Add a new page (e.g. /cookie-policy/) -> Create a
.tsxfile under foldersrc/pages/. You could copysrc/pages/404.tsxto have a general content page example. Or if the content is going to be Markdown sourced you could copysrc/pages/docs.mdx.
