@@ -9,18 +9,9 @@ public enum CoinType
99 {
1010 UNDEFINED ,
1111 VTC ,
12- //MONA,
13- //HUSH,
14- //KMD,
15- //EXP,
16- //ETH,
1712 ETC ,
18- //BTCP,
19- //BTG,
20- //ZEN,
21- //ZCL,
22- RVN
23- //SUQA,
13+ RVN ,
14+ XMR
2415 }
2516
2617 public static class CoinLogos
@@ -30,19 +21,10 @@ public static class CoinLogos
3021 /// </summary>
3122 public static readonly Dictionary < CoinType , string > CoinLogoDictionary = new Dictionary < CoinType , string >
3223 {
33- //{ CoinType.HUSH, @"Resources\\Images\\hush.png" },
34- //{ CoinType.KMD, @"Resources\\Images\\kmd.png" },
3524 { CoinType . VTC , @"Resources\\Images\\vtc.png" } ,
36- //{ CoinType.MONA, @"Resources\\Images\\mona.png" },
37- //{ CoinType.EXP, @"Resources\\Images\\exp.png" },
38- //{ CoinType.ETH, @"Resources\\Images\\eth.png" },
3925 { CoinType . ETC , @"Resources\\Images\\etc.png" } ,
40- //{ CoinType.BTG, @"Resources\\Images\\btg.png" },
41- //{ CoinType.BTCP, @"Resources\\Images\\btcp.png" },
42- //{ CoinType.ZEN, @"Resources\\Images\\zencash.png" },
43- //{ CoinType.ZCL, @"Resources\\Images\\zcl.png" },
4426 { CoinType . RVN , @"Resources\\Images\\rvn.png" } ,
45- // { CoinType.SUQA , @"Resources\\Images\\suqa .png" },
27+ { CoinType . XMR , @"Resources\\Images\\xmr .png" } ,
4628 } ;
4729 }
4830
@@ -53,19 +35,10 @@ public static class CoinNames
5335 /// </summary>
5436 public static readonly Dictionary < CoinType , string > CoinNameDictionary = new Dictionary < CoinType , string >
5537 {
56- //{ CoinType.HUSH, "HUSH" },
57- //{ CoinType.KMD, "KOMODO" },
5838 { CoinType . VTC , "VERTCOIN" } ,
59- //{ CoinType.MONA, "MONACOIN" },
60- //{ CoinType.EXP, "EXPANSE" },
61- //{ CoinType.ETH, "ETHEREUM" },
6239 { CoinType . ETC , "ETHEREUM CLASSIC" } ,
63- //{ CoinType.BTG, "BITCOIN GOLD" },
64- //{ CoinType.BTCP, "BITCOIN PRIVATE" },
65- //{ CoinType.ZEN, "ZENCASH" },
66- //{ CoinType.ZCL, "ZCLASSIC" },
6740 { CoinType . RVN , "RAVENCOIN" } ,
68- // { CoinType.SUQA , "SUQA " },
41+ { CoinType . XMR , "MONERO " } ,
6942 } ;
7043 }
7144
@@ -76,19 +49,10 @@ public static class CoinWhatToMineIDDictionary
7649 /// </summary>
7750 public static readonly Dictionary < CoinType , int > CoinWhatToMineID = new Dictionary < CoinType , int >
7851 {
79- //{ CoinType.HUSH, 168 },
80- //{ CoinType.KMD, 174 },
8152 { CoinType . VTC , 5 } ,
82- //{ CoinType.MONA, 148 },
83- //{ CoinType.EXP, 154 },
84- //{ CoinType.ETH, 151 },
8553 { CoinType . ETC , 162 } ,
86- //{ CoinType.BTG, 214 },
87- //{ CoinType.BTCP, 230 },
88- //{ CoinType.ZEN, 185 },
89- //{ CoinType.ZCL, 167 },
9054 { CoinType . RVN , 234 } ,
91- // { CoinType.SUQA, 277 },
55+ { CoinType . XMR , 101 } ,
9256 } ;
9357 }
9458
@@ -111,7 +75,7 @@ public static class CoinPaymentChartColor
11175 //{ CoinType.ZEN, "#68fee0" },
11276 //{ CoinType.ZCL, "#a072fc" },
11377 { CoinType . RVN , "#68fee0" } ,
114- // { CoinType.SUQA , "#35bda8" },
78+ { CoinType . XMR , "#35bda8" } ,
11579 } ;
11680 }
11781}
0 commit comments