From 87a502cc20c5eba671dba9aaed9b0dc547679be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20D=E2=80=99Aquino?= Date: Wed, 23 Jul 2025 11:48:19 -0700 Subject: [PATCH] Update pricing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel D’Aquino --- src/invoicing.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } }