lnurl / luds

lnurl specifications
584 stars 138 forks source link

LUD-06 - What is "pr" #263

Closed patrickReiis closed 2 months ago

patrickReiis commented 2 months ago

In the step 6, it's mentioned that LN Service takes the GET request and returns a JSON response in form of:

{
    pr: string, // bech32-serialized lightning invoice
    routes: [] // an empty array
}

What does pr stands for? I tried imagining it or looking it up on the internet but I couldn't find it.

hsjoberg commented 2 months ago

Hi. It stands for Payment Request. A common term for BOLT11 invoices.

patrickReiis commented 2 months ago

Thank you very much!