Search content
Sort by

Showing 5 of 5 results by nvmaxx
Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 3.0c: fastest Ethereum/Ethash miner with lowest devfee (Windows)
by
nvmaxx
on 14/06/2018, 23:01:33 UTC
StreaMex,

You need to add a return or newline at the end of your code.

here is an example of my code:

Code:
string get_menu_request = "{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\",\"psw\":\"" + _password + "\"}" + Environment.NewLine;
NetworkStream serverStream = clientSocket.GetStream();
byte[] outStream = System.Text.Encoding.ASCII.GetBytes(get_menu_request);
serverStream.Write(outStream, 0, outStream.Length);
serverStream.Flush();
Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 2.9e: fastest Ethereum/Ethash miner with lowest devfee (Windows)
by
nvmaxx
on 17/05/2018, 03:43:07 UTC
Trying to get JsonRPC responses from Phoenix, having some serious issues, If someone could tell me what I did wrong on this I would greatly appreciate it, this code works perfectly fine for Claymore's but for PhoenixMiner it doesnt do anything.

Code:
try
{
var clientSocket = new System.Net.Sockets.TcpClient();

if (clientSocket.ConnectAsync("127.0.0.1", 3337).Wait(5000))
{
string get_menu_request = "{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\"}\n";
NetworkStream serverStream = clientSocket.GetStream();
byte[] outStream = System.Text.Encoding.ASCII.GetBytes(get_menu_request);
serverStream.Write(outStream, 0, outStream.Length);
serverStream.Flush();

byte[] inStream = new byte[clientSocket.ReceiveBufferSize];
serverStream.Read(inStream, 0, (int)clientSocket.ReceiveBufferSize);
string _returndata = System.Text.Encoding.ASCII.GetString(inStream);

if (_returndata.Length == 0)
{
throw new Exception("Invalid data");
}

Console.WriteLine(_returndata);


}
else
{

}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.WriteLine(ex.StackTrace);
stats.ex = ex;
logger.LogWrite("Host socket exception: " + ex.ToString());
}


Appreciate the help.
Post
Topic
Board Mining (Altcoins)
Re: Claymore's miner ETH fee removed (Win 64bit only)
by
nvmaxx
on 16/10/2017, 22:06:05 UTC
decided to test this, ran on a machine that was doing 38Mh/sec (no wallet access) ran it for 1 hour exactly, what I noticed is that nanopool reported my rig online and reported hashrate of 38.1Mh/sec though actual now stats read as 0.0Mh/sec and my actual shares dropped, so I am pretty sure he is actually stealing your whole mining power to his own wallet.
Post
Topic
Board Mining (Altcoins)
Re: GPUPower - see how much power your gpus are using * nvidia only!
by
nvmaxx
on 31/07/2017, 10:44:22 UTC
BEFORE any new users click that link I would wait for some old timers to verify that link's contents. Would be great to catch a nice wallet trojan just in time for the hard fork.

No offense to the OP, but posts from a brand new user offering a new program should always be highly suspect until proven otherwise. Do your due diligence.

100% agree as I said before the mods are welcome to look at the source code.  I would be suspicious of newbies as well.
Post
Topic
Board Mining (Altcoins)
GPUPower - see how much power your gpus are using * nvidia only!
by
nvmaxx
on 31/07/2017, 03:38:51 UTC
Created a tool to read the total wattage use from the GPU's only, also can calculate cost per day and per month on the video card usage.

No it does not work on AMD, Nvidia only! it only takes into account the gpu's not motherboard and processor.  best option to find out what
your total watt usage is, is to get a plug in meter, though this tool is just a good estimation for those trying to see how much their GPU's
will take from the PSU as well.

This uses Nvidia's SMI utility that is it! nothing more nothing less, does not connect to anything internet wise or other application wise.
It reads the average watt usage per card and poll's every 3 seconds.

if a mod wants to see the source code I can provide this, just message me and I will make it available.

I do plan on adding to this tool more features in the future so I would ask the mods to keep it confidential as well.


Picture of the tool :
http://i.imgur.com/EORU2cI.jpg


Link to download