@drift-labs/sdk 2.65.0-beta.10 → 2.65.0-beta.11
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/spotMarkets.js +11 -0
- package/package.json +1 -1
- package/src/constants/spotMarkets.ts +11 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.65.0-beta.
|
|
1
|
+
2.65.0-beta.11
|
|
@@ -164,6 +164,17 @@ exports.MainnetSpotMarkets = [
|
|
|
164
164
|
phoenixMarket: new web3_js_1.PublicKey('2pspvjWWaf3dNgt3jsgSzFCNvMGPb7t8FrEYvLGjvcCe'),
|
|
165
165
|
launchTs: 1706731200000,
|
|
166
166
|
},
|
|
167
|
+
{
|
|
168
|
+
symbol: 'RNDR',
|
|
169
|
+
marketIndex: 12,
|
|
170
|
+
oracle: new web3_js_1.PublicKey('CYGfrBJB9HgLf9iZyN4aH5HvUAi2htQ4MjPxeXMf4Egn'),
|
|
171
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
172
|
+
mint: new web3_js_1.PublicKey('rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof'),
|
|
173
|
+
precision: new __1.BN(10).pow(numericConstants_1.EIGHT),
|
|
174
|
+
precisionExp: numericConstants_1.EIGHT,
|
|
175
|
+
serumMarket: new web3_js_1.PublicKey('2m7ZLEKtxWF29727DSb5D91erpXPUY1bqhRWRC3wQX7u'),
|
|
176
|
+
launchTs: 1708964021000,
|
|
177
|
+
},
|
|
167
178
|
];
|
|
168
179
|
exports.SpotMarkets = {
|
|
169
180
|
devnet: exports.DevnetSpotMarkets,
|
package/package.json
CHANGED
|
@@ -203,6 +203,17 @@ export const MainnetSpotMarkets: SpotMarketConfig[] = [
|
|
|
203
203
|
),
|
|
204
204
|
launchTs: 1706731200000,
|
|
205
205
|
},
|
|
206
|
+
{
|
|
207
|
+
symbol: 'RNDR',
|
|
208
|
+
marketIndex: 12,
|
|
209
|
+
oracle: new PublicKey('CYGfrBJB9HgLf9iZyN4aH5HvUAi2htQ4MjPxeXMf4Egn'),
|
|
210
|
+
oracleSource: OracleSource.PYTH,
|
|
211
|
+
mint: new PublicKey('rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof'),
|
|
212
|
+
precision: new BN(10).pow(EIGHT),
|
|
213
|
+
precisionExp: EIGHT,
|
|
214
|
+
serumMarket: new PublicKey('2m7ZLEKtxWF29727DSb5D91erpXPUY1bqhRWRC3wQX7u'),
|
|
215
|
+
launchTs: 1708964021000,
|
|
216
|
+
},
|
|
206
217
|
];
|
|
207
218
|
|
|
208
219
|
export const SpotMarkets: { [key in DriftEnv]: SpotMarketConfig[] } = {
|