@drift-labs/sdk 2.66.0-beta.3 → 2.67.0-beta.0
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/lib/idl/drift.json +1 -1
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +10 -0
- package/src/idl/drift.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.67.0-beta.0
|
|
@@ -506,6 +506,16 @@ exports.MainnetPerpMarkets = [
|
|
|
506
506
|
launchTs: 1708448765000,
|
|
507
507
|
oracleSource: __1.OracleSource.PYTH,
|
|
508
508
|
},
|
|
509
|
+
{
|
|
510
|
+
fullName: 'BITTENSOR',
|
|
511
|
+
category: ['AI', 'Infra'],
|
|
512
|
+
symbol: 'TAO-PERP',
|
|
513
|
+
baseAssetSymbol: 'TAO',
|
|
514
|
+
marketIndex: 26,
|
|
515
|
+
oracle: new web3_js_1.PublicKey('5NxzemFgGDhimYE3S5qmb5zkjZUmiHXb4up5WGXe7NLn'),
|
|
516
|
+
launchTs: 1709136669000,
|
|
517
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
518
|
+
},
|
|
509
519
|
];
|
|
510
520
|
exports.PerpMarkets = {
|
|
511
521
|
devnet: exports.DevnetPerpMarkets,
|
package/lib/idl/drift.json
CHANGED
package/package.json
CHANGED
|
@@ -517,6 +517,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
517
517
|
launchTs: 1708448765000,
|
|
518
518
|
oracleSource: OracleSource.PYTH,
|
|
519
519
|
},
|
|
520
|
+
{
|
|
521
|
+
fullName: 'BITTENSOR',
|
|
522
|
+
category: ['AI', 'Infra'],
|
|
523
|
+
symbol: 'TAO-PERP',
|
|
524
|
+
baseAssetSymbol: 'TAO',
|
|
525
|
+
marketIndex: 26,
|
|
526
|
+
oracle: new PublicKey('5NxzemFgGDhimYE3S5qmb5zkjZUmiHXb4up5WGXe7NLn'),
|
|
527
|
+
launchTs: 1709136669000,
|
|
528
|
+
oracleSource: OracleSource.PYTH,
|
|
529
|
+
},
|
|
520
530
|
];
|
|
521
531
|
|
|
522
532
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|
package/src/idl/drift.json
CHANGED