Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@kokosro/kraken-api
Advanced tools
Compatible with Kraken API Websockets 1.7.0
const config = {
credentials: { secret , key },
pairs: [ ... ], // list of pairs to listen
depth: 25, // orderbook depth
ordersRef: 0, // orders will be open with the reference
autoConnect: false // automatically connects to server
cancelOrdersOnProcessExit: true // defaults to false. issues a cancellAllOrders on SIGINT
debug
};
const Kraken = require('@kokosro/kraken-api');
const kraken = new Kraken(config);
kraken.init().then(()=>{
// websocket connects should be opened
}).catch(console.error);
Pairs can be initiated on instance creation or by using .initPair(pair)
method
.addOrder(orderInfo)
orderInfo
.orders
Cancel a specific orders by providing their order ids
.cancelOrder(...orderids)
when no orderids
are provided it will try and cancel any live orders craeted by the instance ordersRef
.cancelAllOrders()
- will cancel all live orders created by the instance ordersRef
.orderbook(pair)
- will return the current orderbook of the pair
.bests()
- will return a snapshot of best prices for all pairs
ready
orderbook-change
{ pair, bids, asks, time }first-level-price-change
{ pair, side, current, previous }public-trade
{ pair, price, volume, side, orderType }own-trade
tradeorder-found
orderId, orderInfoorder-change
orderId, orderInfoorder-status
orderId, orderInfoFAQs
Kraken WS API wrapper
We found that @kokosro/kraken-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.