@drift-labs/sdk 2.60.0-beta.7 → 2.60.0-beta.8

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.60.0-beta.7
1
+ 2.60.0-beta.8
@@ -11,6 +11,7 @@ export type SpotMarketConfig = {
11
11
  precisionExp: BN;
12
12
  serumMarket?: PublicKey;
13
13
  phoenixMarket?: PublicKey;
14
+ launchTs?: number;
14
15
  };
15
16
  export declare const WRAPPED_SOL_MINT: PublicKey;
16
17
  export declare const DevnetSpotMarkets: SpotMarketConfig[];
@@ -159,6 +159,7 @@ exports.MainnetSpotMarkets = [
159
159
  precision: new __1.BN(10).pow(numericConstants_1.SIX),
160
160
  precisionExp: numericConstants_1.SIX,
161
161
  phoenixMarket: new web3_js_1.PublicKey('2pspvjWWaf3dNgt3jsgSzFCNvMGPb7t8FrEYvLGjvcCe'),
162
+ launchTs: 1706731200000,
162
163
  },
163
164
  ];
164
165
  exports.SpotMarkets = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.60.0-beta.7",
3
+ "version": "2.60.0-beta.8",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
@@ -20,6 +20,7 @@ export type SpotMarketConfig = {
20
20
  precisionExp: BN;
21
21
  serumMarket?: PublicKey;
22
22
  phoenixMarket?: PublicKey;
23
+ launchTs?: number;
23
24
  };
24
25
 
25
26
  export const WRAPPED_SOL_MINT = new PublicKey(
@@ -191,6 +192,7 @@ export const MainnetSpotMarkets: SpotMarketConfig[] = [
191
192
  phoenixMarket: new PublicKey(
192
193
  '2pspvjWWaf3dNgt3jsgSzFCNvMGPb7t8FrEYvLGjvcCe'
193
194
  ),
195
+ launchTs: 1706731200000,
194
196
  },
195
197
  ];
196
198