@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/{chunk-UEO4YN6T.js → chunk-4TNHRZ4X.js} +2 -2
- package/dist/{chunk-UEO4YN6T.js.map → chunk-4TNHRZ4X.js.map} +1 -1
- package/dist/{chunk-NT2ZPF72.cjs → chunk-UZUDJXKE.cjs} +2 -2
- package/dist/{chunk-NT2ZPF72.cjs.map → chunk-UZUDJXKE.cjs.map} +1 -1
- package/dist/eip712/index.cjs +2 -2
- package/dist/eip712/index.js +1 -1
- package/dist/index.cjs +12 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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-
|
|
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"]))
|