Skip to content
This repository has been archived by the owner on Dec 28, 2020. It is now read-only.
/ MoneroMiner Public archive

MoneroMiner is an assembly/ library to run a monero miner in .Net. The assembly was written and tested in .Net 5.0.

License

Notifications You must be signed in to change notification settings

SeppPenner/MoneroMiner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MoneroMiner

MoneroMiner is an assembly/ library to run a monero miner in .Net. The assembly was written and tested in .Net 5.0.

Build status GitHub issues GitHub forks GitHub stars License: MIT Known Vulnerabilities

Basic usage:

IMiner miner = new Miner();
miner.RunMiner("stratum+tcp://xmr.pool.minergate.com:45560", "rsaUGDSAQIF_UWRTGWUAFSAdshz8fw7wgfh", "2");
miner.Exit();

See the method options below:

/// <summary>
/// The method to run the miner.
/// </summary>
/// <param name="poolAddress">The pool address, something like stratum+tcp://xmr.pool.minergate.com:45560.</param>
/// <param name="xmrAddress">The wallet address.</param>
/// <param name="threads">Number of threads.</param>
// ReSharper disable once UnusedMember.Global
void RunMiner(string poolAddress, string xmrAddress, string threads);

/// <summary>
/// Exits/ kills all miner processes.
/// </summary>
// ReSharper disable once UnusedMember.Global
void Exit();

This project is based on monerospelunker.

Change history

See the Changelog.

About

MoneroMiner is an assembly/ library to run a monero miner in .Net. The assembly was written and tested in .Net 5.0.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages