Bitcoin Forum
June 16, 2024, 06:31:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 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 ... 346 »
  Print  
Author Topic: [ANN] NiceHash.com - sell & buy hash rate cloud mining service / multipool  (Read 794150 times)
guzzzi
Newbie
*
Offline Offline

Activity: 53
Merit: 0


View Profile
June 10, 2014, 02:27:09 PM
 #1061

Is there any Problem with the Multi-Algo NScrypt? When sgminer starts with NScrypt i see new Accepts, after 1-2 Minutes it quites SGMiner and close it. Dont get any HW-Errors or mass Rejects, everything looks good.
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 10, 2014, 02:28:52 PM
 #1062

Is there any Problem with the Multi-Algo NScrypt? When sgminer starts with NScrypt i see new Accepts, after 1-2 Minutes it quites SGMiner and close it. Dont get any HW-Errors or mass Rejects, everything looks good.

That is sgminer issue, please refer to sgminer thread here: https://bitcointalk.org/index.php?topic=632503.0
kcobra
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
June 10, 2014, 04:51:05 PM
 #1063

I am still unable to connect to the auto switching X11/X13 pools. Connection dropped about 3 hours ago and has not come back. Restarting sgminer had no effect.

stratum+tcp://stratum.nicehash.com:4336
stratum+tcp://stratum.nicehash.com:4337

Any ideas?
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 10, 2014, 04:52:58 PM
 #1064

These ports are closed now, because nscrypt is more profitable. Check main page on NiceHash - algorithm marked with green is most profitable.

If you want to mine X11 or X13, use 3336 and 3337 ports.
kcobra
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile
June 10, 2014, 10:55:58 PM
 #1065

These ports are closed now, because nscrypt is more profitable. Check main page on NiceHash - algorithm marked with green is most profitable.

If you want to mine X11 or X13, use 3336 and 3337 ports.

Thanks. I understand now how it is working. One enhancement that would be good is if you could still do the multi-algo switching to the most profitable algorithm of just the algorithms you want to mine. A lot of people are like me where scrypt mining is just to hot this time of year.
kenshirothefist (OP)
Sr. Member
****
Offline Offline

Activity: 457
Merit: 273



View Profile
June 11, 2014, 07:59:50 AM
Last edit: June 11, 2014, 11:39:57 AM by kenshirothefist
 #1066

These ports are closed now, because nscrypt is more profitable. Check main page on NiceHash - algorithm marked with green is most profitable.

If you want to mine X11 or X13, use 3336 and 3337 ports.

Thanks. I understand now how it is working. One enhancement that would be good is if you could still do the multi-algo switching to the most profitable algorithm of just the algorithms you want to mine. A lot of people are like me where scrypt mining is just to hot this time of year.

You can setup only a subset of algorithms on 43xx ports if Scrypt and Scrypt-N are unacceptable due to power consumption and heat; however make sure you also setup your preferred nicehash backup pool.

Example:
- setup only a subset of auto-switch ports: X11:4336, X13:4337, Keccak:4338
- setup nicehash X11 backup pool: X11:3336
- this way you'll be mining the most profitable between X11, X13, Keccak
- because you skipped scrypt and scrypt-N which might be the most profitable in a particular time interval and auto-switch X11:4336, X13:4337, Keccak:4338 ports will be closed, you'll be still mining X11 on nicehash X11 backup pool: X11:3336 (Note: with this configuration it might happen that X13 might still be more profitable then X11, but you'll be mining on X11 backup pool because it might happen that profitability will be like this: Scrypt > X13 > X11 ... and since Scrypt is the most profitable, X13 and X11 auto-switch would be closed).

Code:
{
"pools" : [
     {
          "name" : "NiceHash_X11_auto-switch",
          "url" : "stratum+tcp://stratum.nicehash.com:4336",
          "user" : "BTC_address",
          "pass" : "x",
          "pool-nfactor" : "10",
          "pool-algorithm" : "darkcoin-mod"
     },
     {
          "name" : "NiceHash_X13_auto-switch",
          "url" : "stratum+tcp://stratum.nicehash.com:4337",
          "user" : "BTC_address",
          "pass" : "x",
          "pool-nfactor" : "10",
          "pool-algorithm" : "marucoin-mod"
     },
     {
          "name" : "NiceHash_Keccak_auto-switch",
          "url" : "stratum+tcp://stratum.nicehash.com:4338",
          "user" : "BTC_address",
          "pass" : "x",
          "pool-nfactor" : "10",
          "pool-algorithm" : "maxcoin"
     },
     {
          "name" : "NiceHash_X11_backup",
          "url" : "stratum+tcp://stratum.nicehash.com:3336",
          "user" : "BTC_address",
          "pass" : "x",
          "pool-nfactor" : "10",
          "pool-algorithm" : "darkcoin-mod"
     },
     {
          "name" : "some third-party X11 backup pool",
          "url" : "stratum+tcp://x11-backup-pool:3333",
          "user" : "user",
          "pass" : "pass",
          "pool-nfactor" : "10",
          "pool-algorithm" : "darkcoin-mod"
     }
],
"failover-only" : true,
"failover-switch-delay" : "30",
... other configuration settings ...
}
kenshirothefist (OP)
Sr. Member
****
Offline Offline

