@drift-labs/sdk 2.97.0-beta.18 → 2.97.0-beta.19
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.97.0-beta.
|
|
1
|
+
2.97.0-beta.19
|
|
@@ -840,6 +840,26 @@ exports.MainnetPerpMarkets = [
|
|
|
840
840
|
launchTs: 1728574493000,
|
|
841
841
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
842
842
|
},
|
|
843
|
+
{
|
|
844
|
+
fullName: 'VRSTPN-WIN-F1-24-DRVRS-CHMP',
|
|
845
|
+
category: ['Prediction', 'Sport'],
|
|
846
|
+
symbol: 'VRSTPN-WIN-F1-24-DRVRS-CHMP-BET',
|
|
847
|
+
baseAssetSymbol: 'VRSTPN-WIN-F1-24-DRVRS-CHMP',
|
|
848
|
+
marketIndex: 49,
|
|
849
|
+
oracle: new web3_js_1.PublicKey('E36rvXEwysWeiToXCpWfHVADd8bzzyR4w83ZSSwxAxqG'),
|
|
850
|
+
launchTs: 1729209600000,
|
|
851
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
fullName: 'LNDO-WIN-F1-24-US-GP',
|
|
855
|
+
category: ['Prediction', 'Sport'],
|
|
856
|
+
symbol: 'LNDO-WIN-F1-24-US-GP-BET',
|
|
857
|
+
baseAssetSymbol: 'LNDO-WIN-F1-24-US-GP',
|
|
858
|
+
marketIndex: 50,
|
|
859
|
+
oracle: new web3_js_1.PublicKey('6AVy1y9SnJECnosQaiK2uY1kcT4ZEBf1F4DMvhxgvhUo'),
|
|
860
|
+
launchTs: 1729209600000,
|
|
861
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
862
|
+
},
|
|
843
863
|
];
|
|
844
864
|
exports.PerpMarkets = {
|
|
845
865
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -916,6 +916,26 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
916
916
|
launchTs: 1728574493000,
|
|
917
917
|
oracleSource: OracleSource.Prelaunch,
|
|
918
918
|
},
|
|
919
|
+
{
|
|
920
|
+
fullName: 'VRSTPN-WIN-F1-24-DRVRS-CHMP',
|
|
921
|
+
category: ['Prediction', 'Sport'],
|
|
922
|
+
symbol: 'VRSTPN-WIN-F1-24-DRVRS-CHMP-BET',
|
|
923
|
+
baseAssetSymbol: 'VRSTPN-WIN-F1-24-DRVRS-CHMP',
|
|
924
|
+
marketIndex: 49,
|
|
925
|
+
oracle: new PublicKey('E36rvXEwysWeiToXCpWfHVADd8bzzyR4w83ZSSwxAxqG'),
|
|
926
|
+
launchTs: 1729209600000,
|
|
927
|
+
oracleSource: OracleSource.Prelaunch,
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
fullName: 'LNDO-WIN-F1-24-US-GP',
|
|
931
|
+
category: ['Prediction', 'Sport'],
|
|
932
|
+
symbol: 'LNDO-WIN-F1-24-US-GP-BET',
|
|
933
|
+
baseAssetSymbol: 'LNDO-WIN-F1-24-US-GP',
|
|
934
|
+
marketIndex: 50,
|
|
935
|
+
oracle: new PublicKey('6AVy1y9SnJECnosQaiK2uY1kcT4ZEBf1F4DMvhxgvhUo'),
|
|
936
|
+
launchTs: 1729209600000,
|
|
937
|
+
oracleSource: OracleSource.Prelaunch,
|
|
938
|
+
},
|
|
919
939
|
];
|
|
920
940
|
|
|
921
941
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|