Author

Topic: [Awesome Miner] - Powerful Windows GUI to manage and monitor up to 200000 miners - page 257. (Read 703547 times)

legendary
Activity: 3346
Merit: 1094
really digging Awesome Miner, one small enhancement request here... but can you move the restart and reboot computer options so they're not so close together?
Thanks for your nice feedback.

You should get a dialog asking if you really want to reboot - to prevent clicking the wrong button and reboot by mistake.
legendary
Activity: 3346
Merit: 1094
Very nice, thank you. I run a small farm of Innosillicon A9 Zmasters so if you could do the same for them someday it would be nice.

I would also like to be able to see the same information as I do when I am on the NiceHash website, total profits, estimated profits, etc.
Thanks for your suggestions.

For Nicehash, Awesome Miner can display the currently estimated profit when mining (in the Coins column) while mining. Make sure you right click on the miner and select Define Pool Coin and then "Unspecified Equihash".

You can also see the balance of your Nicehash account using the Pool Balance feature, configurable in the Options dialog, Balance section.
https://support.awesomeminer.com/support/solutions/articles/35000086032-pool-balance
newbie
Activity: 107
Merit: 0
WildRig Multi 0.12.8
CryptoDredge 0.10.0
JCE Cryptonote 0.33 CPU +GPU miner
newbie
Activity: 11
Merit: 0
Loving the pro version. Would however like to see better support for Dayun Zig Z1 and also like to see Zjazz AMD for Suqa. Can't get Zjazz AMD to work right using user defined mining software....
newbie
Activity: 7
Merit: 0
Awesome Miner Version 5.7.6 ( Development preview of 5.8 )
 
  - Block Explorer configuration for wallet balance to allow balance unit of 1E-7 and 1E-24 to support a wider range of number formats
  

Thanks for update Patrike. But i think there's still something wrong with balance. For BCD, i set unit of 1E-7. When clicking on test button, i get the correct amount. But in balance tab, amount still appear with a unit of 1E-8.
Can you look at this ?
Sorry - I will correct that. Thanks for pointing out this issue.


Adding a new BCD balance doesn't populate with suggested block explorer API URL any more? How to add BCD balance please?
newbie
Activity: 36
Merit: 0
really digging Awesome Miner, one small enhancement request here... but can you move the restart and reboot computer options so they're not so close together?
member
Activity: 129
Merit: 17
Very nice, thank you. I run a small farm of Innosillicon A9 Zmasters so if you could do the same for them someday it would be nice.

I would also like to be able to see the same information as I do when I am on the NiceHash website, total profits, estimated profits, etc.
legendary
Activity: 3346
Merit: 1094
I love AM but wish they would develop more options for ASICs. Most of the options are geared toward CPU/GPU rigs.
I'm very open to feature suggestions and feedback on how to make the ASIC mining features better. I do have a number of requests for making Antminer firmware updates via Awesome Miner, so that's one example of a feature planned for future versions of Awesome Miner.

It's true there are a few more features related to GPU mining but that's because it's more complex and requires more configuration. ASIC mining is typically more straight forward and requires less configuration to get going.
legendary
Activity: 3346
Merit: 1094
Patrike, dasboard need to add an option to change graph limits for each miner hashrate and power usage independently (yes, need to add power usage). Usually the area near zero is not useful. If your miner hasrate changes from 120 to 160 MH/s it is better to cut the 0-100 MH/s area and see the more detailed statistics for 100-180 MH/s area. If 1st miner speed is H/s and the second miner speed is MH/s the dashboard screen becomes fully useless for the first miner. That's why need independent limits for each miner. Sometimes you can not understand the real power usage without seeing statistics.
Thanks for your comments. I do know that the dashboard and graph features are a bit limited at the moment. The idea is to make improvements in this area later on and your requests have been noted as well.
legendary
Activity: 3346
Merit: 1094
Patrike,

Small issue that I've discovered...

All algo's have been benchmarked with one or many GPU's and I have them all selected in Options > Algorithms.

