New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ftx-api

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ftx-api - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

8

lib/util/requestWrapper.js

@@ -151,3 +151,9 @@ "use strict";

}
const signature_payload = `${timestamp}${method}/api/${endpoint}${serialisedParams}`;
let signature_payload;
if (serialisedParams === '?') {
signature_payload = `${timestamp}${method}/api/${endpoint}`;
}
else {
signature_payload = `${timestamp}${method}/api/${endpoint}${serialisedParams}`;
}
return {

@@ -154,0 +160,0 @@ timestamp,

2

package.json
{
"name": "ftx-api",
"version": "1.1.5",
"version": "1.1.6",
"description": "Node.js/typescript connector for FTX's REST APIs and WebSockets",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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