gitextract_k2vcmtga/ ├── .cspell.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github/ │ ├── CODEOWNERS │ ├── dependabot.yml │ └── workflows/ │ ├── algolia.yml.txt │ ├── broken-link-check-cron.yml.txt │ └── pr-tests.yml ├── .gitignore ├── .lintstagedrc.json ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .stylelintignore ├── .stylelintrc.js ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── LICENSE ├── LICENSE-docs ├── README.md ├── babel.config.js ├── docs/ │ ├── brand-assets.mdx │ ├── cheatsheet.mdx │ ├── code-of-conduct.mdx │ ├── community-tools.mdx │ ├── contribution-guide.mdx │ ├── flashbots-auction/ │ │ ├── advanced/ │ │ │ ├── bundle-cancellations.mdx │ │ │ ├── bundle-pricing.md │ │ │ ├── co-locate.mdx │ │ │ ├── coinbase-payment.mdx │ │ │ ├── eip1559.mdx │ │ │ ├── gas-fee-refunds.md │ │ │ ├── multiplexing.mdx │ │ │ ├── reputation.md │ │ │ ├── rpc-endpoint.mdx │ │ │ ├── testnets.mdx │ │ │ ├── troubleshooting.mdx │ │ │ └── understanding-bundles.mdx │ │ ├── example-searchers/ │ │ │ ├── searcher-minter.md │ │ │ ├── searcher-sponsored-tx.md │ │ │ ├── simple-arbitrage-bot.md │ │ │ └── synthetix-searcher.md │ │ ├── faq.md │ │ ├── libraries/ │ │ │ ├── alchemyprovider.md │ │ │ ├── bundle-relay.md │ │ │ ├── ethers-js-provider.md │ │ │ ├── golang.md │ │ │ ├── mev-share-clients.md │ │ │ ├── rust-provider.md │ │ │ └── web3py-provider.md │ │ ├── other-resources.md │ │ ├── overview.mdx │ │ └── quick-start.mdx │ ├── flashbots-mev-boost/ │ │ ├── FAQ.md │ │ ├── architecture-overview/ │ │ │ ├── block-proposal.md │ │ │ ├── risks.md │ │ │ └── specifications.md │ │ ├── block-builders.md │ │ ├── block-proposers.md │ │ ├── contributing.md │ │ ├── getting-started/ │ │ │ ├── installation.md │ │ │ ├── system-requirements.md │ │ │ └── usage.md │ │ ├── glossary.md │ │ ├── introduction.md │ │ ├── relay.md │ │ ├── resources.md │ │ ├── security.md │ │ └── troubleshooting.md │ ├── flashbots-mev-share/ │ │ ├── for-users.mdx │ │ ├── introduction.mdx │ │ ├── orderflow-providers.mdx │ │ ├── release-notes/ │ │ │ ├── 2023-03.mdx │ │ │ ├── 2023-06.mdx │ │ │ ├── 2023-07.mdx │ │ │ └── 2023-09.mdx │ │ └── searchers/ │ │ ├── debugging.mdx │ │ ├── event-stream.mdx │ │ ├── getting-started.mdx │ │ ├── ratelimiting.mdx │ │ ├── sending-bundles.mdx │ │ ├── tutorials/ │ │ │ ├── flash-loan-arbitrage/ │ │ │ │ ├── bot.mdx │ │ │ │ ├── flash-loan-basics.mdx │ │ │ │ ├── introduction.mdx │ │ │ │ └── simple-blind-arbitrage.mdx │ │ │ └── limit-order/ │ │ │ ├── debugging.mdx │ │ │ ├── introduction.mdx │ │ │ ├── more-resources.mdx │ │ │ ├── sending-bundles.mdx │ │ │ ├── setup.mdx │ │ │ └── using-events.mdx │ │ └── understanding-bundles.mdx │ ├── flashbots-protect/ │ │ ├── additional-documentation/ │ │ │ ├── eth-sendPrivateTransaction.mdx │ │ │ └── status-api.md │ │ ├── cancellations.md │ │ ├── gas-fee-refunds.md │ │ ├── large-transactions.md │ │ ├── mev-refunds.mdx │ │ ├── nonce-management.mdx │ │ ├── overview.mdx │ │ ├── quick-start.mdx │ │ ├── ratelimiting.mdx │ │ ├── settings-guide.md │ │ └── stuck_transactions.md │ ├── guide-send-tx-bundle.mdx │ ├── joining-flashbots.mdx │ ├── new-to-mev.mdx │ ├── policies/ │ │ ├── privacy.mdx │ │ ├── prohibited-use-policy.mdx │ │ └── terms-of-service.mdx │ ├── sidebars.js │ ├── specs/ │ │ ├── README.md │ │ ├── contracts/ │ │ │ └── abi/ │ │ │ ├── _flashLoanArb.mdx │ │ │ └── _uniswapV2Factory.mdx │ │ ├── mev-share/ │ │ │ ├── HintsTable.jsx │ │ │ ├── _builders.mdx │ │ │ ├── _mev_sendBundle.mdx │ │ │ ├── _mev_simBundle.mdx │ │ │ ├── _streamEvent.mdx │ │ │ ├── blurbs/ │ │ │ │ ├── _builderInheritance.mdx │ │ │ │ ├── _whatsMevShareAdvanced.mdx │ │ │ │ ├── _whatsMevShareBasic.mdx │ │ │ │ └── _whatsaMEVShareNode.mdx │ │ │ └── hints.json │ │ └── protect-rpc/ │ │ └── _hints.mdx │ ├── welcome.mdx │ └── whitehat.mdx ├── docusaurus.config.js ├── package.json ├── project-words.txt ├── src/ │ ├── components/ │ │ ├── Banner/ │ │ │ ├── Banner.custom.module.scss │ │ │ ├── Banner.module.scss │ │ │ ├── Banner.tsx │ │ │ ├── _base.scss │ │ │ └── banner.config.tsx │ │ ├── BrandAssets/ │ │ │ ├── AssetCard.tsx │ │ │ ├── Download.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Checkbox/ │ │ │ └── index.tsx │ │ ├── Grid/ │ │ │ ├── Grid.tsx │ │ │ └── styles.module.css │ │ ├── GridBlock/ │ │ │ ├── GridBlock.tsx │ │ │ └── styles.module.css │ │ ├── ProtectButton/ │ │ │ └── index.tsx │ │ ├── RemoteCodeBlock/ │ │ │ └── index.tsx │ │ ├── SimpleDropdown/ │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ └── mev-share/ │ │ ├── buildersTable.tsx │ │ └── useSupportedBuilders.tsx │ ├── css/ │ │ └── custom.css │ ├── pages/ │ │ └── styles.module.css │ ├── theme/ │ │ ├── Layout/ │ │ │ └── index.tsx │ │ └── Navbar/ │ │ ├── index.js │ │ └── navbar.module.css │ └── types/ │ └── global.d.ts ├── static/ │ ├── .nojekyll │ ├── img/ │ │ └── site.webmanifest │ └── robots.txt ├── tailwind.config.js ├── tsconfig.json └── vercel.json