Skip to content

Platform that supports multiple frameworks and OS. Including the all new API For mobile. meaning you can mine crpytocurrency from your mobile device.

License

Notifications You must be signed in to change notification settings

totaltrader/Coin-Miner

 
 

Repository files navigation

MultiMiner

Author: Adam.trinity1 --> Skype:

Your coins. Your pools. Your way.

MultiMiner is a graphical application for crypto-coin mining on Windows, OS X and Linux. MultiMiner simplifies switching individual devices (GPUs, ASICs, FPGAs) between crypto-currencies such as Bitcoin and Litecoin.

MultiMiner uses the underlying mining engine (bfgminer) to detect available mining devices and then presents a user interface for selecting the coins you'd like to mine.

Main Screen

MultiMiner also offers several views, allowing you to display as much or as little information as you like.

Brief View

For new users, MultiMiner includes a Getting Started wizard that walks you through selecting an engine, a coin, a pool, and configuring MobileMiner.

Getting Started

MultiMiner will automatically download and install the latest version of bfgminer, making it simple for the new user to get started.

Downloading and Installing Cgminer

You can then use the Configure Coins dialog to setup each coin that you would like to mine along with their pools, including support for load balancing.

Configure Coins

MultiMiner supports automatically mining the most profitable coins based on a set of configurable strategies. Profitability information is updated regularly from CoinChoose.com.

Configure Strategies

MultiMiner also supports features such as relaunching crashed miners, starting with Windows, minimizing to the notification area, and mining on startup.

Settings

You can also use the interface provided by MultiMiner to adjust advanced settings such as API white-listing, disabling GPU mining, and automatically adjusting mining intensity based on the computer's idle time.

Advanced Miner Settings

Finally, MultiMiner supports MobileMiner, an open API with mobile apps for remotely monitoring and controlling your rigs.

MobileMiner

MobileMiner - Android

MobileMiner - Windows Phone

By entering your MobileMiner email address and application key in the Configure Settings dialog, you will be able to remotely monitor and control your rigs without having to open any firewalls or forward any ports.

Downloads

You can download installers and zip files for Windows, OS X, Linux and Mono on the GitHub Releases page.

Drivers

Depending on your OS and the mining devices you plan on using you will need one or more of the following drivers / kernel extensions installed:

Windows Installation

  1. Download and run the installer (.exe) file at the above link and follow instructions

The installer runs without needing admin rights and does not install to Program Files so as not to be intrusive. However, if you prefer you can use the zip file:

  1. Download and extract the .zip file at the GitHub Releases page
  2. Launch MultiMiner.Win.exe to get started

OS X Installation

  1. Install Xquartz available here
  2. Install the latest version of Mono
  3. Download and extract the .app.zip file at the GitHub Releases page
  4. Launch MultiMiner.app to get started

MultiMiner will automatically download redistributable binaries of bfgminer from the xgminer-osx project.

Main Screen - OS X

Linux Installation (Debian-Based)

  1. Install the latest version of Mono

     sudo apt-get install mono-complete
    
  2. Install your chosen mining engine

     sudo add-apt-repository ppa:unit3/bfgminer
     sudo apt-get update
     sudo apt-get install bfgminer
    
  3. Download and extract the .zip file at the GitHub Releases page

  4. Run MultiMiner.Win.exe using mono:

     mono MultiMiner.Win.exe
    

Main Screen - Linux

Generic Mono Installation

  1. Download and extract the zip file at the GitHub Releases page

  2. Install bfgminer. For OS X, you can find packages and for doing so here and instructions for using them here.

  3. Install X11. Under OS X you should install Xquartz available here.

  4. Install the latest version of Mono.

  5. Run MultiMiner.Win.exe using mono:

     mono MultiMiner.Win.exe
    
//examples of using MultiMiner.Xgminer.dll and MultiMiner.Xgminer.Api.dll

//download and install the latest version of bfgminer
const string executablePath = @"D:\bfgminer\";
const string executableName = "bfgminer.exe";

