16 lines
281 B
TypeScript
Raw Normal View History

2021-08-10 01:30:13 -03:00
import mempoolJS from "./../../../../src/index";
const init = async () => {
try {
const {
bisq: { statistics },
} = mempoolJS();
const stats = await statistics.getStats();
console.log(stats);
} catch (error) {
console.log(error);
}
};
init();