@drift-labs/sdk 0.1.34-master.4 → 0.1.34-master.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/lib/constants/markets.js +11 -0
- package/package.json +1 -1
- package/src/constants/markets.ts +11 -0
package/lib/constants/markets.js
CHANGED
|
@@ -221,4 +221,15 @@ exports.Markets = [
|
|
|
221
221
|
launchTs: 1651017354000,
|
|
222
222
|
oracleSource: __1.OracleSource.SWITCHBOARD,
|
|
223
223
|
},
|
|
224
|
+
{
|
|
225
|
+
fullName: 'Fantom',
|
|
226
|
+
category: ['L1', 'Infra'],
|
|
227
|
+
symbol: 'FTM-PERP',
|
|
228
|
+
baseAssetSymbol: 'FTM',
|
|
229
|
+
marketIndex: new __1.BN(20),
|
|
230
|
+
devnetPublicKey: 'BTwrLU4so1oJMViWA3BTzh8YmFwiLZ6CL4U3JryG7Q5S',
|
|
231
|
+
mainnetPublicKey: '7Dn52EY5EGE8Nvvw98KVMGPWTiTGn3PF4y24TVLyXdT9',
|
|
232
|
+
launchTs: 1651559653000,
|
|
233
|
+
oracleSource: __1.OracleSource.PYTH,
|
|
234
|
+
},
|
|
224
235
|
];
|
package/package.json
CHANGED
package/src/constants/markets.ts
CHANGED
|
@@ -231,4 +231,15 @@ export const Markets: MarketConfig[] = [
|
|
|
231
231
|
launchTs: 1651017354000,
|
|
232
232
|
oracleSource: OracleSource.SWITCHBOARD,
|
|
233
233
|
},
|
|
234
|
+
{
|
|
235
|
+
fullName: 'Fantom',
|
|
236
|
+
category: ['L1', 'Infra'],
|
|
237
|
+
symbol: 'FTM-PERP',
|
|
238
|
+
baseAssetSymbol: 'FTM',
|
|
239
|
+
marketIndex: new BN(20),
|
|
240
|
+
devnetPublicKey: 'BTwrLU4so1oJMViWA3BTzh8YmFwiLZ6CL4U3JryG7Q5S',
|
|
241
|
+
mainnetPublicKey: '7Dn52EY5EGE8Nvvw98KVMGPWTiTGn3PF4y24TVLyXdT9',
|
|
242
|
+
launchTs: 1651559653000,
|
|
243
|
+
oracleSource: OracleSource.PYTH,
|
|
244
|
+
},
|
|
234
245
|
];
|