@drift-labs/sdk 2.93.0-beta.3 → 2.93.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 +10 -0
- package/package.json +2 -2
- package/src/constants/perpMarkets.ts +10 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.93.0-beta.
|
|
1
|
+
2.93.0-beta.5
|
|
@@ -717,6 +717,16 @@ exports.MainnetPerpMarkets = [
|
|
|
717
717
|
launchTs: 1723996800000,
|
|
718
718
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
719
719
|
},
|
|
720
|
+
{
|
|
721
|
+
fullName: 'KAMALA-POPULAR-VOTE-2024-BET',
|
|
722
|
+
category: ['Prediction', 'Election'],
|
|
723
|
+
symbol: 'KAMALA-POPULAR-VOTE-2024-BET',
|
|
724
|
+
baseAssetSymbol: 'KAMALA-POPULAR-VOTE-2024',
|
|
725
|
+
marketIndex: 37,
|
|
726
|
+
oracle: new web3_js_1.PublicKey('AowFw1dCVjS8kngvTCoT3oshiUyL69k7P1uxqXwteWH4'),
|
|
727
|
+
launchTs: 1723996800000,
|
|
728
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
729
|
+
},
|
|
720
730
|
];
|
|
721
731
|
exports.PerpMarkets = {
|
|
722
732
|
devnet: exports.DevnetPerpMarkets,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drift-labs/sdk",
|
|
3
|
-
"version": "2.93.0-beta.
|
|
3
|
+
"version": "2.93.0-beta.5",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"author": "crispheaney",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@pythnetwork/pyth-solana-receiver": "^0.7.0",
|
|
45
45
|
"@solana/spl-token": "0.3.7",
|
|
46
46
|
"@solana/web3.js": "1.92.3",
|
|
47
|
-
"@switchboard-xyz/on-demand": "1.2.
|
|
47
|
+
"@switchboard-xyz/on-demand": "1.2.32",
|
|
48
48
|
"anchor-bankrun": "^0.3.0",
|
|
49
49
|
"node-cache": "^5.1.2",
|
|
50
50
|
"rpc-websockets": "7.5.1",
|
|
@@ -790,6 +790,16 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
790
790
|
launchTs: 1723996800000,
|
|
791
791
|
oracleSource: OracleSource.Prelaunch,
|
|
792
792
|
},
|
|
793
|
+
{
|
|
794
|
+
fullName: 'KAMALA-POPULAR-VOTE-2024-BET',
|
|
795
|
+
category: ['Prediction', 'Election'],
|
|
796
|
+
symbol: 'KAMALA-POPULAR-VOTE-2024-BET',
|
|
797
|
+
baseAssetSymbol: 'KAMALA-POPULAR-VOTE-2024',
|
|
798
|
+
marketIndex: 37,
|
|
799
|
+
oracle: new PublicKey('AowFw1dCVjS8kngvTCoT3oshiUyL69k7P1uxqXwteWH4'),
|
|
800
|
+
launchTs: 1723996800000,
|
|
801
|
+
oracleSource: OracleSource.Prelaunch,
|
|
802
|
+
},
|
|
793
803
|
];
|
|
794
804
|
|
|
795
805
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|