@drift-labs/sdk 2.95.0-beta.2 → 2.95.0-beta.4
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 +21 -0
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +22 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.95.0-beta.
|
|
1
|
+
2.95.0-beta.4
|
|
@@ -757,6 +757,27 @@ exports.MainnetPerpMarkets = [
|
|
|
757
757
|
launchTs: 1724250126000,
|
|
758
758
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
759
759
|
},
|
|
760
|
+
{
|
|
761
|
+
fullName: 'DEMOCRATS-WIN-MICHIGAN-BET',
|
|
762
|
+
category: ['Prediction', 'Election'],
|
|
763
|
+
symbol: 'DEMOCRATS-WIN-MICHIGAN-BET',
|
|
764
|
+
baseAssetSymbol: 'DEMOCRATS-WIN-MICHIGAN',
|
|
765
|
+
marketIndex: 41,
|
|
766
|
+
oracle: new web3_js_1.PublicKey('8HTDLjhb2esGU5mu11v3pq3eWeFqmvKPkQNCnTTwKAyB'),
|
|
767
|
+
launchTs: 1725551484000,
|
|
768
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
fullName: 'TON',
|
|
772
|
+
category: ['L1'],
|
|
773
|
+
symbol: 'TON',
|
|
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
|
+
},
|
|
760
781
|
];
|
|
761
782
|
exports.PerpMarkets = {
|
|
762
783
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -830,6 +830,28 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
830
830
|
launchTs: 1724250126000,
|
|
831
831
|
oracleSource: OracleSource.Prelaunch,
|
|
832
832
|
},
|
|
833
|
+
{
|
|
834
|
+
fullName: 'DEMOCRATS-WIN-MICHIGAN-BET',
|
|
835
|
+
category: ['Prediction', 'Election'],
|
|
836
|
+
symbol: 'DEMOCRATS-WIN-MICHIGAN-BET',
|
|
837
|
+
baseAssetSymbol: 'DEMOCRATS-WIN-MICHIGAN',
|
|
838
|
+
marketIndex: 41,
|
|
839
|
+
oracle: new PublicKey('8HTDLjhb2esGU5mu11v3pq3eWeFqmvKPkQNCnTTwKAyB'),
|
|
840
|
+
launchTs: 1725551484000,
|
|
841
|
+
oracleSource: OracleSource.Prelaunch,
|
|
842
|
+
},
|
|
843
|
+
{
|
|
844
|
+
fullName: 'TON',
|
|
845
|
+
category: ['L1'],
|
|
846
|
+
symbol: 'TON',
|
|
847
|
+
baseAssetSymbol: 'TON',
|
|
848
|
+
marketIndex: 42,
|
|
849
|
+
oracle: new PublicKey('BNjCXrpEqjdBnuRy2SAUgm5Pq8B73wGFwsf6RYFJiLPY'),
|
|
850
|
+
launchTs: 1725551484000,
|
|
851
|
+
oracleSource: OracleSource.PYTH_PULL,
|
|
852
|
+
pythFeedId:
|
|
853
|
+
'0x8963217838ab4cf5cadc172203c1f0b763fbaa45f346d8ee50ba994bbcac3026',
|
|
854
|
+
},
|
|
833
855
|
];
|
|
834
856
|
|
|
835
857
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|