mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-11 13:10:41 +00:00
bea5980c6f
Release 0.12.0
14 lines
488 B
TypeScript
14 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;
|