@drift-labs/sdk 2.95.0-beta.3 → 2.95.0-beta.5
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 +11 -0
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +12 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.95.0-beta.
|
|
1
|
+
2.95.0-beta.5
|
|
@@ -767,6 +767,17 @@ exports.MainnetPerpMarkets = [
|
|
|
767
767
|
launchTs: 1725551484000,
|
|
768
768
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
769
769
|
},
|
|
770
|
+
{
|
|
771
|
+
fullName: 'TON',
|
|
772
|
+
category: ['L1'],
|
|
773
|
+
symbol: 'TON-PERP',
|
|
774
|
+
baseAssetSymbol: 'TON',
|
|
775
|
+
marketIndex: 42,
|
|
776
|
+
oracle: new web3_js_1.PublicKey('BNjCXrpEqjdBnuRy2SAUgm5Pq8B73wGFwsf6RYFJiLPY'),
|
|
777
|
+
launchTs: 1725551484000,
|
|
778
|
+
oracleSource: __1.OracleSource.PYTH_PULL,
|
|
779
|
+
pythFeedId: '0x8963217838ab4cf5cadc172203c1f0b763fbaa45f346d8ee50ba994bbcac3026',
|
|
780
|
+
},
|
|
770
781
|
];
|
|
771
782
|
exports.PerpMarkets = {
|
|
772
783
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -840,6 +840,18 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
840
840
|
launchTs: 1725551484000,
|
|
841
841
|
oracleSource: OracleSource.Prelaunch,
|
|
842
842
|
},
|
|
843
|
+
{
|
|
844
|
+
fullName: 'TON',
|
|
845
|
+
category: ['L1'],
|
|
846
|
+
symbol: 'TON-PERP',
|
|
847
|
+
baseAssetSymbol: 'TON',
|
|
848
|
+
marketIndex: 42,
|
|
849
|
+
oracle: new PublicKey('BNjCXrpEqjdBnuRy2SAUgm5Pq8B73wGFwsf6RYFJiLPY'),
|
|
850
|
+
launchTs: 1725551484000,
|
|
851
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
852
|
+
pythFeedId:
|
|
853
|
+
'0x8963217838ab4cf5cadc172203c1f0b763fbaa45f346d8ee50ba994bbcac3026',
|
|
854
|
+
},
|
|
843
855
|
];
|
|
844
856
|
|
|
845
857
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|