Now here is the issue, if I deselect one or more and then at a later date re-enable them in Options > Algorithms, the benchmark data is lost / missing in the Benchmark box and I have to redo the benchmark for those algos again.

Can you fix that in the next update please so that the data does not get erased when these are disabled in Options > Algorithms, thanks.
Thanks for reporting this issue. I will take a look at this case. For the moment, you can workaround the issue by doing the disable on the algorithm in the Profit Profile instead.
legendary
Activity: 3346
Merit: 1094
could you please add selection support for the zpool South East Asia  STRATUM SERVERS and blockmaster European servers (Please access these by using stratum+tcp://eu.blockmasters.co[:port] ) in the next release?

thanks
Thanks for your suggestion. I will add zpool SEA to the next release.

BlockMasters EU is already included in the latest development release.
legendary
Activity: 3346
Merit: 1094
found a bug, @patrike.

automatic download of custom managed software does not work.
I can create a custom software and add all the download links, folder & executable names and so on to its properties. but then I can't enable that software in any of my profit profiles. when trying to save a profile with new managed software enabled, AM tells me, that I should click the "Configure" button and specify the path. basically it's locked with "Specify existing installation path" option selected, and I can't choose "automatic download" option at all.
I will take a look at this one - thanks for reporting it.

I have another feature in the pipeline where you will be able to use a C# script as a rule action, to set a time limited wallet/worker name on a profit profile. You will be able to run the rule on a schedule you define.
any updates on this?
please make me happy Smiley

thank you for your work.
This is implemented already, but not yet documented as it's quite low-level.

An example of how it can be used is the following C# script action, but I will have to provide some documentation for it before it's really useful
Code:
using AwesomeMiner.Components.ProfitSwitching.Pools;

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

public bool Execute(List list)
{
// Specify duration for how long the changes should be used
const int DurationMinutes = 45;

// Pool configuration
SwitchingProfile swProfile = new SwitchingProfile();
swProfile.EnabledPools = OnlineServiceType.MiningPoolHub;
swProfile.MiningPoolHubWorker = "newuser.1";

Context.ProfitSwitcher.SetTemporaryProfitProfileSettings(list, DurationMinutes, swProfile);
return true;
}

}
hello patrike,
this script is broken in two last releases. every time I got an empty miner worker name after running it.
There is a change in the latest development releses for this.

Please remove this line
Code:
swProfile.MiningPoolHubWorker = "newuser.1";

You can replace it with lines like below. You always need the first "Clear" line, but then you can have one or more additional lines for each pool.
Code:
swProfile.PoolProviderList.Clear();
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.MiningPoolHub, "newuser.1"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.BlockMasters, "somewallet"));
swProfile.PoolProviderList.Add(new PredefinedPoolProvider(OnlineServiceType.AHashPool, "somewallet"));
legendary
Activity: 3346
Merit: 1094
  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
I can not find this option
Maybe the description in the release notes wasn't too good here. It's not a new setting, but it's refering to when using the existing setting for CoinCalculators.io Exchange Filtering. When enabled, I received feedback that is was filtering away too much coin data where coins didn't have any exchange at all.
member
Activity: 129
Merit: 17
I love AM but wish they would develop more options for ASICs. Most of the options are geared toward CPU/GPU rigs.
jr. member
Activity: 756
Merit: 2
@PATRIKE I would like to remind you that you can not change the OC on the RTX cards using Awesome Miner yet. I look forward to this update.
newbie
Activity: 17
Merit: 0
Patrike, dasboard need to add an option to change graph limits for each miner hashrate and power usage independently (yes, need to add power usage). Usually the area near zero is not useful. If your miner hasrate changes from 120 to 160 MH/s it is better to cut the 0-100 MH/s area and see the more detailed statistics for 100-180 MH/s area. If 1st miner speed is H/s and the second miner speed is MH/s the dashboard screen becomes fully useless for the first miner. That's why need independent limits for each miner. Sometimes you can not understand the real power usage without seeing statistics.
full member
Activity: 270
Merit: 115
Patrike,

