@pafi-dev/issuer 0.12.4 → 0.12.5

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
@@ -849,7 +849,13 @@ var RelayService = class {
849
849
  const feeAmount = await (0, import_core5.quoteOperatorFeePt)({
850
850
  provider: this.provider,
851
851
  chainId: this.chainId,
852
- pointTokenAddress: params.pointTokenAddress
852
+ pointTokenAddress: params.pointTokenAddress,
853
+ allowStaleFallback: true,
854
+ onFallback: (info) => {
855
+ console.warn(
856
+ `[RelayService] operatorFeeQuoter fallback (${info.source}): ${info.reason} \u2192 using ${info.fallbackValue}`
857
+ );
858
+ }
853
859
  });
854
860
  return { feeAmount, feeRecipient };
855
861
  }
@@ -4729,7 +4735,7 @@ var MemoryRedemptionHistoryStore = class {
4729
4735
  };
4730
4736
 
4731
4737
  // src/index.ts
4732
- var PAFI_ISSUER_SDK_VERSION = true ? "0.12.3" : "dev";
4738
+ var PAFI_ISSUER_SDK_VERSION = true ? "0.12.5" : "dev";
4733
4739
  // Annotate the CommonJS export names for ESM import in node:
4734
4740
  0 && (module.exports = {
4735
4741
  AdapterMisconfiguredError,