Bitcoin Forum
May 12, 2024, 12:20:26 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 156 ... 384 »
  Print  
Author Topic: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin.  (Read 487471 times)
celofan
Member
**
Offline Offline

Activity: 86
Merit: 10


View Profile
February 21, 2017, 03:07:24 PM
 #2101

How i can add nsgminer for neoscrypt AMD mining?
Now i created in "bin" directory AMD-NEOSCRYPT directory and placed nsgminer.
In Miners directory i copy sgminer.ps1 , renamed it into nsgminer.ps1 and modify it

Code:
$Path = '.\Bin\AMD-NEOSCRYPT\nsgminer.exe'
$Uri = "https://github.com/ghostlander/nsgminer/releases/download/nsgminer-v0.9.2/nsgminer-win64-0.9.2.zip"
$Uri_SubFolder = $true

if((Test-Path $Path) -eq $false)
{
    $FolderName_Old = if($Uri_SubFolder){([IO.FileInfo](Split-Path $Uri -Leaf)).BaseName}else{""}
    $FolderName_New = Split-Path (Split-Path $Path) -Leaf
    $FileName = "$FolderName_New$(([IO.FileInfo](Split-Path $Uri -Leaf)).Extension)"

    try
    {
        if(Test-Path $FileName){Remove-Item $FileName}
        if(Test-Path "$(Split-Path (Split-Path $Path))\$FolderName_New"){Remove-Item "$(Split-Path (Split-Path $Path))\$FolderName_New" -Recurse}
        if($FolderName_Old -ne ""){if(Test-Path "$(Split-Path (Split-Path $Path))\$FolderName_Old"){Remove-Item "$(Split-Path (Split-Path $Path))\$FolderName_Old" -Recurse}}
        Invoke-WebRequest $Uri -OutFile $FileName -UseBasicParsing
        if($FolderName_Old -ne ""){Start-Process "7za" "x $FileName -o$(Split-Path (Split-Path $Path)) -y" -Wait}else{Start-Process "7za" "x $FileName -o$(Split-Path $Path) -y" -Wait}
        if($FolderName_Old -ne ""){Rename-Item "$(Split-Path (Split-Path $Path))\$FolderName_Old" "$FolderName_New"}
    }
    catch
    {
        return
    }
}

$Name = (Get-Item $script:MyInvocation.MyCommand.Path).BaseName

$Algorithms = [PSCustomObject]@{
        NeoScrypt = 'neoscrypt'
 }

$Optimizations = [PSCustomObject]@{
        NeoScrypt = '-g 1 -I 13 -w 64 --thread-concurrency 64'
}

$Algorithms | Get-Member -MemberType NoteProperty | Select -ExpandProperty Name | ForEach {
    [PSCustomObject]@{
        Type = 'AMD'
        Path = $Path
        Arguments = -Join ('--api allow --api-listen -- ', $Algorithms.$_, ' -o $($Pools.', $_, '.Protocol)://$($Pools.', $_, '.Host):$($Pools.', $_, '.Port) -u $($Pools.', $_, '.User) -p x', $Optimizations.$_)
        HashRates = [PSCustomObject]@{$_ = -Join ('$($Stats.', $Name, '_', $_, '_HashRate.Day)')}
        API = 'Xgminer'
        Port = 4028
        Wrap = $false
    }
}

But multipoolminer cant survive it.Whats wrong?
1715473226
Hero Member
*
Offline Offline

Posts: 1715473226

View Profile Personal Message (Offline)

Ignore
1715473226
Reply with quote  #2

1715473226
Report to moderator
In order to get the maximum amount of activity points possible, you just need to post once per day on average. Skipping days is OK as long as you maintain the average.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
aaronsace
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
February 21, 2017, 03:21:46 PM
 #2102

How i can add nsgminer for neoscrypt AMD mining?
Now i created in "bin" directory AMD-NEOSCRYPT directory and placed nsgminer.
In Miners directory i copy sgminer.ps1 , renamed it into nsgminer.ps1 and modify it

Code:
$Path = '.\Bin\AMD-NEOSCRYPT\nsgminer.exe'
$Uri = "https://github.com/ghostlander/nsgminer/releases/download/nsgminer-v0.9.2/nsgminer-win64-0.9.2.zip"
$Uri_SubFolder = $true

