tardis-dev
Advanced tools
Comparing version 12.0.9 to 12.1.0
@@ -62,2 +62,3 @@ import { CircularBuffer } from '../handy'; | ||
m: true; | ||
X?: 'INSURANCE_FUND' | 'MARKET'; | ||
}; | ||
@@ -64,0 +65,0 @@ declare type BinanceBookLevel = [string, string]; |
@@ -29,2 +29,6 @@ "use strict"; | ||
const binanceTrade = binanceTradeResponse.data; | ||
const isOffBookTrade = binanceTrade.X === 'INSURANCE_FUND'; | ||
if (isOffBookTrade) { | ||
return; | ||
} | ||
const trade = { | ||
@@ -31,0 +35,0 @@ type: 'trade', |
{ | ||
"name": "tardis-dev", | ||
"version": "12.0.9", | ||
"version": "12.1.0", | ||
"engines": { | ||
@@ -5,0 +5,0 @@ "node": ">=12" |
@@ -33,2 +33,7 @@ import { debug } from '../debug' | ||
const isOffBookTrade = binanceTrade.X === 'INSURANCE_FUND' | ||
if (isOffBookTrade) { | ||
return | ||
} | ||
const trade: Trade = { | ||
@@ -374,2 +379,3 @@ type: 'trade', | ||
m: true | ||
X?: 'INSURANCE_FUND' | 'MARKET' | ||
} | ||
@@ -376,0 +382,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
966833
17244