From a89cb4b26c39cad112b24e643bd80886ec002763 Mon Sep 17 00:00:00 2001 From: theomart77 <69779428+theomart77@users.noreply.github.com> Date: Wed, 12 Nov 2025 22:55:03 -0500 Subject: [PATCH] Add BundleParams example to understanding bundles Added example BundleParams configuration to the document. --- .../searchers/understanding-bundles.mdx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/flashbots-mev-share/searchers/understanding-bundles.mdx b/docs/flashbots-mev-share/searchers/understanding-bundles.mdx index 74469ab88..ebff82092 100644 --- a/docs/flashbots-mev-share/searchers/understanding-bundles.mdx +++ b/docs/flashbots-mev-share/searchers/understanding-bundles.mdx @@ -1,4 +1,18 @@ ---- +-const params: BundleParams = { + inclusion: { + block: 17539448, + maxBlock: 17539458 + }, + body: [ + {tx: "0x02...", canRevert: false}, + {tx: "0x02...", canRevert: false}, + ], + privacy: { + hints: { + txHash: true, + }, + }, +}-- title: Understanding Bundles ---