Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/invoicing.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
Loading