mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Removes Chaincoin shitcoin which is so dead even its website is gone * Add ExchangeRateHost and FreeCurrencyRates as new rate providers * Add recommended rate providers for UGX and RSD * Fix BTX rate by switching to graviex * Fix BTC rate by switching to exmo * Fix LCAD rate script
29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using NBitcoin;
|
|
using NBXplorer;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public partial class BTCPayNetworkProvider
|
|
{
|
|
public void InitBitcore()
|
|
{
|
|
var nbxplorerNetwork = NBXplorerNetworkProvider.GetFromCryptoCode("BTX");
|
|
Add(new BTCPayNetwork()
|
|
{
|
|
CryptoCode = nbxplorerNetwork.CryptoCode,
|
|
DisplayName = "BitCore",
|
|
BlockExplorerLink = NetworkType == ChainName.Mainnet ? "https://explorer.bitcore.cc/tx/{0}" : "https://explorer.bitcore.cc/tx/{0}",
|
|
NBXplorerNetwork = nbxplorerNetwork,
|
|
DefaultRateRules = new[]
|
|
{
|
|
"BTX_X = BTX_BTC * BTC_X",
|
|
"BTX_BTC = graviex(BTX_BTC)"
|
|
},
|
|
CryptoImagePath = "imlegacy/bitcore.svg",
|
|
LightningImagePath = "imlegacy/bitcore-lightning.svg",
|
|
DefaultSettings = BTCPayDefaultSettings.GetDefaultSettings(NetworkType),
|
|
CoinType = NetworkType == ChainName.Mainnet ? new KeyPath("160'") : new KeyPath("1'")
|
|
});
|
|
}
|
|
}
|
|
}
|