├── .gitattributes ├── .gitignore ├── CryptoNoteMiner.sln ├── CryptoNoteMiner ├── App.config ├── ArchitectureCheck.cs ├── CryptoNoteMiner.csproj ├── INI.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── binaries │ ├── cpuminer │ │ └── 64bit │ │ │ ├── libcurl.dll │ │ │ ├── libeay32.dll │ │ │ ├── libgcc_s_seh-1.dll │ │ │ ├── libstdc++-6.dll │ │ │ ├── libwinpthread-1.dll │ │ │ ├── minerd.exe │ │ │ ├── ssleay32.dll │ │ │ └── zlib1.dll │ └── simplewallet │ │ ├── 32bit │ │ └── simplewallet.exe │ │ └── 64bit │ │ └── simplewallet.exe └── config.ini └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/.gitignore -------------------------------------------------------------------------------- /CryptoNoteMiner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner.sln -------------------------------------------------------------------------------- /CryptoNoteMiner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/App.config -------------------------------------------------------------------------------- /CryptoNoteMiner/ArchitectureCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/ArchitectureCheck.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/CryptoNoteMiner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/CryptoNoteMiner.csproj -------------------------------------------------------------------------------- /CryptoNoteMiner/INI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/INI.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Main.Designer.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Main.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Main.resx -------------------------------------------------------------------------------- /CryptoNoteMiner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Program.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Properties/Resources.resx -------------------------------------------------------------------------------- /CryptoNoteMiner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CryptoNoteMiner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/Properties/Settings.settings -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/libcurl.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/libeay32.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/libgcc_s_seh-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/libgcc_s_seh-1.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/libstdc++-6.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/libwinpthread-1.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/minerd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/minerd.exe -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/ssleay32.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/cpuminer/64bit/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/cpuminer/64bit/zlib1.dll -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/simplewallet/32bit/simplewallet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/simplewallet/32bit/simplewallet.exe -------------------------------------------------------------------------------- /CryptoNoteMiner/binaries/simplewallet/64bit/simplewallet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/CryptoNoteMiner/binaries/simplewallet/64bit/simplewallet.exe -------------------------------------------------------------------------------- /CryptoNoteMiner/config.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zone117x/cryptonote-easy-miner/HEAD/README.md --------------------------------------------------------------------------------