@drift-labs/sdk 2.97.0-beta.3 → 2.97.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 +20 -0
- package/lib/idl/drift.json +1 -1
- package/package.json +1 -1
- package/src/constants/perpMarkets.ts +20 -0
- package/src/idl/drift.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.97.0-beta.
|
|
1
|
+
2.97.0-beta.5
|
|
@@ -820,6 +820,26 @@ exports.MainnetPerpMarkets = [
|
|
|
820
820
|
launchTs: 1727965864000,
|
|
821
821
|
oracleSource: __1.OracleSource.Prelaunch,
|
|
822
822
|
},
|
|
823
|
+
{
|
|
824
|
+
fullName: 'DeBridge',
|
|
825
|
+
category: ['Bridge'],
|
|
826
|
+
symbol: 'DBR-PERP',
|
|
827
|
+
baseAssetSymbol: 'DBR',
|
|
828
|
+
marketIndex: 47,
|
|
829
|
+
oracle: new web3_js_1.PublicKey('AQzxePg2vY52Cw4di1j5xF7BqetNPxogqYPgDBL7HXWn'),
|
|
830
|
+
launchTs: 1728574493000,
|
|
831
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
fullName: 'WLF-5B-1W',
|
|
835
|
+
category: ['Prediction'],
|
|
836
|
+
symbol: 'WLF-5B-1W-BET',
|
|
837
|
+
baseAssetSymbol: 'WLF-5B-1W',
|
|
838
|
+
marketIndex: 48,
|
|
839
|
+
oracle: new web3_js_1.PublicKey('7LpRfPaWR7cQqN7CMkCmZjEQpWyqso5LGuKCvDXH5ZAr'),
|
|
840
|
+
launchTs: 1728574493000,
|
|
841
|
+
oracleSource: __1.OracleSource.Prelaunch,
|
|
842
|
+
},
|
|
823
843
|
];
|
|
824
844
|
exports.PerpMarkets = {
|
|
825
845
|
devnet: exports.DevnetPerpMarkets,
|
package/lib/idl/drift.json
CHANGED
package/package.json
CHANGED
|
@@ -896,6 +896,26 @@ export const MainnetPerpMarkets: PerpMarketConfig[] = [
|
|
|
896
896
|
launchTs: 1727965864000,
|
|
897
897
|
oracleSource: OracleSource.Prelaunch,
|
|
898
898
|
},
|
|
899
|
+
{
|
|
900
|
+
fullName: 'DeBridge',
|
|
901
|
+
category: ['Bridge'],
|
|
902
|
+
symbol: 'DBR-PERP',
|
|
903
|
+
baseAssetSymbol: 'DBR',
|
|
904
|
+
marketIndex: 47,
|
|
905
|
+
oracle: new PublicKey('AQzxePg2vY52Cw4di1j5xF7BqetNPxogqYPgDBL7HXWn'),
|
|
906
|
+
launchTs: 1728574493000,
|
|
907
|
+
oracleSource: OracleSource.Prelaunch,
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
fullName: 'WLF-5B-1W',
|
|
911
|
+
category: ['Prediction'],
|
|
912
|
+
symbol: 'WLF-5B-1W-BET',
|
|
913
|
+
baseAssetSymbol: 'WLF-5B-1W',
|
|
914
|
+
marketIndex: 48,
|
|
915
|
+
oracle: new PublicKey('7LpRfPaWR7cQqN7CMkCmZjEQpWyqso5LGuKCvDXH5ZAr'),
|
|
916
|
+
launchTs: 1728574493000,
|
|
917
|
+
oracleSource: OracleSource.Prelaunch,
|
|
918
|
+
},
|
|
899
919
|
];
|
|
900
920
|
|
|
901
921
|
export const PerpMarkets: { [key in DriftEnv]: PerpMarketConfig[] } = {
|
package/src/idl/drift.json
CHANGED