@drift-labs/sdk 2.93.0-beta.5 → 2.93.0-beta.6
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/package.json +1 -1
- package/src/constants/perpMarkets.ts +10 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.93.0-beta.
|
|
1
|
+
2.93.0-beta.6
|
|
@@ -727,6 +727,16 @@ exports.MainnetPerpMarkets = [
|
|
|
727
727
|
launchTs: 1723996800000,
|
|
728
728
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
729
729
|
},
|
|
730
|
+
{
|
|
731
|
+
fullName: 'FED-CUT-50-SEPT-2024-BET',
|
|
732
|
+
category: ['Prediction', 'Election'],
|
|
733
|
+
symbol: 'FED-CUT-50-SEPT-2024-BET',
|
|
734
|
+
baseAssetSymbol: 'FED-CUT-50-SEPT-2024',
|
|
735
|
+
marketIndex: 38,
|
|
736
|
+
oracle: new web3_js_1.PublicKey('5QzgqAbEhJ1cPnLX4tSZEXezmW7sz7PPVVg2VanGi8QQ'),
|
|
737
|
+
launchTs: 1724250126000,
|
|
738
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
739
|
+
},
|
|
730
740
|
];
|
|
731
741
|
exports.PerpMarkets = {
|
|
732
742
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -800,6 +800,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
800
800
|
launchTs: 1723996800000,
|
|
801
801
|
oracleSource: OracleSource.Prelaunch,
|
|
802
802
|
},
|
|
803
|
+
{
|
|
804
|
+
fullName: 'FED-CUT-50-SEPT-2024-BET',
|
|
805
|
+
category: ['Prediction', 'Election'],
|
|
806
|
+
symbol: 'FED-CUT-50-SEPT-2024-BET',
|
|
807
|
+
baseAssetSymbol: 'FED-CUT-50-SEPT-2024',
|
|
808
|
+
marketIndex: 38,
|
|
809
|
+
oracle: new PublicKey('5QzgqAbEhJ1cPnLX4tSZEXezmW7sz7PPVVg2VanGi8QQ'),
|
|
810
|
+
launchTs: 1724250126000,
|
|
811
|
+
oracleSource: OracleSource.Prelaunch,
|
|
812
|
+
},
|
|
803
813
|
];
|
|
804
814
|
|
|
805
815
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|