if((Test-Path $Path) -eq $false)
{
    $FolderName_Old = if($Uri_SubFolder){([IO.FileInfo](Split-Path $Uri -Leaf)).BaseName}else{""}
    $FolderName_New = Split-Path (Split-Path $Path) -Leaf
    $FileName = "$FolderName_New$(([IO.FileInfo](Split-Path $Uri -Leaf)).Extension)"

    try
    {
        if(Test-Path $FileName){Remove-Item $FileName}
        if(Test-Path "$(Split-Path (Split-Path $Path))\$FolderName_New"){Remove-Item "$(Split-Path (Split-Path $Path))\$FolderName_New" -Recurse}
        if($FolderName_Old -ne ""){if(Test-Path "$(Split-Path (Split-Path $Path))\$FolderName_Old"){Remove-Item "$(Split-Path (Split-Path $Path))\$FolderName_Old" -Recurse}}
        Invoke-WebRequest $Uri -OutFile $FileName -UseBasicParsing
        if($FolderName_Old -ne ""){Start-Process "7za" "x $FileName -o$(Split-Path (Split-Path $Path)) -y" -Wait}else{Start-Process "7za" "x $FileName -o$(Split-Path $Path) -y" -Wait}
        if($FolderName_Old -ne ""){Rename-Item "$(Split-Path (Split-Path $Path))\$FolderName_Old" "$FolderName_New"}
    }
    catch
    {
        return
    }
}

$Name = (Get-Item $script:MyInvocation.MyCommand.Path).BaseName

$Algorithms = [PSCustomObject]@{
        NeoScrypt = 'neoscrypt'
 }

$Optimizations = [PSCustomObject]@{
        NeoScrypt = '-g 1 -I 13 -w 64 --thread-concurrency 64'
}

$Algorithms | Get-Member -MemberType NoteProperty | Select -ExpandProperty Name | ForEach {
    [PSCustomObject]@{
        Type = 'AMD'
        Path = $Path
        Arguments = -Join ('--api allow --api-listen -- ', $Algorithms.$_, ' -o $($Pools.', $_, '.Protocol)://$($Pools.', $_, '.Host):$($Pools.', $_, '.Port) -u $($Pools.', $_, '.User) -p x', $Optimizations.$_)
        HashRates = [PSCustomObject]@{$_ = -Join ('$($Stats.', $Name, '_', $_, '_HashRate.Day)')}
        API = 'Xgminer'
        Port = 4028
        Wrap = $false
    }
}

But multipoolminer cant survive it.Whats wrong?


I'll try adding the miners and optimizations ASAP then commit to GitHub.

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

Activity: 710
Merit: 502



View Profile
February 23, 2017, 03:45:52 PM
 #2103

Hello miningpoolhub guys

is there is any problem with the servers?, the ethereum pool is slow as F&*$#

i click on a link and it takes 20 -30 seconds to load, some time over 60 seconds, it is insane.

plz check it out when you have time, thank you!
username induktor
indkt.

BTC addr: 1vTGnFgaM2WJjswwmbj6N2AQBWcHfimSc
not.you
Legendary
*
Offline Offline

Activity: 1726
Merit: 1018


View Profile
February 23, 2017, 06:02:05 PM
 #2104

Is there an ETA on fix for issues with DASH pool?
goodminer
Member
**
Offline Offline

Activity: 120
Merit: 10


View Profile
February 23, 2017, 06:40:15 PM
 #2105

Why monero withdraws doesn't work?
not.you
Legendary
*
Offline Offline

Activity: 1726
Merit: 1018


View Profile
February 23, 2017, 07:24:16 PM
 #2106

Why monero withdraws doesn't work?

Hmmm  Undecided  Same thing the DASH pool says:

Quote from: miningpoolhub website
We are investingating issues in the backend. Your shares and hashrate are safe and we will fix things ASAP.

Payouts disabled, you will not receive any coins to your offline wallet for the time being
flowjob
Member
**
Offline Offline

Activity: 130
Merit: 11


View Profile
February 23, 2017, 07:46:39 PM
 #2107

I want to change my payout coin from Bitcoin to something else because of high transaction fees and confirmation time and i have some questions:

1. Is it safe to change the autoexchange coin on the fly, from Bitcoin to for example Ethereum?
2. What happens to the coins that are "credited for auto exchange" or already "on exchange"?
3. Is it possible to also get rid of the bitcoins that are already "credited"? There is no "Transfer" tab in the bitcoin wallet, only for the other coins.

