@drift-labs/sdk 2.52.0-beta.12 → 2.52.0-beta.13
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 +20 -0
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +20 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.52.0-beta.
|
|
1
|
+
2.52.0-beta.13
|
|
@@ -214,6 +214,16 @@ exports.DevnetPerpMarkets = [
|
|
|
214
214
|
launchTs: 1701967240000,
|
|
215
215
|
oracleSource: __1.OracleSource.PYTH,
|
|
216
216
|
},
|
|
217
|
+
{
|
|
218
|
+
fullName: 'SEI',
|
|
219
|
+
category: ['L1'],
|
|
220
|
+
symbol: 'SEI-PERP',
|
|
221
|
+
baseAssetSymbol: 'SEI',
|
|
222
|
+
marketIndex: 21,
|
|
223
|
+
oracle: new web3_js_1.PublicKey('B6KVbgqTRY33yDgjAnc1mWw4ATS4W5544xghayQscdt7'),
|
|
224
|
+
launchTs: 1703173331000,
|
|
225
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
226
|
+
},
|
|
217
227
|
];
|
|
218
228
|
exports.MainnetPerpMarkets = [
|
|
219
229
|
{
|
|
@@ -426,6 +436,16 @@ exports.MainnetPerpMarkets = [
|
|
|
426
436
|
launchTs: 1701967240000,
|
|
427
437
|
oracleSource: __1.OracleSource.PYTH,
|
|
428
438
|
},
|
|
439
|
+
{
|
|
440
|
+
fullName: 'SEI',
|
|
441
|
+
category: ['L1'],
|
|
442
|
+
symbol: 'SEI-PERP',
|
|
443
|
+
baseAssetSymbol: 'SEI',
|
|
444
|
+
marketIndex: 21,
|
|
445
|
+
oracle: new web3_js_1.PublicKey('6cUuAyAX3eXoiWkjFF77RQBEUF15AAMQ7d1hm4EPd3tv'),
|
|
446
|
+
launchTs: 1703173331000,
|
|
447
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
448
|
+
},
|
|
429
449
|
];
|
|
430
450
|
exports.PerpMarkets = {
|
|
431
451
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -224,6 +224,16 @@ export const DevnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
224
224
|
launchTs: 1701967240000,
|
|
225
225
|
oracleSource: OracleSource.PYTH,
|
|
226
226
|
},
|
|
227
|
+
{
|
|
228
|
+
fullName: 'SEI',
|
|
229
|
+
category: ['L1'],
|
|
230
|
+
symbol: 'SEI-PERP',
|
|
231
|
+
baseAssetSymbol: 'SEI',
|
|
232
|
+
marketIndex: 21,
|
|
233
|
+
oracle: new PublicKey('B6KVbgqTRY33yDgjAnc1mWw4ATS4W5544xghayQscdt7'),
|
|
234
|
+
launchTs: 1703173331000,
|
|
235
|
+
oracleSource: OracleSource.PYTH,
|
|
236
|
+
},
|
|
227
237
|
];
|
|
228
238
|
|
|
229
239
|
export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
@@ -437,6 +447,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
437
447
|
launchTs: 1701967240000,
|
|
438
448
|
oracleSource: OracleSource.PYTH,
|
|
439
449
|
},
|
|
450
|
+
{
|
|
451
|
+
fullName: 'SEI',
|
|
452
|
+
category: ['L1'],
|
|
453
|
+
symbol: 'SEI-PERP',
|
|
454
|
+
baseAssetSymbol: 'SEI',
|
|
455
|
+
marketIndex: 21,
|
|
456
|
+
oracle: new PublicKey('6cUuAyAX3eXoiWkjFF77RQBEUF15AAMQ7d1hm4EPd3tv'),
|
|
457
|
+
launchTs: 1703173331000,
|
|
458
|
+
oracleSource: OracleSource.PYTH,
|
|
459
|
+
},
|
|
440
460
|
];
|
|
441
461
|
|
|
442
462
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|