Add litecoin support

This commit is contained in:
2025-08-22 15:24:22 +02:00
parent 644defbff5
commit 9dcdd94b3a
2 changed files with 11 additions and 5 deletions

View File

@@ -58,16 +58,21 @@ export const payment_providers: PaymentProvider[] = [
name: "btc",
label: "Bitcoin",
crypto: true,
}, {
icon: "dogecoin",
name: "doge",
label: "Dogecoin",
crypto: true,
// }, {
// icon: "dogecoin",
// name: "doge",
// label: "Dogecoin",
// crypto: true,
}, {
icon: "monero",
name: "xmr",
label: "Monero",
crypto: true,
}, {
icon: "litecoin",
name: "ltc",
label: "Litecoin",
crypto: true,
},
]