@drift-labs/sdk 2.64.0-beta.1 → 2.64.0-beta.2
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/perpMarkets.js +10 -0
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +10 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.64.0-beta.
|
|
1
|
+
2.64.0-beta.2
|
|
@@ -496,6 +496,16 @@ exports.MainnetPerpMarkets = [
|
|
|
496
496
|
launchTs: 1706713201000,
|
|
497
497
|
oracleSource: __1.OracleSource.PYTH,
|
|
498
498
|
},
|
|
499
|
+
{
|
|
500
|
+
fullName: 'Dymension',
|
|
501
|
+
category: ['Rollup', 'Infra'],
|
|
502
|
+
symbol: 'DYM-PERP',
|
|
503
|
+
baseAssetSymbol: 'DYM',
|
|
504
|
+
marketIndex: 25,
|
|
505
|
+
oracle: new web3_js_1.PublicKey('CSRRrhXa6DYu1W5jf89A7unCATdug2Z33tYyV2NXZZxa'),
|
|
506
|
+
launchTs: 1708448765000,
|
|
507
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
508
|
+
},
|
|
499
509
|
];
|
|
500
510
|
exports.PerpMarkets = {
|
|
501
511
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -507,6 +507,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
507
507
|
launchTs: 1706713201000,
|
|
508
508
|
oracleSource: OracleSource.PYTH,
|
|
509
509
|
},
|
|
510
|
+
{
|
|
511
|
+
fullName: 'Dymension',
|
|
512
|
+
category: ['Rollup', 'Infra'],
|
|
513
|
+
symbol: 'DYM-PERP',
|
|
514
|
+
baseAssetSymbol: 'DYM',
|
|
515
|
+
marketIndex: 25,
|
|
516
|
+
oracle: new PublicKey('CSRRrhXa6DYu1W5jf89A7unCATdug2Z33tYyV2NXZZxa'),
|
|
517
|
+
launchTs: 1708448765000,
|
|
518
|
+
oracleSource: OracleSource.PYTH,
|
|
519
|
+
},
|
|
510
520
|
];
|
|
511
521
|
|
|
512
522
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|