@pafi-dev/issuer 0.10.0 → 0.10.1

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
@@ -2658,7 +2658,8 @@ var PTClaimHandler = class {
2658
2658
  issuerSignerWallet: this.cfg.issuerSignerWallet,
2659
2659
  domain,
2660
2660
  mintRequestNonce: request.mintRequestNonce,
2661
- deadline: signatureDeadline
2661
+ deadline: signatureDeadline,
2662
+ mintFeeWrapperAddress: this.cfg.mintFeeWrapperAddress
2662
2663
  // No feeAmount/feeRecipient — RelayService auto-resolves.
2663
2664
  });
2664
2665
  } catch (err) {
@@ -2680,7 +2681,8 @@ var PTClaimHandler = class {
2680
2681
  domain,
2681
2682
  mintRequestNonce: request.mintRequestNonce,
2682
2683
  deadline: signatureDeadline,
2683
- feeAmount: 0n
2684
+ feeAmount: 0n,
2685
+ mintFeeWrapperAddress: this.cfg.mintFeeWrapperAddress
2684
2686
  });
2685
2687
  } catch (err) {
2686
2688
  throw new PTClaimError(
@@ -4592,7 +4594,7 @@ var MemoryRedemptionHistoryStore = class {
4592
4594
  };
4593
4595
 
4594
4596
  // src/index.ts
4595
- var PAFI_ISSUER_SDK_VERSION = true ? "0.10.0" : "dev";
4597
+ var PAFI_ISSUER_SDK_VERSION = true ? "0.10.1" : "dev";
4596
4598
  // Annotate the CommonJS export names for ESM import in node:
4597
4599
  0 && (module.exports = {
4598
4600
  AdapterMisconfiguredError,