mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
48 lines
2.0 KiB
C#
48 lines
2.0 KiB
C#
using System.Collections.Generic;
|
|
using NBitcoin;
|
|
using NBXplorer;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public partial class BTCPayNetworkProvider
|
|
{
|
|
public void InitLitecoin()
|
|
{
|
|
var nbxplorerNetwork = NBXplorerNetworkProvider.GetFromCryptoCode("LTC");
|
|
Add(new BTCPayNetwork()
|
|
{
|
|
CryptoCode = nbxplorerNetwork.CryptoCode,
|
|
DisplayName = "Litecoin",
|
|
BlockExplorerLink = NetworkType == NetworkType.Mainnet
|
|
? "https://live.blockcypher.com/ltc/tx/{0}/"
|
|
: "http://explorer.litecointools.com/tx/{0}",
|
|
NBXplorerNetwork = nbxplorerNetwork,
|
|
UriScheme = "litecoin",
|
|
DefaultRateRules = new[]
|
|
{
|
|
"LTC_X = LTC_BTC * BTC_X",
|
|
"LTC_BTC = coingecko(LTC_BTC)"
|
|
},
|
|
CryptoImagePath = "imlegacy/litecoin.svg",
|
|
LightningImagePath = "imlegacy/litecoin-lightning.svg",
|
|
DefaultSettings = BTCPayDefaultSettings.GetDefaultSettings(NetworkType),
|
|
CoinType = NetworkType == NetworkType.Mainnet ? new KeyPath("2'") : new KeyPath("1'"),
|
|
//https://github.com/pooler/electrum-ltc/blob/0d6989a9d2fb2edbea421c116e49d1015c7c5a91/electrum_ltc/constants.py
|
|
ElectrumMapping = NetworkType == NetworkType.Mainnet
|
|
? new Dictionary<uint, DerivationType>()
|
|
{
|
|
{0x0488b21eU, DerivationType.Legacy },
|
|
{0x049d7cb2U, DerivationType.SegwitP2SH },
|
|
{0x04b24746U, DerivationType.Segwit },
|
|
}
|
|
: new Dictionary<uint, DerivationType>()
|
|
{
|
|
{0x043587cfU, DerivationType.Legacy },
|
|
{0x044a5262U, DerivationType.SegwitP2SH },
|
|
{0x045f1cf6U, DerivationType.Segwit }
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|