diff --git a/src/invoicing.js b/src/invoicing.js index e1edd8b..ef4ddc3 100644 --- a/src/invoicing.js +++ b/src/invoicing.js @@ -36,14 +36,14 @@ function getInvoiceTemplates() { description: "Purple (One Month)", special_label: null, // TODO: Make this value change based on the exchange rate of BTC vs USD (or not? 1 BTC = 1 BTC, USD is a shitcoin since 1971) - amount_msat: 15000 * 1000, // 15k sats / month + amount_msat: 8250 * 1000, // 8,250 sats / month expiry: 30 * 24 * 60 * 60 // 30 days }, "purple_one_year": { description: "Purple (One Year)", special_label: "Save 16%!", // TODO: Make this value change based on the exchange rate of BTC vs USD (or not? 1 BTC = 1 BTC, USD is a shitcoin since 1971) - amount_msat: 15000 * 10 * 1000, // 150k sats / year + amount_msat: 8250 * 10 * 1000, // 82,500 sats / year expiry: 365 * 24 * 60 * 60 // 365 days } }