2020-06-29 04:44:35 +02:00
|
|
|
using System;
|
2017-12-21 07:52:04 +01:00
|
|
|
using System.Collections.Generic;
|
2018-01-11 14:52:28 +01:00
|
|
|
using System.IO;
|
2017-12-21 07:52:04 +01:00
|
|
|
using System.Linq;
|
|
|
|
using NBitcoin;
|
2018-01-12 03:54:57 +01:00
|
|
|
using NBXplorer;
|
2019-12-24 08:20:44 +01:00
|
|
|
using NBXplorer.Models;
|
2017-12-21 07:52:04 +01:00
|
|
|
|
|
|
|
namespace BTCPayServer
|
|
|
|
{
|
2019-05-09 12:05:08 +02:00
|
|
|
public enum DerivationType
|
|
|
|
{
|
|
|
|
Legacy,
|
|
|
|
SegwitP2SH,
|
|
|
|
Segwit
|
|
|
|
}
|
2018-01-11 14:52:28 +01:00
|
|
|
public class BTCPayDefaultSettings
|
|
|
|
{
|
|
|
|
static BTCPayDefaultSettings()
|
|
|
|
{
|
2018-04-19 09:54:25 +02:00
|
|
|
_Settings = new Dictionary<NetworkType, BTCPayDefaultSettings>();
|
|
|
|
foreach (var chainType in new[] { NetworkType.Mainnet, NetworkType.Testnet, NetworkType.Regtest })
|
2018-01-11 14:52:28 +01:00
|
|
|
{
|
|
|
|
var settings = new BTCPayDefaultSettings();
|
|
|
|
_Settings.Add(chainType, settings);
|
2018-04-19 09:54:25 +02:00
|
|
|
settings.DefaultDataDirectory = StandardConfiguration.DefaultDataDirectory.GetDirectory("BTCPayServer", NBXplorerDefaultSettings.GetFolderName(chainType));
|
2020-10-15 14:28:09 +02:00
|
|
|
settings.DefaultExtensionDirectory =
|
|
|
|
StandardConfiguration.DefaultDataDirectory.GetDirectory("BTCPayServer", "Extensions");
|
2018-01-11 14:52:28 +01:00
|
|
|
settings.DefaultConfigurationFile = Path.Combine(settings.DefaultDataDirectory, "settings.config");
|
2018-04-19 09:54:25 +02:00
|
|
|
settings.DefaultPort = (chainType == NetworkType.Mainnet ? 23000 :
|
|
|
|
chainType == NetworkType.Regtest ? 23002 :
|
|
|
|
chainType == NetworkType.Testnet ? 23001 : throw new NotSupportedException(chainType.ToString()));
|
2018-01-11 14:52:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-29 05:07:48 +02:00
|
|
|
static readonly Dictionary<NetworkType, BTCPayDefaultSettings> _Settings;
|
2018-01-11 14:52:28 +01:00
|
|
|
|
2018-04-19 09:54:25 +02:00
|
|
|
public static BTCPayDefaultSettings GetDefaultSettings(NetworkType chainType)
|
2018-01-11 14:52:28 +01:00
|
|
|
{
|
|
|
|
return _Settings[chainType];
|
|
|
|
}
|
|
|
|
|
|
|
|
public string DefaultDataDirectory { get; set; }
|
2020-10-15 14:28:09 +02:00
|
|
|
public string DefaultExtensionDirectory { get; set; }
|
2018-01-11 14:52:28 +01:00
|
|
|
public string DefaultConfigurationFile { get; set; }
|
|
|
|
public int DefaultPort { get; set; }
|
|
|
|
}
|
2019-05-29 11:43:50 +02:00
|
|
|
|
2020-06-28 10:55:27 +02:00
|
|
|
public class BTCPayNetwork : BTCPayNetworkBase
|
2017-12-21 07:52:04 +01:00
|
|
|
{
|
2020-06-28 10:55:27 +02:00
|
|
|
public Network NBitcoinNetwork { get { return NBXplorerNetwork?.NBitcoinNetwork; } }
|
2018-01-12 03:54:57 +01:00
|
|
|
public NBXplorer.NBXplorerNetwork NBXplorerNetwork { get; set; }
|
2019-05-29 11:43:50 +02:00
|
|
|
public bool SupportRBF { get; internal set; }
|
|
|
|
public string LightningImagePath { get; set; }
|
2018-01-11 14:52:28 +01:00
|
|
|
public BTCPayDefaultSettings DefaultSettings { get; set; }
|
2018-02-12 19:27:36 +01:00
|
|
|
public KeyPath CoinType { get; internal set; }
|
2020-06-28 10:55:27 +02:00
|
|
|
|
2019-05-09 12:05:08 +02:00
|
|
|
public Dictionary<uint, DerivationType> ElectrumMapping = new Dictionary<uint, DerivationType>();
|
2019-05-29 11:43:50 +02:00
|
|
|
|
2019-12-24 08:20:44 +01:00
|
|
|
public virtual bool WalletSupported { get; set; } = true;
|
2020-06-28 10:55:27 +02:00
|
|
|
public virtual bool ReadonlyWallet { get; set; } = false;
|
|
|
|
|
2019-09-21 16:39:44 +02:00
|
|
|
public int MaxTrackedConfirmation { get; internal set; } = 6;
|
|
|
|
public string UriScheme { get; internal set; }
|
2020-03-29 17:28:22 +02:00
|
|
|
public bool SupportPayJoin { get; set; } = false;
|
2020-04-27 11:15:38 +02:00
|
|
|
public bool SupportLightning { get; set; } = true;
|
2020-03-29 17:28:22 +02:00
|
|
|
|
2019-05-25 04:45:36 +02:00
|
|
|
public KeyPath GetRootKeyPath(DerivationType type)
|
|
|
|
{
|
|
|
|
KeyPath baseKey;
|
|
|
|
if (!NBitcoinNetwork.Consensus.SupportSegwit)
|
|
|
|
{
|
|
|
|
baseKey = new KeyPath("44'");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case DerivationType.Legacy:
|
|
|
|
baseKey = new KeyPath("44'");
|
|
|
|
break;
|
|
|
|
case DerivationType.SegwitP2SH:
|
|
|
|
baseKey = new KeyPath("49'");
|
|
|
|
break;
|
|
|
|
case DerivationType.Segwit:
|
|
|
|
baseKey = new KeyPath("84'");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
throw new ArgumentOutOfRangeException(nameof(type), type, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return baseKey
|
|
|
|
.Derive(CoinType);
|
|
|
|
}
|
2018-04-12 04:48:33 +02:00
|
|
|
|
2019-05-24 11:42:22 +02:00
|
|
|
public KeyPath GetRootKeyPath()
|
2018-04-12 04:48:33 +02:00
|
|
|
{
|
|
|
|
return new KeyPath(NBitcoinNetwork.Consensus.SupportSegwit ? "49'" : "44'")
|
2019-05-29 11:43:50 +02:00
|
|
|
.Derive(CoinType);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override T ToObject<T>(string json)
|
|
|
|
{
|
|
|
|
return NBXplorerNetwork.Serializer.ToObject<T>(json);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString<T>(T obj)
|
|
|
|
{
|
|
|
|
return NBXplorerNetwork.Serializer.ToString(obj);
|
|
|
|
}
|
2019-12-24 08:20:44 +01:00
|
|
|
public virtual IEnumerable<(MatchedOutput matchedOutput, OutPoint outPoint)> GetValidOutputs(NewTransactionEvent evtOutputs)
|
|
|
|
{
|
|
|
|
return evtOutputs.Outputs.Select(output =>
|
|
|
|
{
|
|
|
|
var outpoint = new OutPoint(evtOutputs.TransactionData.TransactionHash, output.Index);
|
|
|
|
return (output, outpoint);
|
|
|
|
});
|
|
|
|
}
|
2020-01-16 07:01:01 +01:00
|
|
|
|
2020-01-21 14:28:13 +01:00
|
|
|
public virtual string GenerateBIP21(string cryptoInfoAddress, Money cryptoInfoDue)
|
2020-01-16 07:01:01 +01:00
|
|
|
{
|
2020-01-21 14:28:13 +01:00
|
|
|
return $"{UriScheme}:{cryptoInfoAddress}?amount={cryptoInfoDue.ToString(false, true)}";
|
2020-01-16 07:01:01 +01:00
|
|
|
}
|
2020-05-03 18:04:34 +02:00
|
|
|
|
|
|
|
public virtual GetTransactionsResponse FilterValidTransactions(GetTransactionsResponse response)
|
|
|
|
{
|
|
|
|
return response;
|
|
|
|
}
|
2019-05-29 11:43:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public abstract class BTCPayNetworkBase
|
|
|
|
{
|
2020-01-26 11:45:52 +01:00
|
|
|
public bool ShowSyncSummary { get; set; } = true;
|
2019-05-29 11:43:50 +02:00
|
|
|
public string CryptoCode { get; internal set; }
|
|
|
|
public string BlockExplorerLink { get; internal set; }
|
|
|
|
public string DisplayName { get; set; }
|
2020-01-21 14:28:13 +01:00
|
|
|
public int Divisibility { get; set; } = 8;
|
2019-05-29 11:43:50 +02:00
|
|
|
[Obsolete("Should not be needed")]
|
|
|
|
public bool IsBTC
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return CryptoCode == "BTC";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string CryptoImagePath { get; set; }
|
|
|
|
public string[] DefaultRateRules { get; internal set; } = Array.Empty<string>();
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
return CryptoCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public virtual T ToObject<T>(string json)
|
|
|
|
{
|
2019-11-17 05:04:42 +01:00
|
|
|
return NBitcoin.JsonConverters.Serializer.ToObject<T>(json, null);
|
2019-05-29 11:43:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public virtual string ToString<T>(T obj)
|
|
|
|
{
|
2019-09-30 10:32:43 +02:00
|
|
|
return NBitcoin.JsonConverters.Serializer.ToString(obj, null);
|
2018-04-12 04:48:33 +02:00
|
|
|
}
|
2017-12-21 07:52:04 +01:00
|
|
|
}
|
|
|
|
}
|