-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
104 lines (88 loc) · 4.53 KB
/
Copy pathApp.config
File metadata and controls
104 lines (88 loc) · 4.53 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<appSettings>
<!-- BitcoinLib settings start -->
<!-- Shared RPC settings start -->
<add key="RpcRequestTimeoutInSeconds" value="60" />
<!-- Shared RPC settings end -->
<!-- Bitcoin settings start -->
<add key="Bitcoin_DaemonUrl" value="http://localhost:8332" />
<add key="Bitcoin_DaemonUrl_Testnet" value="http://localhost:18332" />
<add key="Bitcoin_WalletPassword" value="HadeS7946" />
<!--<add key="Bitcoin_RpcUsername" value="luisvalera" />
<add key="Bitcoin_RpcPassword" value="HadeS7946" />-->
<add key="Bitcoin_RpcUsername" value="luisvalera@ideapad-320-15ABR" />
<add key="Bitcoin_RpcPassword" value="qllPSnErM9Lf7hNZuuJDCMHj6X7yKmwcLe13Xl7kLYI=" />
<!-- Bitcoin settings end -->
<!-- BitcoinCash settings start (usually pointing to a different server, can't run on same ports as bitcoin on same machine) -->
<add key="BitcoinCash_DaemonUrl" value="http://localhost:8332"/>
<add key="BitcoinCash_DaemonUrl_Testnet" value="http://localhost:8332"/>
<add key="BitcoinCash_WalletPassword" value="MyWalletPassword"/>
<add key="BitcoinCash_RpcUsername" value="MyRpcUsername"/>
<add key="BitcoinCash_RpcPassword" value="MyRpcPassword"/>
<!-- BitcoinCash settings end -->
<!-- Litecoin settings start -->
<add key="Litecoin_DaemonUrl" value="http://localhost:9332" />
<add key="Litecoin_DaemonUrl_Testnet" value="http://localhost:19332" />
<add key="Litecoin_WalletPassword" value="MyWalletPassword" />
<add key="Litecoin_RpcUsername" value="MyRpcUsername" />
<add key="Litecoin_RpcPassword" value="MyRpcPassword" />
<!-- Litecoin settings end -->
<!-- Dogecoin settings start -->
<add key="Dogecoin_DaemonUrl" value="http://localhost:22555" />
<add key="Dogecoin_DaemonUrl_Testnet" value="http://localhost:44555" />
<add key="Dogecoin_WalletPassword" value="MyWalletPassword" />
<add key="Dogecoin_RpcUsername" value="MyRpcUsername" />
<add key="Dogecoin_RpcPassword" value="MyRpcPassword" />
<!-- Dogecoin settings end -->
<!-- Sarcoin settings start -->
<add key="Sarcoin_DaemonUrl" value="http://localhost:25901" />
<add key="Sarcoin_DaemonUrl_Testnet" value="http://localhost:36523" />
<add key="Sarcoin_WalletPassword" value="MyWalletPassword" />
<add key="Sarcoin_RpcUsername" value="MyRpcUsername" />
<add key="Sarcoin_RpcPassword" value="MyRpcPassword" />
<!-- Sarcoin settings end -->
<!-- Dash settings start -->
<add key="Dash_DaemonUrl" value="http://localhost:9998" />
<add key="Dash_DaemonUrl_Testnet" value="http://localhost:19998" />
<add key="Dash_WalletPassword" value="MyWalletPassword" />
<add key="Dash_RpcUsername" value="MyRpcUsername" />
<add key="Dash_RpcPassword" value="MyRpcPassword" />
<!-- Dash settings end -->
<!-- Mogwaicoin settings start -->
<add key="Mogwaicoin_DaemonUrl" value="http://localhost:17710" />
<add key="Mogwaicoin_DaemonUrl_Testnet" value="http://localhost:17810" />
<add key="Mogwaicoin_WalletPassword" value="MyWalletPassword" />
<add key="Mogwaicoin_RpcUsername" value="MyRpcUsername" />
<add key="Mogwaicoin_RpcPassword" value="MyRpcPassword" />
<!-- Dash settings end -->
<!-- Smartcash settings start -->
<add key="Smartcash_DaemonUrl" value="http://localhost:9679" />
<add key="Smartcash_DaemonUrl_Testnet" value="http://localhost:19679" />
<add key="Smartcash_WalletPassword" value="MyWalletPassword" />
<add key="Smartcash_RpcUsername" value="MyRpcUsername" />
<add key="Smartcash_RpcPassword" value="MyRpcPassword" />
<!-- Smartcash settings end -->
<!-- Dallar settings start -->
<add key="Dallar_DaemonUrl" value="http://localhost:20033" />
<add key="Dallar_DaemonUrl_Testnet" value="http://localhost:20133" />
<add key="Dallar_WalletPassword" value="MyWalletPassword" />
<add key="Dallar_RpcUsername" value="MyRpcUsername" />
<add key="Dallar_RpcPassword" value="MyRpcPassword" />
<!-- Dallar settings end -->
<!-- Colx settings start -->
<add key="Colx_DaemonUrl" value="http://localhost:51473" />
<add key="Colx_DaemonUrl_Testnet" value="http://localhost:51472" />
<add key="Colx_WalletPassword" value="MyWalletPassword" />
<add key="Colx_RpcUsername" value="MyRpcUsername" />
<add key="Colx_RpcPassword" value="MyRpcPassword" />
<!-- Colx settings end -->
<!-- Demo client settings start -->
<add key="ExtractMyPrivateKeys" value="true" />
<!-- Demo client settings end -->
<!-- BitcoinLib settings end -->
</appSettings>
</configuration>