Activity: 457
Merit: 273



View Profile
June 11, 2014, 11:14:29 AM
 #1067

Today's fresh builds with many bugfixes available for download: https://www.nicehash.com/software/#sgminer
lorumaster
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
June 11, 2014, 12:44:19 PM
 #1068

tnx! latest build fixed my HW errors with scrypt-n
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 11, 2014, 01:10:48 PM
 #1069

The deposit address you posted is only for deposits. Accounting is handled by different database (bitcoinqt accounts). You should refer to your transaction history you can see on your wallet page.

It is completely normal that deposit addresses are used for sending out bitcoins. You can observe similar behavior with big exchanges (like bitstamp).
DjTest
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
June 11, 2014, 03:15:31 PM
Last edit: June 11, 2014, 03:43:56 PM by DjTest
 #1070

That's happening to short BTC addresses? Are they no more accepted?

During the frontend maintenance, today at 10:30Z, the pool started to reply with "Invalid BTC address" and drops the connection.

Check
https://nicehash.com/?p=miners&a=4&addr=1N9kZERoSUrg1pS4WKK75wwAjLAaymGYs
https://nicehash.com/?p=miners&a=0&addr=1puHcBX19JwCYTzTtPjRwHwjxPtRR95YT
https://nicehash.com/?p=miners&a=0&addr=1PTkxirE2VgnSAKqzQwek25Nt5WCSgm1R
https://nicehash.com/?p=miners&a=3&addr=1rZpjJoXCxYHJEuQ4R3nB1FdGNkrAima1
https://nicehash.com/?p=miners&a=0&addr=1Bhtdh47ieDHrcaGvek9EriGYoPpgihc1
https://nicehash.com/?p=miners&a=1&addr=1jCMLVX18JdXKjPumkuYS5QpBueMLj3vJ

Data and graph seems corrupted (and payments stopped)

--- edit ---
these addresses are pretty valid and were payed several times in the past, they are only 33 chars long instead or the more common 34 chars length.
DarkAGeS
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
June 11, 2014, 10:10:07 PM
 #1071

- because you skipped scrypt and scrypt-N which might be the most profitable in a particular time interval and auto-switch X11:4336, X13:4337, Keccak:4338 ports will be closed, you'll be still mining X11 on nicehash X11 backup pool: X11:3336 (Note: with this configuration it might happen that X13 might still be more profitable then X11, but you'll be mining on X11 backup pool because it might happen that profitability will be like this: Scrypt > X13 > X11 ... and since Scrypt is the most profitable, X13 and X11 auto-switch would be closed).
I think you can add another group of ports for only cold and energy efficient multialgo mining - like X11:5336, X13:5337, Keccak:5338 (may be also groestl) - I think this group of ports will be popular Wink
elpsycongro
Full Member
***
Offline Offline

Activity: 307
Merit: 102



View Profile
June 12, 2014, 01:52:06 AM
 #1072

- because you skipped scrypt and scrypt-N which might be the most profitable in a particular time interval and auto-switch X11:4336, X13:4337, Keccak:4338 ports will be closed, you'll be still mining X11 on nicehash X11 backup pool: X11:3336 (Note: with this configuration it might happen that X13 might still be more profitable then X11, but you'll be mining on X11 backup pool because it might happen that profitability will be like this: Scrypt > X13 > X11 ... and since Scrypt is the most profitable, X13 and X11 auto-switch would be closed).
I think you can add another group of ports for only cold and energy efficient multialgo mining - like X11:5336, X13:5337, Keccak:5338 (may be also groestl) - I think this group of ports will be popular Wink
i agree with you ,  currently i manually switch between those algos but if we could have ports specific to those it would be that much easier to manage.

allcoinminer
Hero Member
*****
Offline Offline

Activity: 784
Merit: 504


View Profile
June 12, 2014, 07:35:33 AM
 #1073

Nicehash pays the mining order btc/Th/day or the average btc/Th/day?
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 12, 2014, 09:36:12 AM
 #1074

That's happening to short BTC addresses? Are they no more accepted?

During the frontend maintenance, today at 10:30Z, the pool started to reply with "Invalid BTC address" and drops the connection.

