Author

Topic: ▂▃▅▆▇⫷[ 🆉🅿🅾🅾🅻.🅲🅰 ]⫸⫷[!KAWPOW!]⫸⫷[ the miners multipool ]⫸ ▇▆▅▃▂ - page 226. (Read 279614 times)

legendary
Activity: 3486
Merit: 1126
Doesn't help that the Equihash chart is wrong.
It should be showing the hashrate in hash or sols, not Mh  Wink

it's just the label for that graph that's wrong....
newbie
Activity: 7
Merit: 0
Doesn't help that the Equihash chart is wrong.
It should be showing the hashrate in hash or sols, not Mh  Wink
newbie
Activity: 30
Merit: 0
Seeing a lot of rejects as well for equihash. Restarted my miner and now it seems to be ok...
newbie
Activity: 4
Merit: 0
█▓▒░-< [ FlexFee™ >-░▒▓█

FlexFee™ is an exclusive fee system on www.zpool.ca only. This fee system is enabled on select algos which reduces the fee's on the pool based on the hashrate. The more hashrate, the less fees. Currently we have the following algos and thresholds:

DECRED
0 - 500Gh = 2.25%
500GH - 1.5Th = 2%
1.5Th - 3Th = 1.75%
3Th+ = 1.5%

SCRYPT
0-5Gh = 2.25%
5Gh-10Gh = 2%
10Gh+ = 1.75%

SHA256
0-500Gh = 2.25%
500Gh-1Ph = 2%
1Ph-5Ph = 1.75%
5Ph+ = 1.5%

LYRA2v2
0-5Gh = 2.25%
5Gh-10Gh = 2%
10Gh-25Gh = 1.75
25Gh+ = 1.5%

X11
0-20Gh = 2.25%
20Gh-50Gh = 2%
50Gh-100Gh = 1.75
100Gh+ = 1.5%


█▓▒░-< [ Hashtap™ >-░▒▓█



█▓▒░-< [ Custom multi algo miners >-░▒▓█

JaredKaragen -

https://bitcointalksearch.org/topic/m.17921405

minerx117 - NEMOSMINER multi algo profit switching NVIDIA miner for ZPOOL

https://bitcointalksearch.org/topic/m.17729122
newbie
Activity: 15
Merit: 0
What sort of negative delta do you usually get?

Thanks

I've never really checked. I'll let you know after I put in some more orders.

Thanks, because for me it was about -15% between what paying for and what recognized at the pool -  which too much delta Sad
legendary
Activity: 3486
Merit: 1126
What sort of negative delta do you usually get?

Thanks

I've never really checked. I'll let you know after I put in some more orders.
legendary
Activity: 3486
Merit: 1126
due to the constant forking and loosing $, I've dropped HONEY. Please stop mining using c=HONEY.

Thanks
newbie
Activity: 15
Merit: 0
What sort of negative delta do you usually get?

Thanks
legendary
Activity: 3486
Merit: 1126
Hi,

For Scrypt mining from NiceHash what is the recommended diff param? d=2048 gets me kicked off for too low diff

Thanks,

I use 16768 and usually around 8Gh
newbie
Activity: 15
Merit: 0
Hi,

For Scrypt mining from NiceHash what is the recommended diff param? d=2048 gets me kicked off for too low diff

Thanks,
full member
Activity: 154
Merit: 100
Need some help on zpool

I have free electricity but cpu mostly
 - intel i7 3520M with amd radeon 7570M (work laptop)
 - amd e-350 (1,6 GHz) with amd radeon hd 6310 ( just for crypto 24/7)

In your opinion which is the best algo i can mine and with which miner?
Thanks

Not sure what you'll get for hashrate, but m7m is likely the best for your CPU's.  I don't see either amd card listed in the benchmarks on zpool so you'd have to benchmark them with various miners to determine what you'll get.  I'd guess not a lot maybe a few dollars each per day max.
sr. member
Activity: 308
Merit: 250
Need some help on zpool

I have free electricity but cpu mostly
 - intel i7 3520M with amd radeon 7570M (work laptop)
 - amd e-350 (1,6 GHz) with amd radeon hd 6310 ( just for crypto 24/7)

In your opinion which is the best algo i can mine and with which miner?
Thanks
legendary
Activity: 3486
Merit: 1126
How did such promising coin as ZEN  ended up so problematic on zpool? It seems to not work most of the time.
And (sorry for the OT) is it true that the ZENs lead developer quit or did something nasty? I hear lots of random gibberish these days on these forums.

I've found some rejected blocks so need to check with tpruvot to see if there is something not right with the ZEN code.
legendary
Activity: 3486
Merit: 1126
hey how much hashrate do you need to enable the zcash mining ? consider the minimum i found some good miners that might help.

I'd like to see a consistent 1Msol/s to make block finding reasonable
sr. member
Activity: 532
Merit: 250
The harder your life is the more meaning it has.
hey how much hashrate do you need to enable the zcash mining ? consider the minimum i found some good miners that might help.
full member
Activity: 211
Merit: 100
I wrote this quick powershell script to pull the stats for a wallet and save them to a CSV:

Code:
$DataPath = '.\Stats.csv'
$Interval = 300
$WalletAddress = 'YOUR_WALLET_HERE'

$timeout = new-timespan -Minutes 1440
$sw = [diagnostics.stopwatch]::StartNew()

while ($sw.elapsed -lt $timeout) {
    $Wallet = Invoke-WebRequest "http://www.zpool.ca/api/walletEx?address=$WalletAddress" -UseBasicParsing | ConvertFrom-Json
    If($Wallet) {
        $WalletObject = [PSCustomObject]@{
                            date = Get-Date -Format 'MM-dd-yyyy'
                            time = Get-Date -Format 'HH:mm:ss'
                            currency = $Wallet.currency
                            unsold = $Wallet.unsold
                            balance = $Wallet.balance
                            unpaid = $Wallet.unpaid
                            paid = $Wallet.paid
                            total = $Wallet.total
                        }

        If(Test-Path $DataPath) {
            $WalletObject | Export-Csv -Path $DataPath -Append -NoTypeInformation -Encoding UTF8
        } Else {
            $WalletObject | Export-Csv -Path $DataPath -NoTypeInformation -Encoding UTF8
        }
    }

    Start-Sleep -Seconds $Interval

}

Save it to a .ps1 file and run it.  It will pull stats at the $Interval (seconds) and runs for 24 hours.  You can set task scheduler to kick it off each day.

It creates a Stats.csv file in whatever directory you run it from and you can use Excel or Power BI Desktop to create whatever visualizations you want.
full member
Activity: 154
Merit: 100
Mind sharing your script that you use to do this?  I was planning on working something out in Python when I relearned it, but this seems like something that would be pretty nice to have.

On Linux it's a simple call to curl every 5 minutes:
Code:
watch -n 300 ./recurl.sh

The contents of recurl.sh:
Code:
#!/bin/bash

{ date -Iminutes; curl -s http://zpool.ca/api/walletEx?address=MyWalletAddress; } >> outcurl.log


The parsing into a graph is more complex.  Maybe I'll write a .NET program to do it later today and I'll share that instead.

That would be cool.  I did essentially this in a batch file so I can get the same output if you have something that parses it into a graphing format.  I presume we need to parse the json or something before feeding it into a graphing library.

Code:
@echo off
:loop
SET MYDATE=%date:~-4,4%-%date:~-7,2%-%date:~-10,2%T%time:~0,5%
echo | set /p dummyName=%MYDATE% >> walletlog.txt
curl -s http://zpool.ca/api/walletEx?address=walletaddress>> walletlog.txt
echo. >> walletlog.txt
timeout /t 300 /nobreak
goto :loop
full member
Activity: 196
Merit: 100
BTW, how come we mine more HUSH after it became low profit, while Zen hashrate dropped. And is there a way to point to a specific coin in a pool? I got in equihash after you announced Zen retun, but we seem to be mining mostly Komodo.
EDIT - or Zcl and Hush as of now. Zen is at 0 h/s.

I noticed this with some algos.  Blake2s for example hasn't mined Verge in over an hour now.


This is a bug, there are plenty of mined here: http://zpool.ca/site/mining

But Zen doesn't get much hashrate and we can't mine it (and we are obviously unlucky I guess). The whole equihash behaves weirdly or the website shows random stuff. Zcl now on top and not mined, Komodo being mined even when on the bottom (same with Hush). Zen at the bottom now and got some love...


Seriously there is something wrong:
1. My hashrate graph shows this for equihash:


2. Then I noticed the rejects, can't be true!?


3. But looking at the earnings, there is some Komodo (the rest was from another miner on skein), and the percentage is also weird, considering the last hours we were way inder 100 Ks and I have 7+ Ks/s (second image)




Now if I move I lose my shares over time and that's a big chunk of the day of mining equihash, and if I don't, I seem to get almost nothing.
Moved to another algo before I went to bed, seems my reject rate was for real (nothing to indicate it in the miners). Spending a day of doing nothing wasn't fun.
sr. member
Activity: 308
Merit: 250
How did such promising coin as ZEN  ended up so problematic on zpool? It seems to not work most of the time.
And (sorry for the OT) is it true that the ZENs lead developer quit or did something nasty? I hear lots of random gibberish these days on these forums.
newbie
Activity: 17
Merit: 0
Mind sharing your script that you use to do this?  I was planning on working something out in Python when I relearned it, but this seems like something that would be pretty nice to have.

On Linux it's a simple call to curl every 5 minutes:
Code:
watch -n 300 ./recurl.sh

The contents of recurl.sh:
Code:
#!/bin/bash

{ date -Iminutes; curl -s http://zpool.ca/api/walletEx?address=MyWalletAddress; } >> outcurl.log


The parsing into a graph is more complex.  Maybe I'll write a .NET program to do it later today and I'll share that instead.
Jump to: