Local stratum-proxy
Forum rules
Welcome to the mining rig and connectivity support forum!
This forum is for discussing issues with mining rigs and connectivity issues with experienced PROHASHING miners. This is a great place to ask questions about connecting specific hardware to PROHASHING.
Remember, PROHASHING employees do not closely monitor the forums like we do the official support channels, so this forum's purpose is to connect you with other PROHASHING miners who have experience with similar hardware/issues. If you have connectivity issues you are unable to resolve here on the forum, please submit a ticket through the official support channels.
For the full list of PROHASHING forums rules, please visit https://prohashing.com/help/prohashing- ... rms-forums.
Welcome to the mining rig and connectivity support forum!
This forum is for discussing issues with mining rigs and connectivity issues with experienced PROHASHING miners. This is a great place to ask questions about connecting specific hardware to PROHASHING.
Remember, PROHASHING employees do not closely monitor the forums like we do the official support channels, so this forum's purpose is to connect you with other PROHASHING miners who have experience with similar hardware/issues. If you have connectivity issues you are unable to resolve here on the forum, please submit a ticket through the official support channels.
For the full list of PROHASHING forums rules, please visit https://prohashing.com/help/prohashing- ... rms-forums.
Local stratum-proxy
Hello. I have 50 asics in the local network. What is the best program to use for a local stratum-proxy? To work correctly with Prohashing.
Re: Local stratum-proxy
Do you mean this (from the help page)..Madison wrote:Hello. I have 50 asics in the local network. What is the best program to use for a local stratum-proxy? To work correctly with Prohashing.
Point your miner toward prohashing.com:3333, or use an algorithm-specific port.
Use the same username as you use to log into the website.
Enter a blank password or use password arguments, which enable powerful features for controlling miners and mined coins.
Port 443 proxy server also available at proxy.prohashing.com:443 if your hosting provider blocks port 3333.
Apologies in advance if I got this wrong... I'm assuming you already use some software.. so all you would need to do is to connect it to the proxy server.
Re: Local stratum-proxy
No, I meant the program for a local stratum proxy.
so that without reloading the asics I could transfer them to another pool.
so that without reloading the asics I could transfer them to another pool.
Re: Local stratum-proxy
Look into something like: http://www.multiminerapp.com/
Not sure the price to be able to support 50 miners.
While the program can swap to other pools that have single coin ports, it can't determine the profits at PH accurately due to auto coin swapping unless you are solo mining. It also can't be used to program auto swapping to specific coins on PH as the live data is delayed and the coin you would mine at the top likely hasn't been the top coin for the past 2 mins now so you earn less trying to hit the top coin that probably isn't there anymore.
If you want to swap between pools this might work, but not sure if it will compute the profits at autocoin swapping to be able to get back to PH pool once left to mine even when it has the higher profits.
Not sure the price to be able to support 50 miners.
While the program can swap to other pools that have single coin ports, it can't determine the profits at PH accurately due to auto coin swapping unless you are solo mining. It also can't be used to program auto swapping to specific coins on PH as the live data is delayed and the coin you would mine at the top likely hasn't been the top coin for the past 2 mins now so you earn less trying to hit the top coin that probably isn't there anymore.
If you want to swap between pools this might work, but not sure if it will compute the profits at autocoin swapping to be able to get back to PH pool once left to mine even when it has the higher profits.
-
- Posts: 43
- Joined: Fri May 11, 2018 11:40 am
Re: Local stratum-proxy
Check out Awesome Miner - I like it.
Re: Local stratum-proxy
That's the one I was looking for.
Same issue, cant determine profits at PH because 1 port coin switching to see when to swap back.
Same issue, cant determine profits at PH because 1 port coin switching to see when to swap back.
Re: Local stratum-proxy
I've heard of a java stratum proxy called stratehm https://github.com/Stratehm/stratum-proxy/releases that might work, I tried to use it a little bit months ago and it kinda worked but I couldn't get it working properly, maybe I didn't get all the dependencies or just didn't configure it properly.
To use it on windows you could make a .bat and .conf file in the same folder to run the .jar:
start-stratum-proxy.bat
stratum-proxy-prohashing.conf
and connect to it with the miners on port 8332
To use it on windows you could make a .bat and .conf file in the same folder to run the .jar:
start-stratum-proxy.bat
Code: Select all
java -jar stratum-proxy.jar -f stratum-proxy-prohashing.conf
Code: Select all
{
"isScrypt" : true,
"disableStratum" : false,
"pools" :
[
{
"name" : "prohashing",
"host" : "prohashing.com:3333",
"user" : "x",
"password" : "x",
"enableExtranonceSubscribe" : false
},
{
"name" : "Nicehash Scrypt",
"host" : "scrypt.eu.nicehash.com:3333",
"user" : "x",
"password" : "x",
"enableExtranonceSubscribe" : true
},
{
"name" : "Westhash Scrypt",
"host" : "scrypt.usa.nicehash.com:3333",
"user" : "x",
"password" : "x",
"enableExtranonceSubscribe" : true
}
]
}
Re: Local stratum-proxy
I'm using https://github.com/Stratehm/stratum-proxy/releases on a linux server.
3 different instances, one for SHA (S9), one for scrypt (L3+), one for X11 (D3) all working with different pools.
3 different instances, one for SHA (S9), one for scrypt (L3+), one for X11 (D3) all working with different pools.
Re: Local stratum-proxy
Thanks, that's what I need.spauk wrote:I've heard of a java stratum proxy called stratehm https://github.com/Stratehm/stratum-proxy/releases that might work, I tried to use it a little bit months ago and it kinda worked but I couldn't get it working properly, maybe I didn't get all the dependencies or just didn't configure it properly.
To use it on windows you could make a .bat and .conf file in the same folder to run the .jar:
start-stratum-proxy.batstratum-proxy-prohashing.confCode: Select all
java -jar stratum-proxy.jar -f stratum-proxy-prohashing.conf
and connect to it with the miners on port 8332Code: Select all
{ "isScrypt" : true, "disableStratum" : false, "pools" : [ { "name" : "prohashing", "host" : "prohashing.com:3333", "user" : "x", "password" : "x", "enableExtranonceSubscribe" : false }, { "name" : "Nicehash Scrypt", "host" : "scrypt.eu.nicehash.com:3333", "user" : "x", "password" : "x", "enableExtranonceSubscribe" : true }, { "name" : "Westhash Scrypt", "host" : "scrypt.usa.nicehash.com:3333", "user" : "x", "password" : "x", "enableExtranonceSubscribe" : true } ] }
Re: Local stratum-proxy
[quote="spauk"]
"enableExtranonceSubscribe" : false? correctly?
Code: Select all
{
"name" : "prohashing",
"host" : "prohashing.com:3333",
"user" : "x",
"password" : "x",
"enableExtranonceSubscribe" : false