Verify transaction implemented

This commit is contained in:
2023-08-06 12:57:04 +08:00
parent 8dea39f0d3
commit fcfa13f53f
4 changed files with 98 additions and 6 deletions
+2
View File
@@ -9,6 +9,8 @@ module.exports = function(app) {
.post(controller.postTransfer);
app.route('/status/:id')
.get(controller.getStatus);
app.route('/verifyTransaction/:id')
.get(controller.verifyTransaction);
app.route('/verify')
.post(controller.verifyAccount);
};