@drift-labs/sdk 2.86.0-beta.30 → 2.86.0-beta.31
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 +1 -1
- package/lib/constants/spotMarkets.js +10 -0
- package/package.json +1 -1
- package/src/constants/spotMarkets.ts +10 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.86.0-beta.
|
|
1
|
+
2.86.0-beta.31
|
|
@@ -281,6 +281,16 @@ exports.MainnetSpotMarkets = [
|
|
|
281
281
|
phoenixMarket: new web3_js_1.PublicKey('31XgvAQ1HgFQEk31KdszbPkVXKaQqB1bgYZPoDrFpSR2'),
|
|
282
282
|
pythFeedId: '0xb9312a7ee50e189ef045aa3c7842e099b061bd9bdc99ac645956c3b660dc8cce',
|
|
283
283
|
},
|
|
284
|
+
{
|
|
285
|
+
symbol: 'CLOUD',
|
|
286
|
+
marketIndex: 21,
|
|
287
|
+
oracle: new web3_js_1.PublicKey('4FG7UyPkszGvcSVCCKaLSZsArGjyxitwhJeQhYu2bFTS'),
|
|
288
|
+
oracleSource: __1.OracleSource.SWITCHBOARD,
|
|
289
|
+
mint: new web3_js_1.PublicKey('CLoUDKc4Ane7HeQcPpE3YHnznRxhMimJ4MyaUqyHFzAu'),
|
|
290
|
+
precision: new __1.BN(10).pow(numericConstants_1.NINE),
|
|
291
|
+
precisionExp: numericConstants_1.NINE,
|
|
292
|
+
launchTs: 1721316817000,
|
|
293
|
+
},
|
|
284
294
|
];
|
|
285
295
|
exports.SpotMarkets = {
|
|
286
296
|
devnet: exports.DevnetSpotMarkets,
|
package/package.json
CHANGED
|
@@ -351,6 +351,16 @@ export const MainnetSpotMarkets: SpotMarketConfig[] = [
|
|
|
351
351
|
pythFeedId:
|
|
352
352
|
'0xb9312a7ee50e189ef045aa3c7842e099b061bd9bdc99ac645956c3b660dc8cce',
|
|
353
353
|
},
|
|
354
|
+
{
|
|
355
|
+
symbol: 'CLOUD',
|
|
356
|
+
marketIndex: 21,
|
|
357
|
+
oracle: new PublicKey('4FG7UyPkszGvcSVCCKaLSZsArGjyxitwhJeQhYu2bFTS'),
|
|
358
|
+
oracleSource: OracleSource.SWITCHBOARD,
|
|
359
|
+
mint: new PublicKey('CLoUDKc4Ane7HeQcPpE3YHnznRxhMimJ4MyaUqyHFzAu'),
|
|
360
|
+
precision: new BN(10).pow(NINE),
|
|
361
|
+
precisionExp: NINE,
|
|
362
|
+
launchTs: 1721316817000,
|
|
363
|
+
},
|
|
354
364
|
];
|
|
355
365
|
|
|
356
366
|
export const SpotMarkets: { [key in DriftEnv]: SpotMarketConfig[] } = {
|