Bisq statistics page.

This commit is contained in:
softsimon
2020-07-14 14:38:52 +07:00
parent 87abfc38cb
commit b7376fbd8d
14 changed files with 221 additions and 11 deletions

View File

@@ -87,6 +87,11 @@ class Routes {
res.send(backendInfo.getBackendInfo());
}
public getBisqStats(req: Request, res: Response) {
const result = bisq.getStats();
res.send(result);
}
public getBisqTransaction(req: Request, res: Response) {
const result = bisq.getTransaction(req.params.txId);
if (result) {