Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tardis-dev

Package Overview
Dependencies
Maintainers
1
Versions
272
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tardis-dev - npm Package Compare versions

Comparing version 12.0.9 to 12.1.0

1

dist/mappers/binance.d.ts

@@ -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',

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc