Bitcoin Forum
July 20, 2026, 12:22:11 AM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 [193] 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 ... 652 »
  Print  
Author Topic: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 200000 miners  (Read 706631 times)
soothaa
Hero Member
*****
Offline

Activity: 1151
Merit: 528



View Profile
January 08, 2018, 03:44:34 PM
 #3841

Please let me know what specific information you want me to clarify or improve in addition to this.
Can I get a pointer on how to update my custom coins automatically via either the C# or HTTP API? It's useless for me to update them manually..

Patrike, can you point me in the right direction? I'm trying to update a custom coin with the C# scripting interface and I am unsure how to save my updates back (or if It even functions like this)

Code:
public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;


public bool Execute(List<IMinerBase> list)
{

Muncoin bob = new Muncoin();
bob.SetProperties("", 0, 0, 0);
return true;
}

}

public class Muncoin : ICoinStatProvider
{
public string coinShortName;
public double difficulty;
public double reward;
public double valueBtc;

public Muncoin()
{
}

public void SetProperties(string _coinShortName, double _difficulty, double _reward, double _valueBtc)
{
coinShortName = "MUN";
difficulty  = 10;
reward = 10;
valueBtc = 10;
}

}

I REALLY need some way to automatically update custom coins..

What's possible with C# script today is using:
Code:
void SetProperties(string coinShortName, double difficulty, double reward, double valueBtc);

Code:
public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;

public bool Execute(List<IMinerBase> list)
{
Context.CoinStat.SetProperties("LTC", 3700000, 25, 0.019);
return true;
}

}

The drawback is that it's more intended for coin properties based on difficult and similar parameters.

Sometimes it's easier to just set profitability in BTC per MH/s, and I can implement that for you over the HTTP API in the next release if needed. It could be something like:
POST /api/coins/LTC?profit=0.000014
OMG was it seriously that simple? Thank you so much.

HTTP API access for this would be great though, I would love to write an external program to gather bleeding edge coins and update them in AM.

Want increased coin support within AwesomeMiner? Try my free plugin to add support for nearly any coin! https://bitcointalk.org/index.php?topic=2979494
Want Masternode income stats within AwesomeMiner? Try my free plugin to add support for them! https://bitcointalk.org/index.php?topic=3047367
yhbae
Newbie
*
Offline

Activity: 119
Merit: 0


View Profile
January 08, 2018, 04:54:49 PM
 #3842

I'm seeing another strange error...

On one of my rig, about once every few-10 mins, it reports on the console that it lost connection with the server, and dns cannot be resolved (all reported in RED fonts). AM app reports that the rig is offline yet the rig is still mining. In this case, it's Equihash algorithm. If I wait long enough, eventually AM picks it back up and reports all info normally.

I did check to see if my WiFi card is bad, perhaps going flaky, but that was not the case.

Any ideas? Not disastrous since mining hasn't stopped but kinda difficult to distinguish between real failures vs one of these...
soothaa
Hero Member
*****
Offline

Activity: 1151
Merit: 528



View Profile
January 08, 2018, 05:03:06 PM
 #3843

I'm seeing another strange error...

On one of my rig, about once every few-10 mins, it reports on the console that it lost connection with the server, and dns cannot be resolved (all reported in RED fonts). AM app reports that the rig is offline yet the rig is still mining. In this case, it's Equihash algorithm. If I wait long enough, eventually AM picks it back up and reports all info normally.

I did check to see if my WiFi card is bad, perhaps going flaky, but that was not the case.

Any ideas? Not disastrous since mining hasn't stopped but kinda difficult to distinguish between real failures vs one of these...
I am seeing this as well

Want increased coin support within AwesomeMiner? Try my free plugin to add support for nearly any coin! https://bitcointalk.org/index.php?topic=2979494
Want Masternode income stats within AwesomeMiner? Try my free plugin to add support for them! https://bitcointalk.org/index.php?topic=3047367
patrike (OP)
Legendary
*
Offline

Activity: 3962
Merit: 1100


View Profile WWW
January 08, 2018, 05:09:50 PM
 #3844

Please let me know what specific information you want me to clarify or improve in addition to this.
Can I get a pointer on how to update my custom coins automatically via either the C# or HTTP API? It's useless for me to update them manually..

Patrike, can you point me in the right direction? I'm trying to update a custom coin with the C# scripting interface and I am unsure how to save my updates back (or if It even functions like this)

Code:
public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;


public bool Execute(List<IMinerBase> list)
{

Muncoin bob = new Muncoin();
bob.SetProperties("", 0, 0, 0);
return true;
}

}

public class Muncoin : ICoinStatProvider
{
public string coinShortName;
public double difficulty;
public double reward;
public double valueBtc;

public Muncoin()
{
}

public void SetProperties(string _coinShortName, double _difficulty, double _reward, double _valueBtc)
{
coinShortName = "MUN";
difficulty  = 10;
reward = 10;
valueBtc = 10;
}

}

I REALLY need some way to automatically update custom coins..

What's possible with C# script today is using:
Code:
void SetProperties(string coinShortName, double difficulty, double reward, double valueBtc);

Code:
public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;

public bool Execute(List<IMinerBase> list)
{
Context.CoinStat.SetProperties("LTC", 3700000, 25, 0.019);
return true;
}

}

The drawback is that it's more intended for coin properties based on difficult and similar parameters.

Sometimes it's easier to just set profitability in BTC per MH/s, and I can implement that for you over the HTTP API in the next release if needed. It could be something like:
POST /api/coins/LTC?profit=0.000014
OMG was it seriously that simple? Thank you so much.

HTTP API access for this would be great though, I would love to write an external program to gather bleeding edge coins and update them in AM.
I will add the HTTP API in the next release.

Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners
Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, T9+, L3+, S17, T17, S19, T19, S21, T21, L7, L9
Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
soothaa
Hero Member
*****
Offline

Activity: 1151
Merit: 528



View Profile
January 08, 2018, 05:11:38 PM
 #3845

I will add the HTTP API in the next release.
Thank you soooo much!   Grin

Want increased coin support within AwesomeMiner? Try my free plugin to add support for nearly any coin! https://bitcointalk.org/index.php?topic=2979494
Want Masternode income stats within AwesomeMiner? Try my free plugin to add support for them! https://bitcointalk.org/index.php?topic=3047367
yhbae
Newbie
*
Offline

Activity: 119
Merit: 0


View Profile
January 08, 2018, 05:11:45 PM
 #3846

I'm seeing another strange error...

On one of my rig, about once every few-10 mins, it reports on the console that it lost connection with the server, and dns cannot be resolved (all reported in RED fonts). AM app reports that the rig is offline yet the rig is still mining. In this case, it's Equihash algorithm. If I wait long enough, eventually AM picks it back up and reports all info normally.

I did check to see if my WiFi card is bad, perhaps going flaky, but that was not the case.

Any ideas? Not disastrous since mining hasn't stopped but kinda difficult to distinguish between real failures vs one of these...
I am seeing this as well

Good, so at least I'm not alone. Smiley

More data:

---
[2018-01-08 12:02:24] GPU #2: EVGA GTX 1080 Ti, 487.67 Sol/s
[2018-01-08 12:02:26] Stratum connection interrupted
[2018-01-08 12:02:28] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:02:38] stratum_subscribe timed out
[2018-01-08 12:02:38] ...retry after 30 seconds
[2018-01-08 12:02:53] GPU #1: 1794 MHz 3.62 Sol/W 123W 55C FAN 29%
[2018-01-08 12:03:08] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:03:18] stratum_subscribe timed out
[2018-01-08 12:03:18] ...retry after 30 seconds
[2018-01-08 12:03:48] Unsupported extranonce size of 13 (12 maxi)
---

Perhaps the server is having intermittent connectivity issues?
patrike (OP)
Legendary
*
Offline

Activity: 3962
Merit: 1100


View Profile WWW
January 08, 2018, 05:13:49 PM
 #3847

I'm seeing another strange error...

On one of my rig, about once every few-10 mins, it reports on the console that it lost connection with the server, and dns cannot be resolved (all reported in RED fonts). AM app reports that the rig is offline yet the rig is still mining. In this case, it's Equihash algorithm. If I wait long enough, eventually AM picks it back up and reports all info normally.

I did check to see if my WiFi card is bad, perhaps going flaky, but that was not the case.

