Bitcoin Forum
May 06, 2024, 03:17:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 384 »
  Print  
Author Topic: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin.  (Read 487465 times)
Metroid
Sr. Member
****
Offline Offline

Activity: 2142
Merit: 353


Xtreme Monster


View Profile
February 16, 2017, 12:09:25 PM
 #2081

As far as I know
dwarfpool 2000000000
ethermine 4000000000

currently miningpoolhub have set 2000000000 static diff.
Anyway, I'll consider changes carefully.

Just to be clear, there is no variable difficult as know as vardif for eth at mph anymore, eth has now a static difficult of 2000000000.

BTC Address: 1DH4ok85VdFAe47fSVXNVctxkFhUv4ujbR
1714965421
Hero Member
*
Offline Offline

Posts: 1714965421

View Profile Personal Message (Offline)

Ignore
1714965421
Reply with quote  #2

1714965421
Report to moderator
1714965421
Hero Member
*
Offline Offline

Posts: 1714965421

View Profile Personal Message (Offline)

Ignore
1714965421
Reply with quote  #2

1714965421
Report to moderator
The Bitcoin software, network, and concept is called "Bitcoin" with a capitalized "B". Bitcoin currency units are called "bitcoins" with a lowercase "b" -- this is often abbreviated BTC.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714965421
Hero Member
*
Offline Offline

Posts: 1714965421

View Profile Personal Message (Offline)

Ignore
1714965421
Reply with quote  #2

1714965421
Report to moderator
1714965421
Hero Member
*
Offline Offline

Posts: 1714965421

View Profile Personal Message (Offline)

Ignore
1714965421
Reply with quote  #2

1714965421
Report to moderator
1714965421
Hero Member
*
Offline Offline

Posts: 1714965421

View Profile Personal Message (Offline)

Ignore
1714965421
Reply with quote  #2

1714965421
Report to moderator
aaronsace
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
February 16, 2017, 01:22:52 PM
 #2082

@MiningPoolHub

Please can you activate port 17025 from the API as it doesn't appear to be working.

Hello? Are you able to read this? Guess what... the best miner ever created has arrived! https://github.com/aaronsace/MultiPoolMiner/releases
avirdoz
Legendary
*
Offline Offline

Activity: 1191
Merit: 1001



View Profile
February 16, 2017, 01:44:31 PM
 #2083

Hope you will add decred and lbry pool soon.
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 16, 2017, 03:07:03 PM
 #2084

revisiting the api on mph:

is there an api endpoint for global balance data (like the page with all balances, but as api)?

also last time i asked there was no global api for all algos (workers etc), has this changed?

i would like to list all workers and their coin with balances in a table

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:
<?php
$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)

thanks for this, but this does cycle through all coins and makes <coinAmount> +1 http calls, right? even (<coinAmount>*2) +1 if also querying workers (afaik they are not included in the dashboarddata, would need to check)

i have already thought about just implementing it that way, but i try to not spam the mph server(s) with that many requests every 10-30sec Cheesy

edit: i have implemented it like that for now, worker stats are a separate call too, very ugly solution Cheesy

some small notes on what can be added additionally:
- worker stats: time connected (12 for 12 min, 120 for 2h etc)
- dashboard stats: currency symbol (BTC,XMR etc)


Please don't use it frequently.
The reason why I didn't open this kind of api is database structure needs some changes for performance.

Pool didn't have hub, switching port stuffs and didn't need these optimizations at start. But I need to tweak some now.

Mining Pool Hub - https://miningpoolhub.com
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 16, 2017, 03:10:17 PM
 #2085

revisiting the api on mph:

is there an api endpoint for global balance data (like the page with all balances, but as api)?

also last time i asked there was no global api for all algos (workers etc), has this changed?

i would like to list all workers and their coin with balances in a table

Not yet.
I'm working on other critical bugs now.

I'll add that api.

to give you an idea what i want to accomplish with that api:



ideally a single api call, most likely n+1 calls (global balance+workers per not-0 balance)

thanks for looking into it

thank for the idea.
Seems good.

I think I should raise this work's priority.

Mining Pool Hub - https://miningpoolhub.com
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 16, 2017, 03:13:08 PM
 #2086

As far as I know
dwarfpool 2000000000
ethermine 4000000000

currently miningpoolhub have set 2000000000 static diff.
Anyway, I'll consider changes carefully.

Just to be clear, there is no variable difficult as know as vardif for eth at mph anymore, eth has now a static difficult of 2000000000.

Yeah. that's why I wrote 2000000000 static diff.

Why do you need vardiff?
You need lower difficulty or higher difficulty?

Mining Pool Hub - https://miningpoolhub.com
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 16, 2017, 03:19:03 PM
 #2087

Hope you will add decred and lbry pool soon.

Yeah.
sorry for late
thank you for waiting.

Mining Pool Hub - https://miningpoolhub.com
watson2316
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
February 16, 2017, 08:19:46 PM
 #2088

As far as I know
dwarfpool 2000000000
ethermine 4000000000

currently miningpoolhub have set 2000000000 static diff.
Anyway, I'll consider changes carefully.

