mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
36 lines
918 B
C#
36 lines
918 B
C#
using BTCPayServer.Payments;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Monero.Payments
|
|
{
|
|
public class MoneroLikeOnChainPaymentMethodDetails : IPaymentMethodDetails
|
|
{
|
|
public PaymentType GetPaymentType()
|
|
{
|
|
return MoneroPaymentType.Instance;
|
|
}
|
|
|
|
public string GetPaymentDestination()
|
|
{
|
|
return DepositAddress;
|
|
}
|
|
|
|
public decimal GetNextNetworkFee()
|
|
{
|
|
return NextNetworkFee;
|
|
}
|
|
|
|
public decimal GetFeeRate()
|
|
{
|
|
return 0.0m;
|
|
}
|
|
|
|
public void SetPaymentDestination(string newPaymentDestination)
|
|
{
|
|
DepositAddress = newPaymentDestination;
|
|
}
|
|
public long AccountIndex { get; set; }
|
|
public long AddressIndex { get; set; }
|
|
public string DepositAddress { get; set; }
|
|
public decimal NextNetworkFee { get; set; }
|
|
}
|
|
}
|