2022-02-14 16:04:34 +08:00
|
|
|
#if ALTCOINS
|
|
|
|
using BTCPayServer.Client.Models;
|
|
|
|
using BTCPayServer.Payments;
|
2023-11-29 18:51:40 +09:00
|
|
|
using BTCPayServer.Plugins.Altcoins;
|
2022-02-14 16:04:34 +08:00
|
|
|
using BTCPayServer.Services.Altcoins.Zcash.Utils;
|
|
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Zcash.Payments
|
|
|
|
{
|
|
|
|
public class ZcashLikePaymentData : 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; }
|
2023-04-10 16:38:49 +09:00
|
|
|
public string GetPaymentProof()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
2022-02-14 16:04:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|