Bitcoin Forum
June 25, 2024, 03:01:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27 28 29 30 31 32 33 »
401  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 26, 2017, 07:45:33 PM
Can someone change the payment address without knowing your 4 digit pin?

No, I think that's the point.
402  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 25, 2017, 11:53:22 PM
Does claymore v8.0 for Ethereum Mining work on this server ? wont let me connect?

Tried

-epool stratum+tcp://us-east.ethereum.miningpoolhub.com:20535 -ewal $walletETH/$rigName -esm 0 -epsw x  -mport -3333

-epool us-east.ethereum.miningpoolhub.com:20535 -ewal $walletETH/$rigName -esm 0 -epsw x  -mport -3333

I am using simple mining os..


EthDcrMiner64.exe -epool hub.miningpoolhub.com:17020 -ewal user.worker -epsw x -esm 3 -allpools 1
403  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 25, 2017, 03:20:10 PM
There are few coin no autoexchanged yet some days:
Geocoin, Maxcoin and Vcash.
Can i exchange it manually or can i delete it  Roll Eyes ?
.


I bet they are extremely low value; not worth anything. They manually get cleaned up at some point if you haven't mined more before then.

They was created by multipoolminer after mining speed testing, so i don't need it.

Aye, the benchmark is 1 minute long so it will be very small.
404  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 25, 2017, 12:56:46 PM
There are few coin no autoexchanged yet some days:
Geocoin, Maxcoin and Vcash.
Can i exchange it manually or can i delete it  Roll Eyes ?
.


I bet they are extremely low value; not worth anything. They manually get cleaned up at some point if you haven't mined more before then.
405  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 23, 2017, 08:01:36 PM
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.
406  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 21, 2017, 03:21:46 PM
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.
407  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 16, 2017, 01:22:52 PM
@MiningPoolHub

Please can you activate port 17025 from the API as it doesn't appear to be working.
408  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 15, 2017, 11:27:26 PM
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)
409  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 15, 2017, 07:03:33 PM
Zcoin Mining Pool Hub

https://zcoin.miningpoolhub.com

Zcoin pool fork compensation credited.
As Zcoin dev sent 400 XZC to us, pool distributed x5 of 20594, 20616 block reward for each accounts.

Thanks.


How do you add Zcoin to MiltipoolMinerV2?

Add a file to the miners folder. Copy one of the existing files then edit in notepad.

Will add soon but been very busy ATM.

[
    {
        "Type":  "NVIDIA",
        "Path":  ".\\Bin\\Zcoin\\ccminer.exe",
        "Arguments":  "--server $($Pools.Lyra2z.Host) --user $($Pools.Lyra2z.User) --pass x --port $($Pools.Lyra2z.Port)",
        "HashRates":  {"Lyra2z":  "$($Stats.Zcoin_Lyra2z_HashRate.Day)"},
        "API":  "Wrapper",
        "Port":  "0",
        "Wrap":  true
    }
]

Something like this? am learning fast...

It looks like you have got it but the API is wrong, I guess it will be the one from ccminer. Though the wrapper may work the proper API is better.
410  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 15, 2017, 04:32:32 PM
Zcoin Mining Pool Hub

https://zcoin.miningpoolhub.com

Zcoin pool fork compensation credited.
As Zcoin dev sent 400 XZC to us, pool distributed x5 of 20594, 20616 block reward for each accounts.

Thanks.


How do you add Zcoin to MiltipoolMinerV2?

Add a file to the miners folder. Copy one of the existing files then edit in notepad.

Will add soon but been very busy ATM.
411  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 14, 2017, 08:01:31 PM
Please, can you tell me how i can do it in step-by-step?
What means "in the miner file"? I have'nt any files named "miner".

All the miner files are in the folder called 'miners'.
There are some with 'Dual' in the name.
You can edit them in notepad and adjust the field called 'HashRates'.

I recommend just deleting the files if you are struggling.
Okay, now i opened claymore.txt file and see the next string:
"HashRates":  {"Equihash":  "$($Stats.Claymore_Equihash_HashRate.Day)"},
So how it will looks after 10% decrease correction?
Thank you!




Code:
"Equihash":  "$($Stats.Claymore_Equihash_HashRate.Day*0.9)"
412  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 14, 2017, 03:58:38 PM
Please, can you tell me how i can do it in step-by-step?
What means "in the miner file"? I have'nt any files named "miner".

All the miner files are in the folder called 'miners'.
There are some with 'Dual' in the name.
You can edit them in notepad and adjust the field called 'HashRates'.

I recommend just deleting the files if you are struggling.
413  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 13, 2017, 10:24:16 PM
I actually received some ZCoin on MPH today so I at least know that it is working with what I mine directly.

I put some things in bold. How would I contact you if I wanted to get my stuck coins returned back to me sooner than the 2~6 months? I do not see anything on the site for contact or support. All I can think of is spotting you on the forum or in slack. Would I just message you the email and username I have regarding stuck coins?

contact@miningpoolhub.com
414  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 10, 2017, 10:19:57 PM
Hello Miningpoolhub guys
again with problems, i had for two days: ZEC 0.12988492 "on exchange" that it's not getting exchanged.

