-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathindex.js
39 lines (36 loc) · 1.76 KB
/
index.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
/* eslint-disable camelcase */
import { payBolt12, parseBolt12, isBolt12Invoice, isBolt12Offer, estimateBolt12RouteFee } from '@/api/lib/bolt/bolt12'
import { payBolt11, parseBolt11, isBolt11, estimateBolt11RouteFee } from '@/api/lib/bolt/bolt11'
export async function payInvoice ({ lnd, lndk, request: invoice, max_fee, max_fee_mtokens, ...args }) {
if (isBolt12Invoice(invoice)) {
return await payBolt12({ lndk, request: invoice, max_fee, max_fee_mtokens, ...args })
} else if (isBolt11(invoice)) {
return await payBolt11({ lnd, request: invoice, max_fee, max_fee_mtokens, ...args })
} else if (isBolt12Offer(invoice)) {
throw new Error('cannot pay bolt12 offer directly, please fetch a bolt12 invoice from the offer first')
} else {
throw new Error('unknown invoice type')
}
}
export async function parseInvoice ({ lndk, request }) {
if (isBolt12Invoice(request)) {
return await parseBolt12({ lndk, request })
} else if (isBolt11(request)) {
return await parseBolt11({ request })
} else if (isBolt12Offer(request)) {
throw new Error('bolt12 offer instead of invoice, please fetch a bolt12 invoice from the offer first')
} else {
throw new Error('unknown invoice type')
}
}
export async function estimateFees ({ lnd, lndk, destination, tokens, mtokens, request, timeout }) {
if (isBolt12Invoice(request)) {
return await estimateBolt12RouteFee({ lnd, lndk, destination, tokens, mtokens, request, timeout })
} else if (isBolt11(request)) {
return await estimateBolt11RouteFee({ lnd, destination, tokens, request, mtokens, timeout })
} else if (isBolt12Offer(request)) {
throw new Error('bolt12 offer instead of invoice, please fetch a bolt12 invoice from the offer first')
} else {
throw new Error('unknown invoice type')
}
}