@pafi-dev/core 0.15.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.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -309,6 +309,10 @@ declare const BROKER_HASHES: {
|
|
|
309
309
|
readonly orderly: `0x${string}`;
|
|
310
310
|
/** LogX. */
|
|
311
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}`;
|
|
312
316
|
};
|
|
313
317
|
/**
|
|
314
318
|
* Pre-computed token hashes — `keccak256(abi.encodePacked(tokenSymbol))`.
|
package/dist/index.d.ts
CHANGED
|
@@ -309,6 +309,10 @@ declare const BROKER_HASHES: {
|
|
|
309
309
|
readonly orderly: `0x${string}`;
|
|
310
310
|
/** LogX. */
|
|
311
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}`;
|
|
312
316
|
};
|
|
313
317
|
/**
|
|
314
318
|
* Pre-computed token hashes — `keccak256(abi.encodePacked(tokenSymbol))`.
|
package/dist/index.js
CHANGED
|
@@ -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"]))
|