@pafi-dev/core 0.14.0 → 0.16.0

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
@@ -101,6 +101,9 @@ declare const ENTRY_POINT_V07: Address;
101
101
  */
102
102
  declare const ENTRY_POINT_V08: Address;
103
103
  /** Permit2 — Uniswap's universal approval contract, same address on all EVM chains. */
104
+ /**
105
+ * Permit2 — PAFI's deployed instance. PAFI ships its own forked deployment.
106
+ */
104
107
  declare const PERMIT2_ADDRESS: Address;
105
108
 
106
109
  /**
@@ -306,6 +309,10 @@ declare const BROKER_HASHES: {
306
309
  readonly orderly: `0x${string}`;
307
310
  /** LogX. */
308
311
  readonly logx: `0x${string}`;
312
+ /** Orderly's demo broker — whitelisted on Base mainnet for dev/test
313
+ * integrations. Same Vault, same path; an Orderly demo account is
314
+ * independent from production accounts. */
315
+ readonly demo: `0x${string}`;
309
316
  };
310
317
  /**
311
318
  * Pre-computed token hashes — `keccak256(abi.encodePacked(tokenSymbol))`.
package/dist/index.d.ts CHANGED
@@ -101,6 +101,9 @@ declare const ENTRY_POINT_V07: Address;
101
101
  */
102
102
  declare const ENTRY_POINT_V08: Address;
103
103
  /** Permit2 — Uniswap's universal approval contract, same address on all EVM chains. */
104
+ /**
105
+ * Permit2 — PAFI's deployed instance. PAFI ships its own forked deployment.
106
+ */
104
107
  declare const PERMIT2_ADDRESS: Address;
105
108
 
106
109
  /**
@@ -306,6 +309,10 @@ declare const BROKER_HASHES: {
306
309
  readonly orderly: `0x${string}`;
307
310
  /** LogX. */
308
311
  readonly logx: `0x${string}`;
312
+ /** Orderly's demo broker — whitelisted on Base mainnet for dev/test
313
+ * integrations. Same Vault, same path; an Orderly demo account is
314
+ * independent from production accounts. */
315
+ readonly demo: `0x${string}`;
309
316
  };
310
317
  /**
311
318
  * Pre-computed token hashes — `keccak256(abi.encodePacked(tokenSymbol))`.
package/dist/index.js CHANGED
@@ -66,7 +66,7 @@ import {
66
66
  signMintRequest,
67
67
  verifyBurnRequest,
68
68
  verifyMintRequest
69
- } from "./chunk-UEO4YN6T.js";
69
+ } from "./chunk-4TNHRZ4X.js";
70
70
  import {
71
71
  pointTokenAbi
72
72
  } from "./chunk-UCO5DXD6.js";
@@ -203,7 +203,11 @@ var BROKER_HASHES = {
203
203
  /** Orderly's own white-label broker. */
204
204
  orderly: keccak256(encodePacked(["string"], ["orderly"])),
205
205
  /** LogX. */
206
- logx: keccak256(encodePacked(["string"], ["logx"]))
206
+ logx: keccak256(encodePacked(["string"], ["logx"])),
207
+ /** Orderly's demo broker — whitelisted on Base mainnet for dev/test
208
+ * integrations. Same Vault, same path; an Orderly demo account is
209
+ * independent from production accounts. */
210
+ demo: keccak256(encodePacked(["string"], ["demo"]))
207
211
  };
208
212
  var TOKEN_HASHES = {
209
213
  USDC: keccak256(encodePacked(["string"], ["USDC"]))