mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-09 13:10:44 +00:00
14 lines
642 B
JavaScript
14 lines
642 B
JavaScript
const graphController = require("../../controllers/lnd/graph");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../authCheck");
|
|
|
|
router.get("/", authCheck, graphController.getDescribeGraph);
|
|
router.get("/info", authCheck, graphController.getGraphInfo);
|
|
router.get("/node/:pubKey", authCheck, graphController.getGraphNode);
|
|
router.get("/edge/:chanid", authCheck, graphController.getGraphEdge);
|
|
router.get("/edge/:chanid/:localPubkey", authCheck, graphController.getRemoteFeePolicy);
|
|
router.get("/routes/:destPubkey/:amount", authCheck, graphController.getQueryRoutes);
|
|
|
|
module.exports = router;
|