@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.
|
|
1
|
+
2.60.0-beta.8
|
|
@@ -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
|
@@ -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
|
|