Author

Topic: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. - page 312. (Read 487803 times)

hero member
Activity: 710
Merit: 502
Hello
what is going on on the pool that says payouts disabled?
i need my cash  Grin Grin

no really what is going on? ETA on the reactivation of payouts on the site?
thanks!
indkt.
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
Tested a bit, for me 8 - 42.779 seems to work best
Maybe you can offer a low diff port for slow miners like me ^^

Yeah I changed that.
Starts from 4, minimum 1, max 512 is set currently.
member
Activity: 112
Merit: 10
Tested a bit, for me 8 - 42.779 seems to work best
Maybe you can offer a low diff port for slow miners like me ^^
member
Activity: 112
Merit: 10
hardly get a share submitted on vtc, diff went way up

solved - tpruvot ccminer miner somehow fails - alexis78/ccminer works

Normally, share should be submitted around 20 seconds interval.
If minimum difficulty is too high, please tell me. I'll lower that value.
yep fixed that as posted earlier Smiley will check tomorrow if hash average reported correctly over 12h+
member
Activity: 112
Merit: 10
since monero has its day, Will you add it to the pool anytime soon?

Yes monero is next coin to add. I'm working on it.

great Smiley

legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
since monero has its day, Will you add it to the pool anytime soon?

Yes monero is next coin to add. I'm working on it.
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
hardly get a share submitted on vtc, diff went way up

solved - tpruvot ccminer miner somehow fails - alexis78/ccminer works

Normally, share should be submitted around 20 seconds interval.
If minimum difficulty is too high, please tell me. I'll lower that value.
member
Activity: 112
Merit: 10
since monero has its day, Will you add it to the pool anytime soon?
member
Activity: 112
Merit: 10
hardly get a share submitted on vtc, diff went way up

solved - tpruvot ccminer miner somehow fails - alexis78/ccminer works
sr. member
Activity: 476
Merit: 250
hardly get a share submitted on vtc, diff went way up

Just set your auto exchange to Vertcoin instead.
member
Activity: 112
Merit: 10
hardly get a share submitted on vtc, diff went way up
sr. member
Activity: 476
Merit: 250
This is the best mining pool out there.  Grin

upload pic

Wow.
Is this your mining result from miningpoolhub?


Yep, November has been a good month.
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub

Well it's a bit controversial.  John Conner says suprnova is not including incentive rewards in any blocks but ocminer says he was and that it can be verified on the explorer.  John Conner blacklisted his ip address (at some point) and so ocminer shut the pool down.  At this point I have no idea who to believe, it's just shenanigans. 

Thanks for finding that proxy I'll check it out.

Did you ever set up an irc channel?

Ah.. thank you for detailed story.

No irc currently. I'm about to open Slack or Gitter soon.
Which one do you prefer? Slack? Gitter? Or just IRC?
full member
Activity: 176
Merit: 100
Well I have a couple ztex 1.15y fpga's laying around collecting dust and I can only find miners that work over getwork, no stratum.  Suprnova's pool offered getwork but then vcash-john kicked his pool to the curb.  So now I have no idea what to do with them.

Thanks for offering your .bat , I may need to use it someday. 

Oh.. can you tell me what happened between Suprnova's pool and vcash-john? I didn't know about it.
As far as I searched this issue for few minutes, it seems like suprnova had wrong implementation about incentive rewards.
https://v.cash/forum/threads/suprnova-is-not-mining-any-blocks.660/


Have you tried this project for mining?
https://github.com/slush0/stratum-mining-proxy
I haven't tried it but it is saying that it provides "getwork-compatible proxy for stratum mining pools".

Well it's a bit controversial.  John Conner says suprnova is not including incentive rewards in any blocks but ocminer says he was and that it can be verified on the explorer.  John Conner blacklisted his ip address (at some point) and so ocminer shut the pool down.  At this point I have no idea who to believe, it's just shenanigans. 

Thanks for finding that proxy I'll check it out.

Did you ever set up an irc channel?
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
This is the best mining pool out there.  Grin

upload pic

Wow.
Is this your mining result from miningpoolhub?
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
Well I have a couple ztex 1.15y fpga's laying around collecting dust and I can only find miners that work over getwork, no stratum.  Suprnova's pool offered getwork but then vcash-john kicked his pool to the curb.  So now I have no idea what to do with them.

Thanks for offering your .bat , I may need to use it someday. 

Oh.. can you tell me what happened between Suprnova's pool and vcash-john? I didn't know about it.
As far as I searched this issue for few minutes, it seems like suprnova had wrong implementation about incentive rewards.
https://v.cash/forum/threads/suprnova-is-not-mining-any-blocks.660/


Have you tried this project for mining?
https://github.com/slush0/stratum-mining-proxy
I haven't tried it but it is saying that it provides "getwork-compatible proxy for stratum mining pools".
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
In case anyone is interested, as there is no total balance for pool yet, here is the php code to get your absolute total balance in BTC:

