@drift-labs/sdk 2.96.0-beta.13 → 2.96.0-beta.14
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 +11 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.96.0-beta.
|
|
1
|
+
2.96.0-beta.14
|
|
@@ -344,6 +344,16 @@ exports.MainnetSpotMarkets = [
|
|
|
344
344
|
precisionExp: numericConstants_1.LAMPORTS_EXP,
|
|
345
345
|
pythFeedId: '0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d',
|
|
346
346
|
},
|
|
347
|
+
{
|
|
348
|
+
symbol: 'MOTHER',
|
|
349
|
+
marketIndex: 26,
|
|
350
|
+
oracle: new web3_js_1.PublicKey('56ap2coZG7FPWUigVm9XrpQs3xuCwnwQaWtjWZcffEUG'),
|
|
351
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
352
|
+
mint: new web3_js_1.PublicKey('3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN'),
|
|
353
|
+
precision: new __1.BN(10).pow(numericConstants_1.SIX),
|
|
354
|
+
precisionExp: numericConstants_1.SIX,
|
|
355
|
+
pythFeedId: '0x62742a997d01f7524f791fdb2dd43aaf0e567d765ebf8fd0406a994239e874d4',
|
|
356
|
+
},
|
|
347
357
|
];
|
|
348
358
|
exports.SpotMarkets = {
|
|
349
359
|
devnet: exports.DevnetSpotMarkets,
|
package/package.json
CHANGED
|
@@ -425,6 +425,17 @@ export const MainnetSpotMarkets: SpotMarketConfig[] = [
|
|
|
425
425
|
pythFeedId:
|
|
426
426
|
'0xef0d8b6fda2ceba41da15d4095d1da392a0d2f8ed0c6c7bc0f4cfac8c280b56d',
|
|
427
427
|
},
|
|
428
|
+
{
|
|
429
|
+
symbol: 'MOTHER',
|
|
430
|
+
marketIndex: 26,
|
|
431
|
+
oracle: new PublicKey('56ap2coZG7FPWUigVm9XrpQs3xuCwnwQaWtjWZcffEUG'),
|
|
432
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
433
|
+
mint: new PublicKey('3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN'),
|
|
434
|
+
precision: new BN(10).pow(SIX),
|
|
435
|
+
precisionExp: SIX,
|
|
436
|
+
pythFeedId:
|
|
437
|
+
'0x62742a997d01f7524f791fdb2dd43aaf0e567d765ebf8fd0406a994239e874d4',
|
|
438
|
+
},
|
|
428
439
|
];
|
|
429
440
|
|
|
430
441
|
export const SpotMarkets: { [key in DriftEnv]: SpotMarketConfig[] } = {
|