-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlightning-api.js
190 lines (165 loc) · 5.44 KB
/
lightning-api.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
'use strict';
const router = require('express-promise-router')();
const LightningClient = require('lightning-client');
const config = require('../config');
const client = new LightningClient(config.lightningRoot);
/*
Get node info
curl http://localhost:9000/api/lightning/getinfo -s | jq
*/
router.get('/getinfo', (req, res) => {
return client.getinfo()
.then(result => res.send(result));
});
/*
List all configuration options, or with [config], just that one.
curl http://localhost:9000/api/lightning/listconfigs -s | jq
curl http://localhost:9000/api/lightning/listconfigs/rgb -s | jq
*/
router.get('/listconfigs', (req, res) => {
return client.listconfigs()
.then(result => res.send(result));
});
router.get('/listconfigs/:config', (req, res) => {
return client.listconfigs(req.params.config)
.then(result => res.send(result));
});
/*
Get peers
curl http://localhost:9000/api/lightning/listpeers -s | jq
*/
router.get('/listpeers', (req, res) => {
return client.listpeers()
.then(result => res.send(result));
});
/*
Get nodes
curl http://localhost:9000/api/lightning/listnodes -s | jq
*/
router.get('/listnodes', (req, res) => {
return client.listnodes()
.then(result => res.send(result));
});
/*
Get channels
curl http://localhost:9000/api/lightning/listchannels -s | jq
*/
router.get('/listchannels', (req, res) => {
return client.listchannels()
.then(result => res.send(result));
});
/*
New address
curl http://localhost:9000/api/lightning/getnewaddress -s | jq
*/
router.get('/getnewaddress', (req, res) => {
return client.newaddr()
.then(result => res.send(result));
});
/*
Open a channel
curl -X POST -H 'Content-Type: application/json' -d '{"ip":"localhost","port":"8899","nodeid":"<nodeid>","amount":10000}' http://localhost:9000/api/lightning/openchannel -s | jq
*/
router.post('/openchannel', (req, res) => {
return client.connect(req.body.ip, req.body.port, req.body.nodeid)
.then(() => client.fundchannel(req.body.nodeid, req.body.amount))
.then(result => res.send(result));
});
/*
Add funds
curl -X POST -H 'Content-Type: application/json' -d '{"rawtx":"<raw transaction hex>"}' http://localhost:9000/api/lightning/addfunds -s | jq
*/
router.post('/addfunds', (req, res) => {
return client.addfunds(req.body.rawtx)
.then(result => res.send(result));
});
/*
Move funds into a channel
curl -X POST -H 'Content-Type: application/json' -d '{"nodeid":"<node id>", "amount": 1000}' http://localhost:9000/api/lightning/fundchannel -s | jq
*/
router.post('/fundchannel', (req, res) => {
return client.fundchannel(req.body.nodeid, req.body.amount)
.then(result => res.send(result));
});
/*
Connect to a node
curl -X POST -H 'Content-Type: application/json' -d '{"ip":"localhost","port":"8899","nodeid":"<nodeid>"}' http://localhost:9000/api/lightning/connect -s | jq
*/
router.post('/connect', (req, res) => {
return client.connect(req.body.ip, req.body.port, req.body.nodeid)
.then(result => res.send(result));
});
/*
List the available funds
curl http://localhost:9000/api/lightning/listfunds -s | jq
*/
router.get('/listfunds', (req, res) => {
return client.listfunds()
.then(result => res.send(result));
});
/*
Close a channel
curl -X POST -H 'Content-Type: application/json' -d '{"nodeid":""}' http://localhost:9000/api/lightning/closechannel -s | jq
*/
router.post('/closechannel', (req, res) => {
return client.close(req.body.nodeid)
.then(result => res.send(result));
});
/*
Get route
curl -X POST -H 'Content-Type: application/json' -d '{"nodeid":"","amount":"","riskFactor":""}' http://localhost:9000/api/lightning/getroute -s | jq
*/
router.post('/getroute', (req, res) => {
return client.getroute(req.body.nodeid, req.body.amount, req.body.riskFactor)
.then(result => res.send(result));
});
/*
Create invoice
curl -X POST -H 'Content-Type: application/json' -d '{"label":"Invoice # 1"}' http://localhost:9000/api/lightning/invoice -s | jq
*/
router.post('/createinvoice', (req, res) => {
return client.invoice(req.body.amount, req.body.label)
.then(result => res.send(result));
});
/*
List invoice
curl http://localhost:9000/api/lightning/listinvoice -s | jq
*/
router.get('/listinvoices', (req, res) => {
return client.listinvoices()
.then(result => res.send(result));
});
/*
Delete an invoice
curl -S DELETE http://localhost:9000/api/lightning/invoice -s | jq
*/
router.delete('/invoice/:label', (req, res) => {
return client.delinvoice(req.params.label)
.then(result => res.send(result));
});
/*
Withdraw
curl -S DELETE http://localhost:9000/api/lightning/invoice -s | jq
*/
router.post('/withdraw', (req, res) => {
return client.withdraw(req.body.address, req.body.amount)
.then(result => res.send(result));
});
/*
Send pay
curl -X POST -H 'Content-Type: application/json' -d '{"route":[...],"hash":""}' http://localhost:9000/api/lightning/sendpay -s | jq
*/
router.post('/sendpay', (req, res) => {
console.log(req.body.route, req.body.hash);
return client.sendpay(req.body.route, req.body.hash)
.then(result => res.send(result));
});
/*
Pay BOLT11 payment req
curl -X POST -H 'Content-Type: application/json' -d '{"payreq": "", "msatoshi": null, "description": null, "riskfactor": 1, "maxfeepercent": 0.5}' http://localhost:9000/api/lightning/pay -s | jq
*/
router.post('/pay', (req, res) => {
return client.pay(req.body.payreq, req.body.msatoshi, req.body.description, req.body.riskfactor, req.body.maxfeepercent)
.then(result => res.send(result));
});
module.exports = router;