@nibgate/sdk 0.2.13 → 0.2.14

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/nibgate.js CHANGED
@@ -639,7 +639,9 @@ var Nibgate = (() => {
639
639
  try {
640
640
  const circle = await import("@circle-fin/x402-batching/client");
641
641
  BatchEvmScheme2 = circle.BatchEvmScheme;
642
- } catch {
642
+ } catch (err) {
643
+ console.warn("[nibgate] Failed to import @circle-fin/x402-batching/client:", err.message);
644
+ console.warn("[nibgate] Falling back to custom BatchEvmScheme");
643
645
  const local = await Promise.resolve().then(() => (init_batch_scheme(), batch_scheme_exports));
644
646
  BatchEvmScheme2 = local.BatchEvmScheme;
645
647
  }