Check
https://nicehash.com/?p=miners&a=4&addr=1N9kZERoSUrg1pS4WKK75wwAjLAaymGYs
https://nicehash.com/?p=miners&a=0&addr=1puHcBX19JwCYTzTtPjRwHwjxPtRR95YT
https://nicehash.com/?p=miners&a=0&addr=1PTkxirE2VgnSAKqzQwek25Nt5WCSgm1R
https://nicehash.com/?p=miners&a=3&addr=1rZpjJoXCxYHJEuQ4R3nB1FdGNkrAima1
https://nicehash.com/?p=miners&a=0&addr=1Bhtdh47ieDHrcaGvek9EriGYoPpgihc1
https://nicehash.com/?p=miners&a=1&addr=1jCMLVX18JdXKjPumkuYS5QpBueMLj3vJ

Data and graph seems corrupted (and payments stopped)

--- edit ---
these addresses are pretty valid and were payed several times in the past, they are only 33 chars long instead or the more common 34 chars length.

Our sub contractor did mistake in address checking algorithm. We have reverted back until correct algorithm is provided. Sorry for it.

Nicehash pays the mining order btc/Th/day or the average btc/Th/day?

At any time you check, you are being paid what "Currently paying" says. But we also provide past 24h statistics. If your miner was mining for past 24h, then you should have been paid what past 24h stats say.

- because you skipped scrypt and scrypt-N which might be the most profitable in a particular time interval and auto-switch X11:4336, X13:4337, Keccak:4338 ports will be closed, you'll be still mining X11 on nicehash X11 backup pool: X11:3336 (Note: with this configuration it might happen that X13 might still be more profitable then X11, but you'll be mining on X11 backup pool because it might happen that profitability will be like this: Scrypt > X13 > X11 ... and since Scrypt is the most profitable, X13 and X11 auto-switch would be closed).
I think you can add another group of ports for only cold and energy efficient multialgo mining - like X11:5336, X13:5337, Keccak:5338 (may be also groestl) - I think this group of ports will be popular Wink
i agree with you ,  currently i manually switch between those algos but if we could have ports specific to those it would be that much easier to manage.

We will think about adding "Green multi-algorithm".
oktay50000
Sr. Member
****
Offline Offline

Activity: 560
Merit: 250


View Profile
June 12, 2014, 10:15:20 AM
 #1075

yes green algo would be great
scrypt  and acrypt n are very hot and power hungry
just x11/x13 group would be great

tnx

BTC : bc1qqz9hvv806w2zs42mx4rn576whxmr202yxp00e9

feel free to buy me a bear
soapmodem
Full Member
***
Offline Offline

Activity: 157
Merit: 100


View Profile
June 12, 2014, 11:44:39 AM
 #1076

I like this, but I'm getting slow speeds on the mining server, even when there's an abundance of work available at my specified price. I think part of the problem is that stratum.nicehash.com is located in Slovenia. Perhaps the UK or NL would be better, or even USA, in a data center connected to a faster backbone. (ie Redstation)

That's really the only thing preventing me from sending more hashing power your way. Really nice job though overall, I like the concept. Regards. Smiley
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 12, 2014, 12:11:26 PM
 #1077

Are you using NiceHash software or you use software that does not support extranonce1 change on fly? If it is second, then you will have decreased performance due to many reconnects.

Our system does reward reconnects (like if you were sending a share that time), but these are little rewards (3 sec of your mining time).
soapmodem
Full Member
***
Offline Offline

Activity: 157
Merit: 100


View Profile
June 12, 2014, 12:24:22 PM
 #1078

Are you using NiceHash software or you use software that does not support extranonce1 change on fly? If it is second, then you will have decreased performance due to many reconnects.

Our system does reward reconnects (like if you were sending a share that time), but these are little rewards (3 sec of your mining time).
I'm using default cgminer on AntMiner, which I believe is version 3.12. Should this support extranonce1?
nicehashdev
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
June 12, 2014, 12:37:27 PM
 #1079

https://www.nicehash.com/software/

You should use latest cgminer in that case.
biohammer
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
June 12, 2014, 11:37:03 PM
 #1080

ive been trying to rent x13 hash for over an hour   and all my orders stay dead  ,  trying to hash at trademybit  and dedicated on both UK and US stratums  and none of my orders go live ...WTF?  I keep getting charged every time I have to cancel an order What kind of scam are you trying to run here?   Im out money because your system is screwed up?   I am not having any trouble connecting to those pools with my other rental rigs or my own rigs ....but im getting real sick of your less than stellar performance on orders lately and I should not be charged anything for canceling an order that never started   it is BS when its your faulty system Im pissed off  and not getting my moneys worth  .  This has got to change    and you owe me some money.    There is some scammy shit going on here.
Pages: « 1 ... 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 [54] 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 ... 346 »
  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!