Console.WriteLine("Downloading and installing {0} from {1} to the directory {2}",
    executableName, Xgminer.Installer.GetMinerDownloadRoot(), executablePath);

//download and install bfgminer from the official website
Xgminer.Installer.InstallMiner(executablePath);
try
{
    //create an instance of Miner with the downloaded executable
    MinerConfiguration minerConfiguration = new MinerConfiguration()
    {
        ExecutablePath = Path.Combine(executablePath, executableName)
    };
    Miner miner = new Miner(minerConfiguration);

    //use it to iterate through devices
    List<Device> deviceList = miner.ListDevices();

    Console.WriteLine("Using {0} to list available mining devices", executableName);

    //output devices
    foreach (Device device in deviceList)
        Console.WriteLine("Device detected: {0}\t{1}\t{2}", device.Kind, device.Driver, device.Name);

    //start mining if there are devices
    if (deviceList.Count > 0)
    {
        Console.WriteLine("{0} device(s) detected, mining Bitcoin on Bitminter using all devices", deviceList.Count);

        //setup a pool
        MiningPool pool = new MiningPool()
        {
            Host = "mint.bitminter.com",
            Port = 3333,
            Username = "nwoolls_deepcore",
            Password = "deepcore"
        };
        minerConfiguration.Pools.Add(pool);

        //specify algorithm
        minerConfiguration.Algorithm = CoinAlgorithm.SHA256;

        //disable GPU mining
        minerConfiguration.DisableGpu = true;

        //specify device indexes to use
        for (int i = 0; i < deviceList.Count; i++)
            minerConfiguration.DeviceDescriptors.Add(deviceList[i]);

        //enable RPC API
        minerConfiguration.ApiListen = true;
        minerConfiguration.ApiPort = 4028;

        Console.WriteLine("Launching {0}", executableName);

        //start mining
        miner = new Miner(minerConfiguration);
        System.Diagnostics.Process minerProcess = miner.Launch();
        try
        {
            //get an API context
            Xgminer.Api.ApiContext apiContext = new Xgminer.Api.ApiContext(minerConfiguration.ApiPort);
            try
            {
                //mine for one minute, monitoring hashrate via the API
                for (int i = 0; i < 6; i++)
                {
                    Thread.Sleep(1000 * 10); //sleep 10s

                    //query the miner process via its RPC API for device information
                    List<Xgminer.Api.Responses.DeviceInformationResponse> deviceInformation = apiContext.GetDeviceInformation();

                    //output device information
                    foreach (Xgminer.Api.Responses.DeviceInformationResponse item in deviceInformation)
                        Console.WriteLine("Hasrate for device {0}: {1} current, {2} average", item.Index,
                                item.CurrentHashrate, item.AverageHashrate);
                }
            }
            finally
            {
                Console.WriteLine("Quitting mining via the RPC API");

                //stop mining, try the API first
                apiContext.QuitMining();
            }
        }
        finally
        {
            Console.WriteLine("Killing any remaining process");

            //then kill the process
            try
            {
                minerProcess.Kill();
                minerProcess.WaitForExit();
                minerProcess.Close();
            }
            catch (InvalidOperationException ex)
            {
                //already closed
            }
        }
    }
    else
    {
        Console.WriteLine("No devices capable of mining detected");
    }
}
finally
{
    Console.WriteLine("Cleaning up, deleting directory {0}", executablePath);
    Directory.Delete(executablePath, true);
}

Console.WriteLine("Press any key to exit");
Console.ReadKey();

License

not for use, unless given permission by: aminrahman24@gmail.com all code is copyrighted with NDA.

Credits to All the GITHUB REPO's I FOKED LMFAO.

About

Platform that supports multiple frameworks and OS. Including the all new API For mobile. meaning you can mine crpytocurrency from your mobile device.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 92.5%
  • Inno Setup 6.0%
  • Shell 1.5%