d60a589bc0
* Prototype implementing LUD-12 comments on payRequest in LNURLP Lightning Address flow * Support sending comment when withdrawing to ln addr (LUD-12) * Prevent `initialError` from being toasted informs multiple times * delete the old create_invoice function * improve lightning addr withdrawal styling * allow lnaddr comment to show up in notifications * enhance satistics --------- Co-authored-by: keyan <keyan.kousha+huumn@gmail.com>
23 lines
1.3 KiB
JavaScript
23 lines
1.3 KiB
JavaScript
import { getPublicKey } from 'nostr'
|
|
import models from '../../../../api/models'
|
|
import { lnurlPayMetadataString } from '../../../../lib/lnurl'
|
|
import { LNURLP_COMMENT_MAX_LENGTH } from '../../../../lib/constants'
|
|
|
|
export default async ({ query: { username } }, res) => {
|
|
const user = await models.user.findUnique({ where: { name: username } })
|
|
if (!user) {
|
|
return res.status(400).json({ status: 'ERROR', reason: `user @${username} does not exist` })
|
|
}
|
|
|
|
return res.status(200).json({
|
|
callback: `${process.env.PUBLIC_URL}/api/lnurlp/${username}/pay`, // The URL from LN SERVICE which will accept the pay request parameters
|
|
minSendable: 1000, // Min amount LN SERVICE is willing to receive, can not be less than 1 or more than `maxSendable`
|
|
maxSendable: 1000000000,
|
|
metadata: lnurlPayMetadataString(username), // Metadata json which must be presented as raw string here, this is required to pass signature verification at a later step
|
|
commentAllowed: LNURLP_COMMENT_MAX_LENGTH, // LUD-12 Comments for payRequests https://github.com/lnurl/luds/blob/luds/12.md
|
|
tag: 'payRequest', // Type of LNURL
|
|
nostrPubkey: process.env.NOSTR_PRIVATE_KEY ? getPublicKey(process.env.NOSTR_PRIVATE_KEY) : undefined,
|
|
allowsNostr: !!process.env.NOSTR_PRIVATE_KEY
|
|
})
|
|
}
|