@pafi-dev/issuer 0.3.0-beta.5 → 0.3.0-beta.6

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.d.cts CHANGED
@@ -869,6 +869,18 @@ interface ApiConfigResponse {
869
869
  mintingOracle?: Address;
870
870
  poolManager?: Address;
871
871
  usdt?: Address;
872
+ /**
873
+ * EIP-7702 delegation target — the single contract every user's
874
+ * EOA must delegate to before submitting sponsored UserOps. On
875
+ * Base mainnet this is Coinbase Smart Wallet v2.
876
+ */
877
+ batchExecutor?: Address;
878
+ /**
879
+ * Uniswap V4 hook that enforces the 10% fee on PT→USDT swaps
880
+ * (USDT→PT is free). FE uses this in `PoolKey.hooks` when building
881
+ * a swap; the pool is only discoverable when the hook matches.
882
+ */
883
+ pafiHook?: Address;
872
884
  };
873
885
  /**
874
886
  * Absolute URL that the Issuer App opens after a successful claim to
package/dist/index.d.ts CHANGED
@@ -869,6 +869,18 @@ interface ApiConfigResponse {
869
869
  mintingOracle?: Address;
870
870
  poolManager?: Address;
871
871
  usdt?: Address;
872
+ /**
873
+ * EIP-7702 delegation target — the single contract every user's
874
+ * EOA must delegate to before submitting sponsored UserOps. On
875
+ * Base mainnet this is Coinbase Smart Wallet v2.
876
+ */
877
+ batchExecutor?: Address;
878
+ /**
879
+ * Uniswap V4 hook that enforces the 10% fee on PT→USDT swaps
880
+ * (USDT→PT is free). FE uses this in `PoolKey.hooks` when building
881
+ * a swap; the pool is only discoverable when the hook matches.
882
+ */
883
+ pafiHook?: Address;
872
884
  };
873
885
  /**
874
886
  * Absolute URL that the Issuer App opens after a successful claim to
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pafi-dev/issuer",
3
- "version": "0.3.0-beta.5",
3
+ "version": "0.3.0-beta.6",
4
4
  "description": "Issuer backend API and services for the PAFI point token system",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "dependencies": {
25
25
  "jose": "^5.9.0",
26
- "@pafi-dev/core": "0.3.0-beta.5"
26
+ "@pafi-dev/core": "0.3.0-beta.6"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "viem": "^2.0.0"