@drift-labs/sdk 2.54.0-beta.1 → 2.54.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 +20 -0
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +20 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.54.0-beta.
|
|
1
|
+
2.54.0-beta.2
|
|
@@ -224,6 +224,16 @@ exports.DevnetPerpMarkets = [
|
|
|
224
224
|
launchTs: 1703173331000,
|
|
225
225
|
oracleSource: __1.OracleSource.PYTH,
|
|
226
226
|
},
|
|
227
|
+
{
|
|
228
|
+
fullName: 'AVAX',
|
|
229
|
+
category: ['Rollup', 'Infra'],
|
|
230
|
+
symbol: 'AVAX-PERP',
|
|
231
|
+
baseAssetSymbol: 'AVAX',
|
|
232
|
+
marketIndex: 22,
|
|
233
|
+
oracle: new web3_js_1.PublicKey('FVb5h1VmHPfVb1RfqZckchq18GxRv4iKt8T4eVTQAqdz'),
|
|
234
|
+
launchTs: 1704209558000,
|
|
235
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
236
|
+
},
|
|
227
237
|
];
|
|
228
238
|
exports.MainnetPerpMarkets = [
|
|
229
239
|
{
|
|
@@ -446,6 +456,16 @@ exports.MainnetPerpMarkets = [
|
|
|
446
456
|
launchTs: 1703173331000,
|
|
447
457
|
oracleSource: __1.OracleSource.PYTH,
|
|
448
458
|
},
|
|
459
|
+
{
|
|
460
|
+
fullName: 'AVAX',
|
|
461
|
+
category: ['Rollup', 'Infra'],
|
|
462
|
+
symbol: 'AVAX-PERP',
|
|
463
|
+
baseAssetSymbol: 'AVAX',
|
|
464
|
+
marketIndex: 22,
|
|
465
|
+
oracle: new web3_js_1.PublicKey('Ax9ujW5B9oqcv59N8m6f1BpTBq2rGeGaBcpKjC5UYsXU'),
|
|
466
|
+
launchTs: 1704209558000,
|
|
467
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
468
|
+
},
|
|
449
469
|
];
|
|
450
470
|
exports.PerpMarkets = {
|
|
451
471
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -234,6 +234,16 @@ export const DevnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
234
234
|
launchTs: 1703173331000,
|
|
235
235
|
oracleSource: OracleSource.PYTH,
|
|
236
236
|
},
|
|
237
|
+
{
|
|
238
|
+
fullName: 'AVAX',
|
|
239
|
+
category: ['Rollup', 'Infra'],
|
|
240
|
+
symbol: 'AVAX-PERP',
|
|
241
|
+
baseAssetSymbol: 'AVAX',
|
|
242
|
+
marketIndex: 22,
|
|
243
|
+
oracle: new PublicKey('FVb5h1VmHPfVb1RfqZckchq18GxRv4iKt8T4eVTQAqdz'),
|
|
244
|
+
launchTs: 1704209558000,
|
|
245
|
+
oracleSource: OracleSource.PYTH,
|
|
246
|
+
},
|
|
237
247
|
];
|
|
238
248
|
|
|
239
249
|
export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
@@ -457,6 +467,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
457
467
|
launchTs: 1703173331000,
|
|
458
468
|
oracleSource: OracleSource.PYTH,
|
|
459
469
|
},
|
|
470
|
+
{
|
|
471
|
+
fullName: 'AVAX',
|
|
472
|
+
category: ['Rollup', 'Infra'],
|
|
473
|
+
symbol: 'AVAX-PERP',
|
|
474
|
+
baseAssetSymbol: 'AVAX',
|
|
475
|
+
marketIndex: 22,
|
|
476
|
+
oracle: new PublicKey('Ax9ujW5B9oqcv59N8m6f1BpTBq2rGeGaBcpKjC5UYsXU'),
|
|
477
|
+
launchTs: 1704209558000,
|
|
478
|
+
oracleSource: OracleSource.PYTH,
|
|
479
|
+
},
|
|
460
480
|
];
|
|
461
481
|
|
|
462
482
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|