Code:
$id "[enter your user id here]";
$key "[enter your api key here]";
$balance 0;
foreach (
json_decode(@file_get_contents("http://miningpoolhub.com/index.php?page=api&action=getminingandprofitsstatistics"))->{'return'} as $coin) {
$url "http://" $coin->{'coin_name'} . ".miningpoolhub.com/index.php?page=api&action=getdashboarddata&api_key=" $key "&id=" $id;
$json = @file_get_contents($url);
$data json_decode($json)->{'getdashboarddata'}->{'data'};
$balance += (((float)$data->{'balance'}->{'confirmed'} + (float)$data->{'balance'}->{'unconfirmed'} + (float)$data->{'balance_for_auto_exchange'}->{'confirmed'} + (float)$data->{'balance_for_auto_exchange'}->{'unconfirmed'} + (float)$data->{'balance_on_exchange'} + (float)$data->{'personal'}->{'estimates'}->{'payout'})) * (float)$coin->{'highest_buy_price'};
sleep(0.5);
}
header('content-type: application/json');
echo 
json_encode($balance);
?>


Here it is for PowerShell (you can run this on your PC by simply saving this text in a '.PS1' file i.e. 'balance.ps1'):
Code:
$id = "[enter your user id here]"
$key = "[enter your api key here]"
$balance = 0
foreach ($coin in (Invoke-WebRequest -Uri "http://miningpoolhub.com/index.php?page=api&action=getminingandprofitsstatistics" | ConvertFrom-Json).return) {
$url = "http://" + $coin.coin_name + ".miningpoolhub.com/index.php?page=api&action=getdashboarddata&api_key=" + $key + "&id=" + $id
$json = Invoke-WebRequest -Uri $url
$data = ($json | ConvertFrom-Json).getdashboarddata.data
$balance += (([float]$data.balance.confirmed + [float]$data.balance.unconfirmed + [float]$data.balance_for_auto_exchange.confirmed + [float]$data.balance_for_auto_exchange.unconfirmed + [float]$data.balance_on_exchange + [float]$data.personal.estimates.payout)) * [float]$coin.highest_buy_price
sleep(0.5);
}
echo ($balance | ConvertTo-Json)

Great codes!!!!
Sorry that I'm not that diligent to add BTC total value yet.  Smiley
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
Does the vcash pool support getwork or just stratum?

Stratum only.
I don't know any pool that supports getwork these days. It's old, inefficient way of mining.
legendary
Activity: 1456
Merit: 1006
Mining Pool Hub
Is it possible to define the mining difficulty and would there be any reason to do so? Currently mining zec @ 880 sol/s with a difficulty of 640.

You can only define starting difficulty for hint.
Pool adjusts difficulty value as time passes automatically and it solves many inefficient problems smoothly.

Actually there's no need to set static diff if you don't use some special custom GPU kernel.
There's some myth about it that using static diff will improve their earnings but it's totally not.
full member
Activity: 176
Merit: 100
Does the vcash pool support getwork or just stratum?

Not sure if it supports it but why would you use getwork when stratum is superior?

Don't think about what you mine; just mine the most profitable.
You will improve the health of the coin and get far more than mining it directly.

Set your auto exchange coin in the hub to the coin that you want (Vcash) and set your hub worker (PC1) to "AMD - Blake-Vanilla, Ethash, Equihash, Groestl, Myriad-Groestl, Skein".
Put this in a bat file (i.e. mining.bat) and download sgminer and claymore miners:

https://github.com/miningpoolhub/sgminer/releases/download/5.3.1/Release.zip
https://bitcointalksearch.org/topic/claymores-dual-ethereum-amdnvidia-gpu-miner-v150-windowslinux-1433925
https://bitcointalksearch.org/topic/claymores-zcashbtg-amd-gpu-miner-v126-windowslinux-1670733

Code:
:start

cd C:\ZecMiner64
ZecMiner64 -zpool europe.equihash-hub.miningpoolhub.com:12023 -zwal username.pc1 -zpsw x -mport 0 -retrydelay -1 -ftime 0 -i 6

cd C:\EthDcrMiner64
EthDcrMiner64 -epool europe.ethash-hub.miningpoolhub.com:12020 -ewal username.pc1 -epsw x -esm 3 -allpools 1 -mport 0 -retrydelay -1 -ftime 0

cd C:\sgminer
sgminer --no-retry -k vanilla -o stratum+tcp://europe.hub.miningpoolhub.com:12019 -u username.pc1 -p x
sgminer --no-retry -k groestlcoin -o stratum+tcp://europe.hub.miningpoolhub.com:12004 -u username.pc1 -p x
sgminer --no-retry -k myriadcoin-groestl -o stratum+tcp://europe.hub.miningpoolhub.com:12005 -u username.pc1 -p x
sgminer --no-retry -k skeincoin -o stratum+tcp://europe.hub.miningpoolhub.com:12016 -u username.pc1 -p x

timeout 1
goto start

Well I have a couple ztex 1.15y fpga's laying around collecting dust and I can only find miners that work over getwork, no stratum.  Suprnova's pool offered getwork but then vcash-john kicked his pool to the curb.  So now I have no idea what to do with them.

Thanks for offering your .bat , I may need to use it someday. 
Jump to: