-
Notifications
You must be signed in to change notification settings - Fork 849
/
Copy pathAltcoinNetworkSets.cs
84 lines (82 loc) · 3.13 KB
/
AltcoinNetworkSets.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBitcoin.Altcoins
{
public class AltNetworkSets
{
public static Argoneum Argoneum { get; } = Argoneum.Instance;
public static BCash BCash { get; } = BCash.Instance;
public static BGold BGold { get; } = BGold.Instance;
public static Dash Dash { get; } = Dash.Instance;
public static Verge Verge { get; } = Verge.Instance;
public static Terracoin Terracoin { get; } = Terracoin.Instance;
public static Mogwai Mogwai { get; } = Mogwai.Instance;
public static Dogecoin Dogecoin { get; } = Dogecoin.Instance;
public static Dystem Dystem { get; } = Dystem.Instance;
public static Litecoin Litecoin { get; } = Litecoin.Instance;
public static Feathercoin Feathercoin { get; } = Feathercoin.Instance;
public static Viacoin Viacoin {get; } = Viacoin.Instance;
public static Polis Polis { get; } = Polis.Instance;
public static Monacoin Monacoin { get; } = Monacoin.Instance;
public static Ufo Ufo { get; } = Ufo.Instance;
public static Bitcoin Bitcoin { get; } = Bitcoin.Instance;
public static Bitcore Bitcore { get; } = Bitcore.Instance;
public static Groestlcoin Groestlcoin { get; } = Groestlcoin.Instance;
public static Zclassic Zclassic { get; } = Zclassic.Instance;
public static Colossus Colossus { get; } = Colossus.Instance;
public static GoByte GoByte { get; } = GoByte.Instance;
public static Liquid Liquid { get; } = Liquid.Instance;
public static Koto Koto { get; } = Koto.Instance;
public static Bitcoinplus Bitcoinplus { get; } = Bitcoinplus.Instance;
public static Chaincoin Chaincoin { get; } = Chaincoin.Instance;
public static Stratis Stratis { get; } = Stratis.Instance;
public static ZCoin ZCoin { get; } = ZCoin.Instance;
public static DogeCash DogeCash { get; } = DogeCash.Instance;
public static Qtum Qtum { get; } = Qtum.Instance;
public static MonetaryUnit MonetaryUnit { get; } = MonetaryUnit.Instance;
public static LBRYCredits LBRYCredits { get; } = LBRYCredits.Instance;
public static Althash Althash { get; } = Althash.Instance;
public static Neblio Neblio { get; } = Neblio.Instance;
public static Triptourcoin Triptourcoin { get; } = Triptourcoin.Instance;
public static IEnumerable<INetworkSet> GetAll()
{
yield return Argoneum;
yield return Bitcoin;
yield return Bitcore;
yield return Litecoin;
yield return Feathercoin;
yield return Viacoin;
yield return Dogecoin;
yield return Dystem;
yield return BCash;
yield return BGold;
yield return Polis;
yield return Monacoin;
yield return Dash;
//yield return Verge;
yield return Terracoin;
yield return Mogwai;
yield return Ufo;
yield return Groestlcoin;
yield return Zclassic;
yield return Colossus;
yield return GoByte;
yield return Stratis;
yield return Liquid;
yield return Koto;
yield return Bitcoinplus;
yield return Chaincoin;
yield return ZCoin;
yield return DogeCash;
yield return Qtum;
yield return MonetaryUnit;
yield return LBRYCredits;
yield return Althash;
yield return Neblio;
yield return Triptourcoin;
}
}
}