Just to be clear, there is no variable difficult as know as vardif for eth at mph anymore, eth has now a static difficult of 2000000000.

Yeah. that's why I wrote 2000000000 static diff.

Why do you need vardiff?
You need lower difficulty or higher difficulty?

Would you consider having multiple static difficulty ports (like Alpereum.ch)? I really liked the vardiff feature as it was "hassle-free" with multiple mining rigs on different hashrates and gave me a constant share rate. Sometimes I also buy hashrate on Nicehash and they now have a minimum difficulty of ~4300MH for ethereum... I guess I have to change pool now Sad

MagicMining
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 16, 2017, 10:46:49 PM
 #2089

I think the consistent share feedback due to vardiff was the biggest attraction of miningpoolhub. Many people mine here exactly because of vardiff (was definitely a large part of why I chose this pool). Like watson2316 said above, it's seamless for a variety of rig hashrates from small single GPUs up to large nicehash rentals.  It is annoying having small workers rarely submit shares but also annoying for large workers to spam shares, and vardiff fixes both ends.
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 17, 2017, 01:30:14 AM
 #2090

@MiningPoolHub

Please can you activate port 17025 from the API as it doesn't appear to be working.

Sorry.
I opened it now.

Mining Pool Hub - https://miningpoolhub.com
felixbrucker
Hero Member
*****
Offline Offline

Activity: 700
Merit: 500


View Profile WWW
February 17, 2017, 01:20:28 PM
Last edit: February 17, 2017, 01:50:36 PM by felixbrucker
 #2091

it seems some 1.3 zcoin are stuck on exchange for me
userid 32342
BinkerSoft
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
February 18, 2017, 03:39:50 AM
 #2092

There was a bug found and exchanges have disabled deposits and withdraws till a fix is implemented. More information here.
https://zcoin.io/language/en/important-announcement-zerocoin-implementation-bug/

This should be resolved in less than 24 hours according to Zcoin Dev Team.
BorginBitsnTits
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
February 18, 2017, 12:05:08 PM
 #2093

What does on exchange mean?  And what of all these coins that seem to have a small amount of coin on exchange that I cant see in my wallet?  Still confused on this whole deal.

And why does it take what seems to be unreasonable amounts of time mining zcash at 1.1k to display a proper credit of any sort when mining.   Is this normal??
melloyellow
Full Member
***
Offline Offline

Activity: 176
Merit: 100


View Profile
February 18, 2017, 04:38:04 PM
 #2094

What does on exchange mean?  And what of all these coins that seem to have a small amount of coin on exchange that I cant see in my wallet?  Still confused on this whole deal.

And why does it take what seems to be unreasonable amounts of time mining zcash at 1.1k to display a proper credit of any sort when mining.   Is this normal??

we had incredible luck the past week mining zec and then it took us 24 hours to find a block.  that's why it took a long time for credit to show up

@miningpoolhub, 24 hours? everything ok? something had to be wrong.
xiaolin1579
Member
**
Offline Offline

Activity: 106
Merit: 10


View Profile
February 18, 2017, 05:06:13 PM
 #2095

@miningpoolhub Please add Pascalcoin to your pool.
agitato
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
February 19, 2017, 06:32:26 AM
 #2096

@miningpoolhub
on zec only 1 transaction for 30 hours
it's normally? thinking that no
caxep
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 19, 2017, 07:49:09 AM
 #2097

@MiningPoolHub

Please can you activate port 17025 from the API as it doesn't appear to be working.

Sorry.
I opened it now.
I measured the profitability of the Ethereum and siacoin, and within a month. Your pool gives 20% less than other pools. other coins such noticed. please check this info. please add drc pasc bbr, lbc, sibcoin, crobavanec, ubiq. thanks
FFI2013
Hero Member
*****
Offline Offline

Activity: 906
Merit: 507


View Profile
February 19, 2017, 12:33:48 PM
 #2098

Would you consider adding a PASC coin pool there's only two now nano and suprnova and nano is hitting 90% of the blocks in a hour I believe they are over 50% having a 3rd pool would be a lot of help the other issue is accounts in order to get a account you need to mine a block than the block reward is 100 coins and 5 accounts so ppl are having problems getting accounts the pools aren't giving them to the miners if you could figure out system lets say after you mine x amount of coins you get a account ppl would change to your pool in a min thank you
Miner2525
Full Member
***
Offline Offline

Activity: 204
Merit: 100


View Profile
February 19, 2017, 08:07:26 PM
 #2099

Would you please setup some kind of special port for sia that is linked to the ethash multi-algo switch mining port.  As it stands now, dual mining ethash at 12020 and sia at either 20550 or 17022 will not result in a failure and rollover when ethash becomes non-best.  It will become stuck on mining sia indefinitely.

There's also a bug in that dual mining sia at port 20550 slows down both ethash and sia speeds compared to using 17022.
caxep
Newbie
*
Offline Offline

Activity: 16
Merit: 0


View Profile
February 20, 2017, 02:39:53 AM
 #2100

I'm use 17022
Pages: « 1 ... 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 ... 384 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!