File tree Expand file tree Collapse file tree 4 files changed +31
-125
lines changed Expand file tree Collapse file tree 4 files changed +31
-125
lines changed Original file line number Diff line number Diff line change
1
+ // SharpPusher
2
+ // Copyright (c) 2017 Coding Enthusiast
3
+ // Distributed under the MIT software license, see the accompanying
4
+ // file LICENCE or http://www.opensource.org/licenses/mit-license.php.
5
+
6
+ namespace SharpPusher . Models
7
+ {
8
+ public enum Networks
9
+ {
10
+ Bitcoin ,
11
+ BitcoinTestnet ,
12
+ BitcoinCash ,
13
+ BitcoinSV ,
14
+ Dogecoin ,
15
+ Litecoin ,
16
+ Monero ,
17
+ Zcash ,
18
+ Ethereum ,
19
+ EthereumTestnet ,
20
+ Dash ,
21
+ Ripple ,
22
+ Groestlcoin ,
23
+ Stellar ,
24
+ Cardano ,
25
+ Mixin ,
26
+ Tezos ,
27
+ EOS ,
28
+ BitcoinABC
29
+ }
30
+ }
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7
7
using Autarkysoft . Bitcoin . Blockchain . Scripts ;
8
8
using Autarkysoft . Bitcoin . Blockchain . Transactions ;
9
9
using Autarkysoft . Bitcoin . Encoders ;
10
+ using SharpPusher . Models ;
10
11
using SharpPusher . MVVM ;
11
12
using SharpPusher . Services ;
12
13
using SharpPusher . Services . PushServices ;
@@ -49,29 +50,6 @@ public string RawTx
49
50
}
50
51
51
52
52
- public enum Networks
53
- {
54
- Bitcoin ,
55
- BitcoinTestnet ,
56
- BitcoinCash ,
57
- BitcoinSV ,
58
- Dogecoin ,
59
- Litecoin ,
60
- Monero ,
61
- Zcash ,
62
- Ethereum ,
63
- EthereumTestnet ,
64
- Dash ,
65
- Ripple ,
66
- Groestlcoin ,
67
- Stellar ,
68
- Cardano ,
69
- Mixin ,
70
- Tezos ,
71
- EOS ,
72
- BitcoinABC
73
- }
74
-
75
53
public ObservableCollection < Networks > NetworkList { get ; set ; }
76
54
77
55
private Networks _selNet ;
@@ -94,7 +72,6 @@ private void SetApiList()
94
72
ApiList =
95
73
[
96
74
new Blockchair ( Blockchair . Chain . BTC ) ,
97
- new Smartbit ( ) ,
98
75
new BlockCypher ( ) ,
99
76
new P2P ( true )
100
77
] ;
You can’t perform that action at this time.
0 commit comments