2020-07-29 18:55:28 +09:00
|
|
|
#if ALTCOINS
|
2020-05-23 21:13:18 +02:00
|
|
|
using BTCPayServer.Client.Models;
|
2019-09-30 10:32:43 +02:00
|
|
|
using BTCPayServer.Payments;
|
2023-11-29 18:51:40 +09:00
|
|
|
using BTCPayServer.Plugins.Altcoins;
|
2020-06-28 17:55:27 +09:00
|
|
|
using BTCPayServer.Services.Altcoins.Monero.Utils;
|
2019-09-30 10:32:43 +02:00
|
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
|
2019-10-02 22:41:53 -05:00
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.Payments
|
2019-09-30 10:32:43 +02:00
|
|
|
{
|
|
|
|
public class MoneroLikePaymentData : CryptoPaymentData
|
|
|
|
{
|
|
|
|
public long SubaddressIndex { get; set; }
|
|
|
|
public long SubaccountIndex { get; set; }
|
|
|
|
public long BlockHeight { get; set; }
|
|
|
|
public long ConfirmationCount { get; set; }
|
|
|
|
public string TransactionId { get; set; }
|
2024-03-14 17:31:27 +08:00
|
|
|
public long? InvoiceSettledConfirmationThreshold { get; set; }
|
2019-09-30 10:32:43 +02:00
|
|
|
|
2022-11-21 19:55:13 +01:00
|
|
|
public long LockTime { get; set; } = 0;
|
2023-04-10 16:38:49 +09:00
|
|
|
public string GetPaymentProof()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2019-09-30 10:32:43 +02:00
|
|
|
}
|
|
|
|
}
|
2020-07-28 22:48:51 +02:00
|
|
|
#endif
|