Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Easy way to add Bisq Network API to your JS application.
Help me to stack sats! :blush:
bc1qn6d6g8ln5zppnh0k70sgmr745td7j2xsgw7elm
Or donate via Lightning Network!
Using npm:
$ npm install bisq-js
Using yarn:
$ yarn add bisq-js
Provides list of available currencies for a given base currency.
import bisq from 'bisq-js';
const currencies = await bisq.getCurrencies();
console.log(currencies);
Provides list of open offer prices for a single market.
import bisq from 'bisq-js';
const depth = await bisq.getDepth();
console.log(depth);
Provides hi/low/open/close data for a given market. This can be used to generate a candlestick chart.
import bisq from 'bisq-js';
const hloc = await bisq.getHloc({ market: 'xmr_btc' });
console.log(hloc);
Provides list of available markets.
import bisq from 'bisq-js';
const markets = await bisq.getMarkets();
console.log(markets);
Provides list of open offer details for a single market.
import bisq from 'bisq-js';
const offers = await bisq.getOffers({ market: 'xmr_btc' });
console.log(offers);
Provides 24 hour price ticker for single market or all markets
import bisq from 'bisq-js';
const ticker = await bisq.getTicker();
console.log(ticker);
Provides 24 hour price ticker for single market or all markets
import bisq from 'bisq-js';
const trades = await bisq.getTrades({ market: 'xmr_btc' });
console.log(trades);
Provides periodic volume data in terms of base currency for one or all markets.
import bisq from 'bisq-js';
const volumes = await bisq.getVolumes();
console.log(volumes);
Pull requests are welcome! For major changes, please open an issue first to discuss what you would like to change.
FAQs
NPM Package for Bisq.network API.
We found that bisq-js 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
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.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.