remove onchain for now

This commit is contained in:
Kukks
2024-03-26 20:13:40 +01:00
parent 79328644ca
commit 2684c3d3ea
2 changed files with 2 additions and 2 deletions

View File

@@ -394,7 +394,7 @@ public class BringinService : EventHostedServiceBase
public static readonly SupportedMethodOptions[] SupportedMethods = new[] public static readonly SupportedMethodOptions[] SupportedMethods = new[]
{ {
new SupportedMethodOptions(new PaymentMethodId("BTC", LightningPaymentType.Instance), true, 15, "LIGHTNING"), new SupportedMethodOptions(new PaymentMethodId("BTC", LightningPaymentType.Instance), true, 15, "LIGHTNING"),
new SupportedMethodOptions(new PaymentMethodId("BTC", BitcoinPaymentType.Instance), true, 20, "ON_CHAIN"), // new SupportedMethodOptions(new PaymentMethodId("BTC", BitcoinPaymentType.Instance), true, 20, "ON_CHAIN"),
}; };
private ConcurrentDictionary<string, (IDisposable, BringinStoreSettings, DateTimeOffset Expiry)> _editModes = new(); private ConcurrentDictionary<string, (IDisposable, BringinStoreSettings, DateTimeOffset Expiry)> _editModes = new();

View File

@@ -14,6 +14,6 @@ Allows you to automatically forward received funds to Bringin, a Euro offramp pr
8. Make sure to configure payout processors so that payments to Bringin are automatically created. 8. Make sure to configure payout processors so that payments to Bringin are automatically created.
## Flow ## Flow
When an invoice on your store is paid and settled, every payment is counted per payment type (on-chain, lightning), relative to the "percentage" configured (set to 0 to not enable this payment). When an invoice on your store is paid and settled, every payment is counted per payment type (lightning, on-chain coming soon), relative to the "percentage" configured (set to 0 to not enable this payment).
Once the threshold is reached, an order is created on Bringin, and a payout paying this order is created. A payout processor then picks this payout and sends it to Bringin. Once the payment settles, the funds are automatically converted to Euro and the balance is reflected in your Bringin account and the BTCPay Server Bringin widget. Once the threshold is reached, an order is created on Bringin, and a payout paying this order is created. A payout processor then picks this payout and sends it to Bringin. Once the payment settles, the funds are automatically converted to Euro and the balance is reflected in your Bringin account and the BTCPay Server Bringin widget.