mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-22 22:25:43 +01:00
13 lines
488 B
TypeScript
13 lines
488 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getNewAddress, getBalance, getTransactions, sendFunds } from '../../controllers/eclair/onchain.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getNewAddress);
|
|
router.get('/balance/', isAuthenticated, getBalance);
|
|
router.get('/transactions/', isAuthenticated, getTransactions);
|
|
router.post('/', isAuthenticated, sendFunds);
|
|
|
|
export default router;
|