16 lines
281 B
TypeScript
16 lines
281 B
TypeScript
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();
|