any ideas why? can you force it, thank you
my user is lightman there.

thanks
indkt.


Sounds like there is something wrong with your account. That's enough Zec; it should have exchanged by now. MiningPoolHub will check it for you when he is back on the forum.
415  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 10, 2017, 10:09:04 PM
Thanks for the reply, but what wallet does it go to, to be exchanged?

Set your wallet address for auto withdraw on the pool that you are exchanging everything to.
Ahh ok I think I got it now. So I put my ZEC address in the ZEC mining pool to have my ZCL auto-exchanged to ZEC? Does that sound correct?

Yes. Remember that the wallet address is just for withdrawing; it doesn't control anything.
416  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 10, 2017, 10:02:53 PM
Thanks for the reply, but what wallet does it go to, to be exchanged?

Set your wallet address for auto withdraw on the pool that you are exchanging everything to.
417  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 10, 2017, 09:59:44 PM
Can someone help me out with the auto-exchange feature. Is there a how to article somewhere I can reference? I am new to mining pool hub and mining ZCL and I would like to auto-exchange it for either ETH or ZEC but haven't figured out how to set that up. Any help is greatly appreciated.

Just set your auto exchange coin then everything that you mine will go to one single currency.

I recommend MultiPoolMiner so that you get the most amount of coins.
418  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 09, 2017, 05:48:49 PM
I just started using this the other day, and I am fairly comfortable with computers in general, I do know some scripting language from playing text based games or writing triggers for zmud.

I have been mining for a few months, at the onset of monero. 

I have a 1050 TI x 5 and +1 970 GTX rig,
1050 TI at work
A RX 470 paired with a 6 core AMD waiting for more units I am ordering and finally a 3960x intel which I am looking for a x79 board to do a hybrid CPU/GPU build maybe even make my own personal computer upgrade / miner.

So not a long time vet, but I am not exactly a noob either.

BUT I do want to say its a bit underwelming to me, the instructions which are supplied in the downloads or on website.  How you configure things with MPH client for example.  sgminer doesnt work at all, ive never used it.. the help file is obnoxious when you load.  I tried in a batch, i na config, at the end of the file, tOK, I saw this setting information that SG miner asks for in the claymore readme files.  OK.  I dont know where it goes it still, a batch file? a command?  How do i Make it execute in conjunction with the miner.   If i make a config file that seems to read it, but what about all the kernel files.   What if I dont want to use that miner and had a different one.  I understand the hub switching but I can use others ports, and pools but then what happens to my currency? Also eth dual mining, no decred info on the website or ability to check balances.  When you say 17xxx do i really leave that, and the rest is magic.. in the copy and paste when do i change usernames and dont I.

Yeah the whole config files and json files are new to me, and I dont get how I have .1 zclassic on exchange, or what that means.  Thats confusing to.   Where  Ifigured I could come for help and guides its all people posting pools and what not, im not trying to read 100 pages of old data!!  The fundamentals of  this system or links to similar systems would be handy.   If nothing else the miner control is nice, I just can only use it for a couple coins.

I also get big red fails on eth dual, its got to be a config issue at this point but that dual mining has a lot to it.. so in time ill figure it out im sure! but hopefully my coins miined go someplace I can use them.  I am using my suprnova account and wallet addie so one can hope.

The struggle is real, but for everyone else it sounds like its pretty good.  Thanks for your work on this, I do like it and once i figure out how to use the miner control interface than maybe ill look at the other stuff!

Thank you



I recommend MultiPoolMiner. Enter your username and it will start benchmarking then mining. You are best waiting for the benchmarks to complete as it may popup with security warnings. It will then use the most profitable miners that work on your system.

Set the auto exchange coin on MiningPoolHub so that you get paid in just one single currency.
419  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 08, 2017, 08:04:10 AM
@miningpoolhub admin

Again, what is wrong with MONERO payouts, I get less than half of what should ?!?!

I got 7.80568624 in last 24 hrs, I should get 13 XMR.
For 10XMR payout it tool a 32 hours to earn, it is almost half. Where are XMR coins gone?

Please fix this, or I will leave pool.
I am always in top 5 miners. Not jumping from pool to pool, but this is really heavy for my wallet.

Your payout is correct for the last 24 hours of found blocks. I think you are misunderstanding how mining works; you get shares in what coins are found. It uses the term 'shares' on your dashboard: https://monero.miningpoolhub.com/index.php?page=dashboard

As you can see the last 24 hours is 38% unlucky but the all time luck is only 5% unlucky:
https://monero.miningpoolhub.com/index.php?page=statistics&action=blocks

Just keep mining and it will level out over time; the next couple of days could be lucky but the stats show that it is working.
The more big miners that this pool gets then the lower the variance in luck between days.

The Monero pool has been running for 6 weeks, please help it grow.
420  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] Mining Pool Hub - Multipool. Multialgo, Auto Exchange to any coin. on: February 04, 2017, 04:58:27 PM

I believe the coin profit API needs updating as they reported this as an issue with MultiPoolMiner when using the coin pools instead of the algorithm pools. Think the http is a typo in the post but the server addresses are from the API.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [21] 22 23 24 25 26 27 28 29 30 31 32 33 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!