Thank you.

◈▣ KOMODO ● Set Your Ideas Free ▣◈
.......AN ECOSYSTEM FOR NATIVE BLOCKCHAINS.......
Blockchain Generator | Decentralized Crowdfunding | Decentralized Exchange | Bitcoin Security | Zero-Knowledge Proofs | Blockchain Interoperability | Scalable Infrastructure
aaronsace
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
February 23, 2017, 08:01:36 PM
 #2108

I want to change my payout coin from Bitcoin to something else because of high transaction fees and confirmation time and i have some questions:

1. Is it safe to change the autoexchange coin on the fly, from Bitcoin to for example Ethereum?
2. What happens to the coins that are "credited for auto exchange" or already "on exchange"?
3. Is it possible to also get rid of the bitcoins that are already "credited"? There is no "Transfer" tab in the bitcoin wallet, only for the other coins.

Thank you.

1. Yes.
2. Continues as it was.
3. No, nobody mines Bitcoin directly; just withdraw.

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

Activity: 86
Merit: 10


View Profile
February 24, 2017, 08:07:07 AM
 #2109

Any servers ws port 12024 is not working.
Please, check port 12024 accessibility.
Tnx.
rozsada
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile
February 24, 2017, 01:46:06 PM
 #2110

Is any problem with mining xmr?
Only 4 blocks found for today (half a day)?
miningpoolhub (OP)
Legendary
*
Offline Offline

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 24, 2017, 11:23:59 PM
 #2111

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.


Sorry about this.
I like vardiff feature too. As ethereum stratum protocol's vardiff is vulnerable to share validation at some cases, it may harm your earnings. I believe people liked vardiff + fair distribution and not just varidff.

In theory, there's no difference whether if you insert share frequently or not. (Just fluctuates more if diff value is higher)
This is why most ETH/ETC/EXP pools have static diff.
There's 20, 30, even 50 billion static diff pools out there. miningpoolhub uses 20 billion static diff which is one of the lowest.

Current difficulty value is not that efficient/inefficient for most rigs because nowadays no one uses eth-proxy things. Every 1-way to 6-way range rigs work well. Nicehash is compatible as well.

I'll continue think about other workaround or special vardiff port too.
Thanks.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 24, 2017, 11:28:02 PM
 #2112

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



I'll consider opening separate server with vardiff supported miner only. Not sure at this moment.
Actually nicehash is still compatible. I tested it also and it works very well.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 12:04:51 AM
 #2113

it seems some 1.3 zcoin are stuck on exchange for me
userid 32342

Some zcoin were stuck due to deposit confirmation error around hardfork time.
It's all resolved.

You will get exchanged coin at next withdrawal process.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 12:11:36 AM
 #2114

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??

"On Exchange" means that mined coins are sent to exchange site like poloniex, bittrex, yobit.
Maybe they are waiting for exchange, or already exchanged to target coin and waiting for withdrawal.

As there's some minimum trade value, minimum withdrawal value limitation from exchange sites, there could be some little amounts here and there.
Pool collects them and exchange/withdraw once when certain conditions are met.
It takes some time if coin is rare. Pool give back those coins that are so rare and stuck at exchange site for few months. (I cancel exchange if someone asks about their coin)


Zcash luck goes up and down like roller coaster because of small pool hashrate. You'll get appropriate amount but it fluctuates daily.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 12:12:09 AM
 #2115

@miningpoolhub Please add Pascalcoin to your pool.

Yeah. Thank you for suggestion.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 07:43:49 AM
 #2116

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.

Yeah just small pool hashrate and unlucky.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 07:44:06 AM
 #2117

@miningpoolhub Please add Pascalcoin to your pool.

Yes I'll add that coin too.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 07:44:44 AM
 #2118

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

Currently miningpoolhub's zcash pool share is under 1%.
It fluctuates much daily.
Sorry about it.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 07:46:24 AM
 #2119

@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

Thank you for your mining report.
What hashrate are you mining?

I'll add dcr, pascal, and other coins as well.

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

Activity: 1456
Merit: 1006

Mining Pool Hub


View Profile WWW
February 25, 2017, 07:47:31 AM
 #2120

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

I'll add pascal coin pool soon.
I actually don't know much about account rule at pascal coin yet. I'll look into it.

Thanks

Mining Pool Hub - https://miningpoolhub.com
Pages: « 1 ... 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 156 ... 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!