Any ideas? Not disastrous since mining hasn't stopped but kinda difficult to distinguish between real failures vs one of these...
I am seeing this as well

Good, so at least I'm not alone. Smiley

More data:

---
[2018-01-08 12:02:24] GPU #2: EVGA GTX 1080 Ti, 487.67 Sol/s
[2018-01-08 12:02:26] Stratum connection interrupted
[2018-01-08 12:02:28] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:02:38] stratum_subscribe timed out
[2018-01-08 12:02:38] ...retry after 30 seconds
[2018-01-08 12:02:53] GPU #1: 1794 MHz 3.62 Sol/W 123W 55C FAN 29%
[2018-01-08 12:03:08] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:03:18] stratum_subscribe timed out
[2018-01-08 12:03:18] ...retry after 30 seconds
[2018-01-08 12:03:48] Unsupported extranonce size of 13 (12 maxi)
---

Perhaps the server is having intermittent connectivity issues?
This is the mining software that lost connection to your pool, which typically is outside the control of Awesome Miner. Which pool is it?

Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners
Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, T9+, L3+, S17, T17, S19, T19, S21, T21, L7, L9
Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
yhbae
Newbie
*
Offline

Activity: 119
Merit: 0


View Profile
January 08, 2018, 05:15:30 PM
 #3848

I'm seeing another strange error...

On one of my rig, about once every few-10 mins, it reports on the console that it lost connection with the server, and dns cannot be resolved (all reported in RED fonts). AM app reports that the rig is offline yet the rig is still mining. In this case, it's Equihash algorithm. If I wait long enough, eventually AM picks it back up and reports all info normally.

I did check to see if my WiFi card is bad, perhaps going flaky, but that was not the case.

Any ideas? Not disastrous since mining hasn't stopped but kinda difficult to distinguish between real failures vs one of these...
I am seeing this as well

Good, so at least I'm not alone. Smiley

More data:

---
[2018-01-08 12:02:24] GPU #2: EVGA GTX 1080 Ti, 487.67 Sol/s
[2018-01-08 12:02:26] Stratum connection interrupted
[2018-01-08 12:02:28] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:02:38] stratum_subscribe timed out
[2018-01-08 12:02:38] ...retry after 30 seconds
[2018-01-08 12:02:53] GPU #1: 1794 MHz 3.62 Sol/W 123W 55C FAN 29%
[2018-01-08 12:03:08] Unsupported extranonce size of 13 (12 maxi)
[2018-01-08 12:03:18] stratum_subscribe timed out
[2018-01-08 12:03:18] ...retry after 30 seconds
[2018-01-08 12:03:48] Unsupported extranonce size of 13 (12 maxi)
---

Perhaps the server is having intermittent connectivity issues?
This is the mining software that lost connection to your pool, which typically is outside the control of Awesome Miner. Which pool is it?

That makes sense...

In this case, it is nicehash. I'm in the process of trying out all the supported pools.
patrike (OP)
Legendary
*
Offline

Activity: 3962
Merit: 1100


View Profile WWW
January 08, 2018, 05:16:15 PM
 #3849

Just how accurate are the profits per day on Awesome miner? Watched a whole bunch of Youtube vids where people claim that the profits AM gives is innacurate compared to the real worth of these said coins. Can anybody shed some light on this for me? Cause on certain sites it says I make about $9-11 a day on 24 hours statistic with my GTX 1080Ti but I'm not seeing it. Thanks.

Plus what would you guys suggest to put by statistics: Current or 24 hours?
Please see this guide that explains how the profit calculations are used and what can make them inaccurate:
http://awesomeminer.com/help/coinstats.aspx

In short, Awesome Miner is never making up any numbers, but simply uses what the pools are reporting in terms of profitability and multiplies this with your hashrate.

Awesome Miner - Complete solution to manage and monitor mining operations of ASIC, GPU and CPU miners
Optimized Antminer firmware - Increased hashrate, improved power efficiency and more features. For S9, T9+, L3+, S17, T17, S19, T19, S21, T21, L7, L9
Up to 200,000 miners | Notifications | Native overclocking | Profit switching | Customizable rules | API | Windows application | Mobile web
roddy_r
Newbie
*
Offline

Activity: 9
Merit: 0


View Profile
January 08, 2018, 05:49:38 PM
 #3850

Hi

I need to implement some rules to handles scenarios when the pools start playing up. I have had two occasions over the last 24hrs where AM stopped mining due to too many attempts to restart which look like it was down to the miner having problems connecting to the pool.

I run Profit switching against Ahash and Zpool and would like to have a rule where if AM hits trouble trying to mine it moves onto the next most profitable coin after so many attempts.

I have had a quick look an cant see any obvious way in the rules interface to invoke this when on profit switching. Am I missing something? is there any online help with writing rules? I had a quick google and couldn't see what I needed.

I have AM Standard Edition.

Many thanks in Advance.
CreamyG31337
Member
**
Offline

Activity: 113
Merit: 10


View Profile
January 08, 2018, 07:01:58 PM
 #3851

cast_xmr seems stable enough recently that you could add it as an option for the profit switching miner and not just as a managed miner. Please update it to the latest 0.81 version too.
Is there any way we can add the negative luck for electroneum, perhaps as a '35% pool fee' like they do on whattomine? I like how you have the profit factor for the built-in online services used for profit switching, but manually defined pools really need something like this too. It could be used to fix electroneum, and other coins with issues such as x17 verge (look how many orphans are found on any pool).

BTC tip jar: bc1qtepyll2c9fkn67wpnhunclw4mf39nc2jx79zdh
soothaa
Hero Member
*****
Offline

Activity: 1151
Merit: 528



View Profile
January 08, 2018, 07:03:32 PM
 #3852

cast_xmr seems stable enough recently that you could add it as an option for the profit switching miner and not just as a managed miner. Please update it to the latest 0.81 version too.
Is there any way we can add the negative luck for electroneum, perhaps as a '35% pool fee' like they do on whattomine? I like how you have the profit factor for the built-in online services used for profit switching, but manually defined pools really need something like this too. It could be used to fix electroneum, and other coins with issues such as x17 verge (look how many orphans are found on any pool).

Double click the coin you want from the coin page and change the "profitability" factor.

Want increased coin support within AwesomeMiner? Try my free plugin to add support for nearly any coin! https://bitcointalk.org/index.php?topic=2979494
Want Masternode income stats within AwesomeMiner? Try my free plugin to add support for them! https://bitcointalk.org/index.php?topic=3047367
CreamyG31337
Member
**
Offline

Activity: 113
Merit: 10


View Profile
January 08, 2018, 08:03:27 PM
 #3853

cast_xmr seems stable enough recently that you could add it as an option for the profit switching miner and not just as a managed miner. Please update it to the latest 0.81 version too.
Is there any way we can add the negative luck for electroneum, perhaps as a '35% pool fee' like they do on whattomine? I like how you have the profit factor for the built-in online services used for profit switching, but manually defined pools really need something like this too. It could be used to fix electroneum, and other coins with issues such as x17 verge (look how many orphans are found on any pool).

Double click the coin you want from the coin page and change the "profitability" factor.

Thanks, that helps a lot. It would still be cool if we could specify fees at the pool level, though. We could use that for other things in addition to the standard pool fee --  like if one suspects a pool of taking an extra cut, or otherwise being inefficient, or if you want to factor in any autoconversion fees, or even some type of bonus.

BTC tip jar: bc1qtepyll2c9fkn67wpnhunclw4mf39nc2jx79zdh
cryptopepe
Newbie
*
Offline

Activity: 19
Merit: 0


View Profile
January 08, 2018, 08:09:10 PM
 #3854

Hi all,

its possible use in AM different versions of ccminer, xmr-stack, etc.? Because they have different hashrate in some algos.

Thank you.
NetWhiz
Newbie
*
Offline

Activity: 49
Merit: 0


View Profile
January 08, 2018, 08:39:00 PM
 #3855

With the latest update, none of my templates will take on remote rigs. I select a new profile to launch different mining software and they keep only starting the same software.

As an example, I was mining Cryptonite. I then want to switch to ETH. Select a different template for the managed miner and apply it. Software shutsdown and new software starts up. However, the "new" software is the exact same software from the previous profile. I have run the "Upgrade Remote Agent" on the remote rigs.

What am I missing or is this a new bug?
NetWhiz
Newbie
*
Offline

Activity: 49
Merit: 0


View Profile
January 08, 2018, 08:45:37 PM
 #3856

I have the Afterburner software and remote server installed on a remote rig (all of them). However, when I reboot the ABRS does not start up. It is located in the same path on every rig and has the same User. There is NO password for each rig though. Is that the issue? How can I fix this for AM to start ABRS like it is supposed to?
MarkR8673
Newbie
*
Offline

Activity: 7
Merit: 0


View Profile
January 08, 2018, 09:47:48 PM
 #3857

I have the Afterburner software and remote server installed on a remote rig (all of them). However, when I reboot the ABRS does not start up. It is located in the same path on every rig and has the same User. There is NO password for each rig though. Is that the issue? How can I fix this for AM to start ABRS like it is supposed to?

I have the same path, user and password setup on both of my rigs and am having the same issue.

Please fix.  Thanks!!

manvsrice
Newbie
*
Offline

Activity: 16
Merit: 0


View Profile
January 08, 2018, 10:38:47 PM
 #3858

Hello I have been using Awesome miner for some weeks now and really like it! Smiley However, I have stumbled into a small problem, I find that the newest version of excavator is not supported by the managed software called "Excavator (BETA) 1.1.4a (nVidia GPU). The command arguments have probably changed. Therefore I can not run it as a profit switcher miner? This miner seems to be really good at a few algos now, I understand they have some kind of eula so you cannot redistribute it, but you could still update its API? Or would it be possible to add so one can add any miner and make it a profite miner?
moppidoo
Jr. Member
*
Offline

Activity: 348
Merit: 5


View Profile
January 08, 2018, 10:49:56 PM
 #3859

Hi all,

its possible use in AM different versions of ccminer, xmr-stack, etc.? Because they have different hashrate in some algos.

Thank you.

AM has the function built-in, please refer to
http://www.awesomeminer.com/help/managedsoftware.aspx

Once added please remember to disable predefined software on the same algorithm you wish to mine on your user defined software, or if not disabled, you have to manually order them at the individual profit profiles for your software to take precedence when AM determines which version to launch. Also just remember to re-benchmark once the software is setup, some might not bench via the benchmark function due to small incompatibilities of the forks and you'll have to manually input the hashrate reported when manually launching the software. If using managed profit miner, simply implode the hashrate on the algo you want to bench manually so it is on top of the calculated profit list in Online Services/Coins tab.

moppidoo
Jr. Member
*
Offline

Activity: 348
Merit: 5


View Profile
January 08, 2018, 11:09:54 PM
 #3860

Just how accurate are the profits per day on Awesome miner? Watched a whole bunch of Youtube vids where people claim that the profits AM gives is innacurate compared to the real worth of these said coins. Can anybody shed some light on this for me? Cause on certain sites it says I make about $9-11 a day on 24 hours statistic with my GTX 1080Ti but I'm not seeing it. Thanks.

Plus what would you guys suggest to put by statistics: Current or 24 hours?

like patrike said, AM only takes in whatever pool/whattomine/coinwarz feeds it or unless it is configured manually then presents the number as an estimation. If you accurately benchmarked every algo your device support say for several minutes each algo, you should be good.

statistics, 24 hour average is probably best since it reduced the sudden spiking factor...to think that for average people's hardware, you mine and until you get your mined share confirmed or cleared...it will take several hours at least, some even days, so you're never likely going to see a similar return/hash at the time you mined the coin and by the time you have the coin ready for exchange/exchanged. What is more with profit switching is that it IS prone to spike which inflates the actual revenue you'd get, when whattomine feeds current market price into AM and it decides to mine the coin, the particular coin would've already being pumped, likely more than halfway in its bull run or even more likely peaked...so by the time you get the coin...you are probably going to get the dumped rate, or at least normalized...

thus, if using current, expect frequent pool/algo switching and discount the peak rate by say up to 50% of maximum reported revenue.

if using 24 hour average, less switching and you probably only looking at discounting the maximum reported revenue by 20% or less...it's pretty accurate in my experience...and think about the other fees involved in exchanging automatically or manually.
Pages: « 1 ... 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 [193] 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 ... 652 »
  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!