Skip to content

Commit 8715d3d

Browse files
authoredMay 29, 2020
Add Qtum support (#264)
1 parent 7dacd8e commit 8715d3d

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
using NBitcoin;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Text;
5+
6+
namespace NBXplorer
7+
{
8+
public partial class NBXplorerNetworkProvider
9+
{
10+
private void InitQtum(NetworkType networkType)
11+
{
12+
Add(new NBXplorerNetwork(NBitcoin.Altcoins.Qtum.Instance, networkType)
13+
{
14+
MinRPCVersion = 140200,
15+
CoinType = networkType == NetworkType.Mainnet ? new KeyPath("2301'") : new KeyPath("1'")
16+
});
17+
}
18+
19+
public NBXplorerNetwork GetQTUM()
20+
{
21+
return GetFromCryptoCode(NBitcoin.Altcoins.Qtum.Instance.CryptoCode);
22+
}
23+
}
24+
}

‎NBXplorer.Client/NBXplorerNetworkProvider.cs

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public NBXplorerNetworkProvider(NetworkType networkType)
2828
InitColossus(networkType);
2929
InitChaincoin(networkType);
3030
InitLiquid(networkType);
31+
InitQtum(networkType);
3132
foreach (var chain in _Networks.Values)
3233
{
3334
chain.DerivationStrategyFactory ??= chain.CreateStrategyFactory();

‎NBXplorer.Tests/ServerTester.Environment.cs

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ private void SetEnvironment()
8484
//Network = NBitcoin.Altcoins.Colossus.Instance.Regtest;
8585
//RPCSupportSegwit = false;
8686

87+
//CryptoCode = "QTUM";
88+
//nodeDownloadData = NodeDownloadData.Qtum.v0_18_3;
89+
//NBXplorerNetwork = _Provider.GetQTUM();
90+
8791
//CryptoCode = "LBTC";
8892
//nodeDownloadData = NodeDownloadData.Elements.v0_18_1_1;
8993
//NBXplorerNetwork = _Provider.GetLBTC();

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ It currently supports the following altcoins:
4242
* Monacoin
4343
* Monoeci
4444
* Polis
45+
* Qtum
4546
* Terracoin
4647
* Ufo
4748
* Viacoin

0 commit comments

Comments
 (0)
Please sign in to comment.