aboutsummaryrefslogtreecommitdiff
path: root/api/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/routes/index.js')
-rw-r--r--api/routes/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/api/routes/index.js b/api/routes/index.js
index b771758..5842757 100644
--- a/api/routes/index.js
+++ b/api/routes/index.js
@@ -10,6 +10,7 @@ const getSBlock = require('./getSBlock');
const getZChain = require('./getZChain');
const receiveZBlock = require('./receiveZBlock');
const receiveZChain = require('./receiveZChain');
+const getZblock = require('./getZblock');
const corsOptions = {
origin: '*',
optionsSuccessStatus: 200 // some legacy browsers (IE11, various SmartTVs) choke on 204
@@ -34,6 +35,8 @@ router.route(settings.URL_PREFIX+'/sblock').get(getSBlock);
router.route(settings.URL_PREFIX+'/zchain').get(getZChain);
// Returns latest zblock from node's local chain
router.route(settings.URL_PREFIX+'/zlatest').get(getZLatest);
+// Returns zblock
+router.route(settings.URL_PREFIX+'/zblock').get(getZblock);
// Send a block to the node (zchain block)
router.route(settings.URL_PREFIX+'/sblk').post(receiveZBlock);
// Send a zchain link to the node (refering to a valid zchain out there)