mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
38 lines
1.6 KiB
C#
38 lines
1.6 KiB
C#
using BTCPayServer.Hosting;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Services;
|
|
using Microsoft.AspNetCore.HttpOverrides;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Plugins.Altcoins;
|
|
public partial class AltcoinsPlugin
|
|
{
|
|
public void InitDash(IServiceCollection services)
|
|
{
|
|
//not needed: NBitcoin.Altcoins.Dash.Instance.EnsureRegistered();
|
|
var nbxplorerNetwork = NBXplorerNetworkProvider.GetFromCryptoCode("DASH");
|
|
var network = new BTCPayNetwork()
|
|
{
|
|
CryptoCode = nbxplorerNetwork.CryptoCode,
|
|
DisplayName = "Dash",
|
|
NBXplorerNetwork = nbxplorerNetwork,
|
|
DefaultRateRules = new[]
|
|
{
|
|
"DASH_X = DASH_BTC * BTC_X",
|
|
"DASH_BTC = bitfinex(DSH_BTC)"
|
|
},
|
|
CryptoImagePath = "imlegacy/dash.png",
|
|
DefaultSettings = BTCPayDefaultSettings.GetDefaultSettings(ChainName),
|
|
//https://github.com/satoshilabs/slips/blob/master/slip-0044.md
|
|
CoinType = ChainName == ChainName.Mainnet ? new KeyPath("5'")
|
|
: new KeyPath("1'")
|
|
}.SetDefaultElectrumMapping(ChainName);
|
|
|
|
var blockExplorerLink = ChainName == ChainName.Mainnet
|
|
? "https://insight.dash.org/insight/tx/{0}"
|
|
: "https://testnet-insight.dashevo.org/insight/tx/{0}";
|
|
services.AddBTCPayNetwork(network)
|
|
.AddTransactionLinkProvider(new PaymentMethodId(nbxplorerNetwork.CryptoCode, PaymentTypes.BTCLike), new DefaultTransactionLinkProvider(blockExplorerLink));
|
|
}
|
|
}
|