From 9b5cc01a3d3d9bd1bf80d54b19042acc0bb7543c Mon Sep 17 00:00:00 2001 From: 0xfourzerofour <0x@404.sh> Date: Wed, 21 Jan 2026 15:51:44 -0500 Subject: [PATCH 1/2] feat(ape): add more advantages to doc --- .../bundler-sponsored-operations.mdx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx b/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx index 8c1541a1e..daacbe9fd 100644 --- a/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx +++ b/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx @@ -32,6 +32,24 @@ Bundler sponsorship, in contrast: For beta access, please reach out to [account-abstraction@alchemy.com](mailto:account-abstraction@alchemy.com). +## Key Advantage: No Fee Estimation or Retries Required + +One of the most significant benefits of bundler sponsorship is the **elimination of fee estimation and retry logic**. With traditional user operations, you need to: + +* Estimate gas fees before submitting operations +* Monitor if your estimated fees are sufficient +* Implement drop-and-replace logic when fees are too low +* Handle retry mechanisms when operations fail due to gas pricing + +**With bundler sponsorship, this complexity disappears entirely.** Simply set your Max Spend Per UO limit high enough, and the bundler will automatically handle landing your user operation without you needing to think about gas fees or implement retry logic. The bundler dynamically adjusts gas prices as needed to ensure your operation lands onchain, as long as it stays within your configured maximum. + +This provides: + +* **Zero fee estimation complexity**: No need to predict or calculate gas fees +* **No retry logic required**: The bundler handles landing the operation automatically +* **Simplified client code**: Remove drop-and-replace and retry mechanisms from your application +* **Higher reliability**: Operations land successfully without manual intervention or monitoring + ## Policy Setup To use bundler sponsorship, you must create a Gas Manager policy of type **Bundler Sponsored Operations** in your Alchemy dashboard. @@ -145,6 +163,7 @@ const PRIVATE_KEY = process.env.PRIVATE_KEY!; ## Benefits +* **No Fee Estimation or Retries**: Eliminates the need for gas fee estimation, drop-and-replace logic, and retry mechanisms—set your max limit and the bundler handles the rest * **Simplified Architecture**: No need to deploy or manage paymaster contracts * **Lower Onchain Gas Costs**: Eliminates the gas overhead of paymaster verification and contract calls * **Reduced Latency**: Fewer network calls and onchain interactions result in faster user operation processing From 3852aeb43d90c56bed4ca905765397ad0ff9a53c Mon Sep 17 00:00:00 2001 From: 0xfourzerofour <0x@404.sh> Date: Wed, 21 Jan 2026 15:53:10 -0500 Subject: [PATCH 2/2] feat(bso): add more advantages to doc --- fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx b/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx index daacbe9fd..3605f3c61 100644 --- a/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx +++ b/fern/wallets/pages/bundler-api/bundler-sponsored-operations.mdx @@ -163,7 +163,7 @@ const PRIVATE_KEY = process.env.PRIVATE_KEY!; ## Benefits -* **No Fee Estimation or Retries**: Eliminates the need for gas fee estimation, drop-and-replace logic, and retry mechanisms—set your max limit and the bundler handles the rest +* **No Fee Estimation or Retries**: Eliminates the need for gas fee estimation, drop-and-replace logic, and retry mechanisms. Just set your max limit and the bundler handles the rest * **Simplified Architecture**: No need to deploy or manage paymaster contracts * **Lower Onchain Gas Costs**: Eliminates the gas overhead of paymaster verification and contract calls * **Reduced Latency**: Fewer network calls and onchain interactions result in faster user operation processing