Socket
Socket
Sign inDemoInstall

preidman-ccxt

Package Overview
Dependencies
63
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.18.194 to 1.18.195

15

js/wavesdex.js

@@ -412,3 +412,16 @@ 'use strict';

return ord
let res = {}
if (ord['status'] === 'OrderAccepted') {
res = ord['message']
res['side'] = res['orderType']
res['price'] = res['price'] / 10 ** (8 + marketPrecision - assetPrecision)
res['amount'] = res['amount'] / 10 ** (8 + marketPrecision - assetPrecision)
res['symbol'] = symbol
res['status'] = 'OK'
} else {
res['status'] = 'ERR'
res['message'] = ord
}
return res
}

@@ -415,0 +428,0 @@

2

package.json
{
"name": "preidman-ccxt",
"version": "1.18.194",
"version": "1.18.195",
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges",

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc