@pafi-dev/core 0.17.0 → 0.18.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 +9 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -1
- package/dist/index.d.ts +11 -1
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -843,7 +843,13 @@ var CONTRACT_ADDRESSES = {
|
|
|
843
843
|
// (`0x6fF5693b...`). The PAFI fork has its own factory + poolInitCodeHash,
|
|
844
844
|
// so only this UR can route through PAFI v3 fork pools. Keep in sync with
|
|
845
845
|
// `UNIVERSAL_ROUTER_ADDRESSES` in `chains.ts`.
|
|
846
|
-
universalRouter: "0x008887C992A5bDC24097E717Bfb71CE89483c5A2"
|
|
846
|
+
universalRouter: "0x008887C992A5bDC24097E717Bfb71CE89483c5A2",
|
|
847
|
+
// PAFI fork Permit2 — DIFFERS from Uniswap canonical Permit2
|
|
848
|
+
// (`0x000000000022D473...`). PAFI's UR was deployed against this
|
|
849
|
+
// Permit2, so swaps signed against the canonical Permit2 fail
|
|
850
|
+
// signature verification. Keep in sync with `PERMIT2_ADDRESS`
|
|
851
|
+
// top-level export.
|
|
852
|
+
permit2: "0xEB450d21ae68D3303Cf5775A54Cc84EE7c3fC8eC"
|
|
847
853
|
},
|
|
848
854
|
// Base Sepolia — not in active use; placeholders kept so the map
|
|
849
855
|
// compiles for tooling that enumerates chains.
|
|
@@ -856,7 +862,8 @@ var CONTRACT_ADDRESSES = {
|
|
|
856
862
|
chainlinkEthUsd: PLACEHOLDER_DEAD("de02"),
|
|
857
863
|
orderlyRelay: PLACEHOLDER_DEAD("de03"),
|
|
858
864
|
pafiFeeRecipient: PLACEHOLDER_DEAD("de04"),
|
|
859
|
-
universalRouter: PLACEHOLDER_DEAD("de05")
|
|
865
|
+
universalRouter: PLACEHOLDER_DEAD("de05"),
|
|
866
|
+
permit2: PLACEHOLDER_DEAD("de06")
|
|
860
867
|
}
|
|
861
868
|
};
|
|
862
869
|
var POINT_TOKEN_FACTORY_ADDRESSES = {
|