Small issue that I've discovered...

All algo's have been benchmarked with one or many GPU's and I have them all selected in Options > Algorithms.

Now here is the issue, if I deselect one or more and then at a later date re-enable them in Options > Algorithms, the benchmark data is lost / missing in the Benchmark box and I have to redo the benchmark for those algos again.

Can you fix that in the next update please so that the data does not get erased when these are disabled in Options > Algorithms, thanks.

newbie
Activity: 18
Merit: 0
could you please add selection support for the zpool South East Asia  STRATUM SERVERS and blockmaster European servers (Please access these by using stratum+tcp://eu.blockmasters.co[:port] ) in the next release?

thanks
jr. member
Activity: 238
Merit: 3
found a bug, @patrike.

automatic download of custom managed software does not work.
I can create a custom software and add all the download links, folder & executable names and so on to its properties. but then I can't enable that software in any of my profit profiles. when trying to save a profile with new managed software enabled, AM tells me, that I should click the "Configure" button and specify the path. basically it's locked with "Specify existing installation path" option selected, and I can't choose "automatic download" option at all.
I will take a look at this one - thanks for reporting it.

I have another feature in the pipeline where you will be able to use a C# script as a rule action, to set a time limited wallet/worker name on a profit profile. You will be able to run the rule on a schedule you define.
any updates on this?
please make me happy Smiley

thank you for your work.
This is implemented already, but not yet documented as it's quite low-level.

An example of how it can be used is the following C# script action, but I will have to provide some documentation for it before it's really useful
Code:
using AwesomeMiner.Components.ProfitSwitching.Pools;

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

public bool Execute(List list)
{
// Specify duration for how long the changes should be used
const int DurationMinutes = 45;

// Pool configuration
SwitchingProfile swProfile = new SwitchingProfile();
swProfile.EnabledPools = OnlineServiceType.MiningPoolHub;
swProfile.MiningPoolHubWorker = "newuser.1";

Context.ProfitSwitcher.SetTemporaryProfitProfileSettings(list, DurationMinutes, swProfile);
return true;
}

}
hello patrike,
this script is broken in two last releases. every time I got an empty miner worker name after running it.
jr. member
Activity: 756
Merit: 2
Hi Patrike,

i think there's a big problem with PHI2 algo, profit switching doesn't work,
and "phi2 pool Block Masters" there's on tab "Online Services", but
there isn't in "View Detailts - Profit Switching".

P.S. I'm using Teamredminer!

Bye
Awesome Miner is automatically showing all new algorithms on the Online Services tab, but doesn't automatically add it as a pool to the profit switcher (see Options dialog, Online Services) until I include it in an update.

This implementation will soon change where Awesome Miner automatically will make new pools (from the predefined yiimp-based pools) available without having to update to a later version.

Edit: I just checked and BlockMasters Phi2 should be in the list already. Is Phi2 selected in the Profit Profile you are using? Do you have any mining software that supports Phi2 enabled in the Profit Profile?

Hi Patrike,

i don't know why sometimes the profit switching doesn't work, but if i restart the miner, AwesomeMiner choose the right algo/coin to mine, i have only problem with phi2 algo.

This is a screenshot of View Details

https://drive.google.com/file/d/1Sxiq8hCGlgi48Sgo-0ODU-AoesdWqL2Z/view?usp=sharing

Thanks
I wonder if this could related to the Threshold setting not working as it should. Your 5% limit should have been passed in this case and a pool change should have been made. Do you get the same issue if you disable the Threshold feature?

Next time this happens, could you please send me your log file by mail and let me know the time of the issue - together with a good screenshot like the one your provided here? Thanks!

Mail to [email protected] with new screenshot and log file.

Thanks
Thanks for sharing the logs. I've implemented a correction for this scenario with TeamRedMiner.


  - CoinCalculators.io setting for filtering of exchanges will still include coin values for coins without an exchange
I can not find this option
Jump to: