mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
bea5980c6f
Release 0.12.0
15 lines
793 B
JavaScript
15 lines
793 B
JavaScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { genSeed, updateSelNodeOptions, getUTXOs, operateWallet, bumpFee, labelTransaction, leaseUTXO, releaseUTXO } from '../../controllers/lnd/wallet.js';
|
|
const router = Router();
|
|
router.get('/genseed/:passphrase?', isAuthenticated, genSeed);
|
|
router.get('/updateSelNodeOptions', isAuthenticated, updateSelNodeOptions);
|
|
router.get('/getUTXOs', isAuthenticated, getUTXOs);
|
|
router.post('/wallet/:operation', isAuthenticated, operateWallet);
|
|
router.post('/bumpfee', isAuthenticated, bumpFee);
|
|
router.post('/label', isAuthenticated, labelTransaction);
|
|
router.post('/lease', isAuthenticated, leaseUTXO);
|
|
router.post('/release', isAuthenticated, releaseUTXO);
|
|
export default router;
|