@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 +8 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -618,7 +618,13 @@ var RelayService = class {
|
|
|
618
618
|
const feeAmount = await quoteOperatorFeePt({
|
|
619
619
|
provider: this.provider,
|
|
620
620
|
chainId: this.chainId,
|
|
621
|
-
pointTokenAddress: params.pointTokenAddress
|
|
621
|
+
pointTokenAddress: params.pointTokenAddress,
|
|
622
|
+
allowStaleFallback: true,
|
|
623
|
+
onFallback: (info) => {
|
|
624
|
+
console.warn(
|
|
625
|
+
`[RelayService] operatorFeeQuoter fallback (${info.source}): ${info.reason} \u2192 using ${info.fallbackValue}`
|
|
626
|
+
);
|
|
627
|
+
}
|
|
622
628
|
});
|
|
623
629
|
return { feeAmount, feeRecipient };
|
|
624
630
|
}
|
|
@@ -4551,7 +4557,7 @@ var MemoryRedemptionHistoryStore = class {
|
|
|
4551
4557
|
};
|
|
4552
4558
|
|
|
4553
4559
|
// src/index.ts
|
|
4554
|
-
var PAFI_ISSUER_SDK_VERSION = true ? "0.12.
|
|
4560
|
+
var PAFI_ISSUER_SDK_VERSION = true ? "0.12.5" : "dev";
|
|
4555
4561
|
export {
|
|
4556
4562
|
AdapterMisconfiguredError,
|
|
4557
4563
|
AuthError,
|