mempool/examples/nodejs/bisq-js/statistics.ts
2021-08-10 01:30:13 -03:00

14 lines
256 B
TypeScript

import bisqJS from "./../../../src/index-bisq";
const init = async () => {
try {
const { statistics } = bisqJS();
const stats = await statistics.getStats();
console.log(stats);
} catch (error) {
console.log(error);
}
};
init();