@drift-labs/sdk 2.43.0-beta.8 → 2.43.0-beta.9
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.43.0-beta.
|
|
1
|
+
2.43.0-beta.9
|
|
@@ -174,6 +174,16 @@ exports.DevnetPerpMarkets = [
|
|
|
174
174
|
launchTs: 1698074659000,
|
|
175
175
|
oracleSource: __1.OracleSource.PYTH,
|
|
176
176
|
},
|
|
177
|
+
{
|
|
178
|
+
fullName: 'Rollbit',
|
|
179
|
+
category: ['Exchange'],
|
|
180
|
+
symbol: 'RLB-PERP',
|
|
181
|
+
baseAssetSymbol: 'RLB',
|
|
182
|
+
marketIndex: 17,
|
|
183
|
+
oracle: new web3_js_1.PublicKey('6BmJozusMugAySsfNfMFsU1YRWcGwyP3oycNX9Pv9oCz'),
|
|
184
|
+
launchTs: 11699265968000,
|
|
185
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
186
|
+
},
|
|
177
187
|
];
|
|
178
188
|
exports.MainnetPerpMarkets = [
|
|
179
189
|
{
|
|
@@ -346,6 +356,16 @@ exports.MainnetPerpMarkets = [
|
|
|
346
356
|
launchTs: 1698074659000,
|
|
347
357
|
oracleSource: __1.OracleSource.PYTH,
|
|
348
358
|
},
|
|
359
|
+
{
|
|
360
|
+
fullName: 'Rollbit',
|
|
361
|
+
category: ['Exchange'],
|
|
362
|
+
symbol: 'RLB-PERP',
|
|
363
|
+
baseAssetSymbol: 'RLB',
|
|
364
|
+
marketIndex: 17,
|
|
365
|
+
oracle: new web3_js_1.PublicKey('4BA3RcS4zE32WWgp49vvvre2t6nXY1W1kMyKZxeeuUey'),
|
|
366
|
+
launchTs: 11699265968000,
|
|
367
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
368
|
+
},
|
|
349
369
|
];
|
|
350
370
|
exports.PerpMarkets = {
|
|
351
371
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -184,6 +184,16 @@ export const DevnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
184
184
|
launchTs: 1698074659000,
|
|
185
185
|
oracleSource: OracleSource.PYTH,
|
|
186
186
|
},
|
|
187
|
+
{
|
|
188
|
+
fullName: 'Rollbit',
|
|
189
|
+
category: ['Exchange'],
|
|
190
|
+
symbol: 'RLB-PERP',
|
|
191
|
+
baseAssetSymbol: 'RLB',
|
|
192
|
+
marketIndex: 17,
|
|
193
|
+
oracle: new PublicKey('6BmJozusMugAySsfNfMFsU1YRWcGwyP3oycNX9Pv9oCz'),
|
|
194
|
+
launchTs: 11699265968000,
|
|
195
|
+
oracleSource: OracleSource.PYTH,
|
|
196
|
+
},
|
|
187
197
|
];
|
|
188
198
|
|
|
189
199
|
export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
@@ -357,6 +367,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
357
367
|
launchTs: 1698074659000,
|
|
358
368
|
oracleSource: OracleSource.PYTH,
|
|
359
369
|
},
|
|
370
|
+
{
|
|
371
|
+
fullName: 'Rollbit',
|
|
372
|
+
category: ['Exchange'],
|
|
373
|
+
symbol: 'RLB-PERP',
|
|
374
|
+
baseAssetSymbol: 'RLB',
|
|
375
|
+
marketIndex: 17,
|
|
376
|
+
oracle: new PublicKey('4BA3RcS4zE32WWgp49vvvre2t6nXY1W1kMyKZxeeuUey'),
|
|
377
|
+
launchTs: 11699265968000,
|
|
378
|
+
oracleSource: OracleSource.PYTH,
|
|
379
|
+
},
|
|
360
380
|
];
|
|
361
381
|
|
|
362
382
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|