@switch-win/sdk 1.0.4 → 1.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@switch-win/sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Official integration kit for the Switch DEX Aggregator on PulseChain — types, constants, ABIs, limit orders, and examples",
5
5
  "author": "BuildTheTech",
6
6
  "license": "MIT",
package/src/constants.ts CHANGED
@@ -33,7 +33,7 @@ export const CHAIN_ID = 369;
33
33
  // ── Contract addresses --
34
34
 
35
35
  /** SwitchRouter contract — target for all swap transactions */
36
- export const SWITCH_ROUTER = "0x99999d19eC98F936934e029e63D1C0A127a15207";
36
+ export const SWITCH_ROUTER = "0xc6d4f096A7a4B3d534DEa725821346Ee1b4FE5CE";
37
37
 
38
38
  /**
39
39
  * Native PLS sentinel address.
@@ -51,7 +51,7 @@ export const WPLS = "0xA1077a294dDE1B09bB078844df40758a5D0f9a27";
51
51
  *
52
52
  * The EIP-712 domain `verifyingContract` MUST match this address.
53
53
  */
54
- export const SWITCH_LIMIT_ORDER = "0x79925587bE77C25b292C0ecA6FEdD3A3f07916F9";
54
+ export const SWITCH_LIMIT_ORDER = "0x0e884072a891b406C0D814907A1E2310fE5F5Deb";
55
55
 
56
56
  /**
57
57
  * SwitchPLSFlow contract address on PulseChain.
@@ -60,7 +60,7 @@ export const SWITCH_LIMIT_ORDER = "0x79925587bE77C25b292C0ecA6FEdD3A3f07916F9";
60
60
  * which wraps to WPLS and creates the limit order on their behalf.
61
61
  * No EIP-712 signing required — single transaction.
62
62
  */
63
- export const SWITCH_PLS_FLOW = "0x79D1Ce697509D75D79c6cA8f9232ee6ca6Df379a";
63
+ export const SWITCH_PLS_FLOW = "0x88c9e2C83b6B7c707602e548481e58E920694E64";
64
64
 
65
65
  // ── Limit Order API endpoints ───────────────────────────────────────────────
66
66