From 68f97861ae44851d1738343daf38c1b9874f4013 Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Tue, 28 Jul 2026 04:49:53 +0000 Subject: [PATCH 1/2] [docs-agent] Add X Layer and Arc minimum EntryPoint stake to bundler FAQs Adds X Layer Mainnet, X Layer Testnet, Arc Mainnet, and Arc Testnet at 0.1 ETH (global default) to the Minimum EntryPoint stake amount tables. Confirmed by tx-team in-thread that these chains follow the default (no MIN_STAKE_VALUE override in their rundler configs). World Chain Mainnet and World Chain Sepolia already exist in the tables at 0.1 ETH. Refs DOCS-166 Requested-by: @seansing --- content/wallets/pages/bundler-api/bundler-faqs.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/wallets/pages/bundler-api/bundler-faqs.mdx b/content/wallets/pages/bundler-api/bundler-faqs.mdx index ae8dc9f2c..e9e0c9335 100644 --- a/content/wallets/pages/bundler-api/bundler-faqs.mdx +++ b/content/wallets/pages/bundler-api/bundler-faqs.mdx @@ -221,6 +221,8 @@ Mainnets: | Ink Mainnet | 0.1 ETH | | DATA Network Mainnet | 0.1 ETH | | Plasma Mainnet | 0.1 ETH | +| X Layer Mainnet | 0.1 ETH | +| Arc Mainnet | 0.1 ETH | | Celo Mainnet | 0.1 CELO | | OpBNB Mainnet | 0.4 BNB | @@ -254,6 +256,8 @@ Testnets: | Celo Alfajores | 0.1 CELO | | Tea Sepolia | 0.1 ETH | | Educhain Testnet | 0.1 ETH | +| X Layer Testnet | 0.1 ETH | +| Arc Testnet | 0.1 ETH | | OpBNB Testnet | 0.4 BNB | Paymasters and factories must have at least the above stake or their userOps will be rejected. Accounts only need to stake if they wish to exceed 4 parallel nonces in the Bundler's mempool; otherwise, userOps beyond this limit will be rejected. The same stake amounts apply to accounts. From 1b0a094868fbd5fc5bdb5155783d55b9f6635abb Mon Sep 17 00:00:00 2001 From: alchemy-bot <80712764+alchemy-bot@users.noreply.github.com> Date: Tue, 28 Jul 2026 08:04:41 +0000 Subject: [PATCH 2/2] [docs-agent] Use native gas token denominations for X Layer (OKB) and Arc (USDC) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Applied codex P2 feedback on PR #1485. X Layer's native gas token is OKB (per OKX docs at web3.okx.com/xlayer); Arc's native gas token is USDC (per content/api-reference/arc/arc-api-faq.mdx line 9). The Min Stake column is denominated in each chain's native gas token (see Celo → 0.1 CELO, OpBNB → 0.4 BNB precedent, and the recent Cronos/Monad correction in PR #1454). The rundler config's default MIN_STAKE_VALUE is 10^17 wei of the chain's gas token — which is 0.1 OKB on X Layer and 0.1 USDC on Arc, not 0.1 ETH. Refs DOCS-166 Requested-by: @seansing --- content/wallets/pages/bundler-api/bundler-faqs.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/wallets/pages/bundler-api/bundler-faqs.mdx b/content/wallets/pages/bundler-api/bundler-faqs.mdx index e9e0c9335..1db8938be 100644 --- a/content/wallets/pages/bundler-api/bundler-faqs.mdx +++ b/content/wallets/pages/bundler-api/bundler-faqs.mdx @@ -221,8 +221,8 @@ Mainnets: | Ink Mainnet | 0.1 ETH | | DATA Network Mainnet | 0.1 ETH | | Plasma Mainnet | 0.1 ETH | -| X Layer Mainnet | 0.1 ETH | -| Arc Mainnet | 0.1 ETH | +| X Layer Mainnet | 0.1 OKB | +| Arc Mainnet | 0.1 USDC | | Celo Mainnet | 0.1 CELO | | OpBNB Mainnet | 0.4 BNB | @@ -256,8 +256,8 @@ Testnets: | Celo Alfajores | 0.1 CELO | | Tea Sepolia | 0.1 ETH | | Educhain Testnet | 0.1 ETH | -| X Layer Testnet | 0.1 ETH | -| Arc Testnet | 0.1 ETH | +| X Layer Testnet | 0.1 OKB | +| Arc Testnet | 0.1 USDC | | OpBNB Testnet | 0.4 BNB | Paymasters and factories must have at least the above stake or their userOps will be rejected. Accounts only need to stake if they wish to exceed 4 parallel nonces in the Bundler's mempool; otherwise, userOps beyond this limit will be rejected. The same stake amounts apply to accounts.