@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.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.
|
|
18340
|
-
const
|
|
18341
|
-
(
|
|
18342
|
-
|
|
18343
|
-
|
|
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...");
|