@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nibgate/sdk",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Framework-agnostic browser and server package for creator-owned gated content, unlock events, and receipts.",
5
5
  "type": "module",
6
6
  "sideEffects": [
@@ -21,7 +21,9 @@ export async function createCircleGatewayBrowserAdapter(options = {}) {
21
21
  try {
22
22
  const circle = await import('@circle-fin/x402-batching/client');
23
23
  BatchEvmScheme = circle.BatchEvmScheme;
24
- } catch {
24
+ } catch (err) {
25
+ console.warn('[nibgate] Failed to import @circle-fin/x402-batching/client:', err.message);
26
+ console.warn('[nibgate] Falling back to custom BatchEvmScheme');
25
27
  const local = await import('./schemes/batch-scheme.js');
26
28
  BatchEvmScheme = local.BatchEvmScheme;
27
29
  }