mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
Add Tests Add Index, XPub to payment data Add Note on local ETH node Fix Sync Summary and Race Condition
77 lines
2.2 KiB
C#
77 lines
2.2 KiB
C#
#if ALTCOINS
|
|
using System.Globalization;
|
|
using System.Numerics;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Services.Invoices;
|
|
using Nethereum.Hex.HexTypes;
|
|
using Nethereum.Web3;
|
|
|
|
namespace BTCPayServer.Services.Altcoins.Ethereum.Payments
|
|
{
|
|
public class EthereumLikePaymentData : CryptoPaymentData
|
|
{
|
|
public long Amount { get; set; }
|
|
public string CryptoCode { get; set; }
|
|
public string Address { get; set; }
|
|
public long AccountIndex { get; set; }
|
|
public string XPub { get; set; }
|
|
public long ConfirmationCount { get; set; }
|
|
public BTCPayNetworkBase Network { get; set; }
|
|
public long? BlockNumber { get; set; }
|
|
|
|
public string GetPaymentId()
|
|
{
|
|
return GetPaymentId(CryptoCode,Address, Amount);
|
|
}
|
|
|
|
public static string GetPaymentId(string cryptoCode, string address, long amount)
|
|
{
|
|
return $"{cryptoCode}#{address}#{amount}";
|
|
}
|
|
|
|
public string[] GetSearchTerms()
|
|
{
|
|
return new[] {Address};
|
|
}
|
|
|
|
public decimal GetValue()
|
|
{
|
|
return decimal.Parse(Web3.Convert.FromWeiToBigDecimal(Amount, Network.Divisibility).ToString(),
|
|
CultureInfo.InvariantCulture);
|
|
}
|
|
|
|
public bool PaymentCompleted(PaymentEntity entity)
|
|
{
|
|
return ConfirmationCount >= 25;
|
|
}
|
|
|
|
public bool PaymentConfirmed(PaymentEntity entity, SpeedPolicy speedPolicy)
|
|
{
|
|
switch (speedPolicy)
|
|
{
|
|
case SpeedPolicy.HighSpeed:
|
|
return ConfirmationCount >= 2;
|
|
case SpeedPolicy.MediumSpeed:
|
|
return ConfirmationCount >= 6;
|
|
case SpeedPolicy.LowMediumSpeed:
|
|
return ConfirmationCount >= 12;
|
|
case SpeedPolicy.LowSpeed:
|
|
return ConfirmationCount >= 20;
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public PaymentType GetPaymentType()
|
|
{
|
|
return EthereumPaymentType.Instance;
|
|
}
|
|
|
|
public string GetDestination()
|
|
{
|
|
return Address;
|
|
}
|
|
}
|
|
}
|
|
#endif
|