tardis-dev 13.34.4 → 13.35.0

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.
@@ -339,7 +339,7 @@ class BinanceLiquidationsMapper {
339
339
  exchange: this._exchange,
340
340
  id: undefined,
341
341
  price: Number(binanceLiquidation.p),
342
- amount: Number(binanceLiquidation.l),
342
+ amount: Number(binanceLiquidation.z),
343
343
  side: binanceLiquidation.S === 'SELL' ? 'sell' : 'buy',
344
344
  timestamp: (0, handy_1.fromMicroSecondsToDate)(binanceLiquidation.T),
345
345
  localTimestamp: localTimestamp
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tardis-dev",
3
- "version": "13.34.4",
3
+ "version": "13.35.0",
4
4
  "engines": {
5
5
  "node": ">=12"
6
6
  },
@@ -396,7 +396,7 @@ export class BinanceLiquidationsMapper implements Mapper<'binance-futures' | 'bi
396
396
  exchange: this._exchange,
397
397
  id: undefined,
398
398
  price: Number(binanceLiquidation.p),
399
- amount: Number(binanceLiquidation.l), // Order Last Filled Quantity
399
+ amount: Number(binanceLiquidation.z), // Order Filled Accumulated Quantity
400
400
  side: binanceLiquidation.S === 'SELL' ? 'sell' : 'buy',
401
401
  timestamp: fromMicroSecondsToDate(binanceLiquidation.T),
402
402
  localTimestamp: localTimestamp