@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 +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -18312,11 +18312,11 @@ async function sendCalls(args) {
|
|
|
18312
18312
|
}
|
|
18313
18313
|
if (precheckQuote.simulationSuccess === false && precheckQuote.simulationErrors?.length) {
|
|
18314
18314
|
const errors = precheckQuote.simulationErrors;
|
|
18315
|
-
console.
|
|
18316
|
-
const
|
|
18317
|
-
(
|
|
18318
|
-
|
|
18319
|
-
|
|
18315
|
+
console.warn("[sendCalls] Backend simulation failed (this may be expected for EIP-7702 transactions):", errors);
|
|
18316
|
+
for (const err of errors) {
|
|
18317
|
+
console.warn(`[sendCalls] Call #${err.index}: ${err.error}${err.revertData ? ` (revert data: ${err.revertData})` : ""}`);
|
|
18318
|
+
}
|
|
18319
|
+
console.warn("[sendCalls] Proceeding despite simulation failure - EIP-7702 execution context may differ");
|
|
18320
18320
|
}
|
|
18321
18321
|
if (precheckQuote.estimatedGasPerCall?.length) {
|
|
18322
18322
|
console.log("[sendCalls] Applying estimated gas limits from backend...");
|