tardis-dev 13.12.0 → 13.13.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.
@@ -152,7 +152,7 @@ type BinanceBookTickerData = {
152
152
  B: string;
153
153
  a: string;
154
154
  A: string;
155
- T?: number;
155
+ E?: number;
156
156
  };
157
157
  export {};
158
158
  //# sourceMappingURL=binance.d.ts.map
@@ -377,7 +377,7 @@ class BinanceBookTickerMapper {
377
377
  askPrice: binanceBookTicker.a !== undefined ? Number(binanceBookTicker.a) : undefined,
378
378
  bidPrice: binanceBookTicker.b !== undefined ? Number(binanceBookTicker.b) : undefined,
379
379
  bidAmount: binanceBookTicker.B !== undefined ? Number(binanceBookTicker.B) : undefined,
380
- timestamp: binanceBookTicker.T !== undefined ? new Date(binanceBookTicker.T) : localTimestamp,
380
+ timestamp: binanceBookTicker.E !== undefined ? new Date(binanceBookTicker.E) : localTimestamp,
381
381
  localTimestamp: localTimestamp
382
382
  };
383
383
  yield ticker;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tardis-dev",
3
- "version": "13.12.0",
3
+ "version": "13.13.0",
4
4
  "engines": {
5
5
  "node": ">=12"
6
6
  },
@@ -439,7 +439,7 @@ export class BinanceBookTickerMapper implements Mapper<'binance-futures' | 'bina
439
439
  askPrice: binanceBookTicker.a !== undefined ? Number(binanceBookTicker.a) : undefined,
440
440
  bidPrice: binanceBookTicker.b !== undefined ? Number(binanceBookTicker.b) : undefined,
441
441
  bidAmount: binanceBookTicker.B !== undefined ? Number(binanceBookTicker.B) : undefined,
442
- timestamp: binanceBookTicker.T !== undefined ? new Date(binanceBookTicker.T) : localTimestamp,
442
+ timestamp: binanceBookTicker.E !== undefined ? new Date(binanceBookTicker.E) : localTimestamp,
443
443
  localTimestamp: localTimestamp
444
444
  }
445
445
 
@@ -545,5 +545,5 @@ type BinanceBookTickerData = {
545
545
  B: string // best bid qty
546
546
  a: string // best ask price
547
547
  A: string // best ask qty
548
- T?: number // transaction time
548
+ E?: number // transaction time
549
549
  }