@volr/react 0.1.22 → 0.1.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -18336,11 +18336,11 @@ async function sendCalls(args) {
18336
18336
  }
18337
18337
  if (precheckQuote.simulationSuccess === false && precheckQuote.simulationErrors?.length) {
18338
18338
  const errors = precheckQuote.simulationErrors;
18339
- console.error("[sendCalls] Backend simulation failed:", errors);
18340
- const errorMessages = errors.map(
18341
- (e) => `Call #${e.index}: ${e.error}${e.revertData ? ` (data: ${e.revertData})` : ""}`
18342
- ).join("; ");
18343
- throw new Error(`Transaction simulation failed: ${errorMessages}`);
18339
+ console.warn("[sendCalls] Backend simulation failed (this may be expected for EIP-7702 transactions):", errors);
18340
+ for (const err of errors) {
18341
+ console.warn(`[sendCalls] Call #${err.index}: ${err.error}${err.revertData ? ` (revert data: ${err.revertData})` : ""}`);
18342
+ }
18343
+ console.warn("[sendCalls] Proceeding despite simulation failure - EIP-7702 execution context may differ");
18344
18344
  }
18345
18345
  if (precheckQuote.estimatedGasPerCall?.length) {
18346
18346
  console.log("[sendCalls] Applying estimated gas limits from backend...");