Search content
Sort by

Showing 3 of 3 results by xinomahc
Post
Topic
Board Announcements (Altcoins)
[ANN] CROCOcoin [Ghostrider / Masternode]
by
xinomahc
on 26/12/2022, 16:44:03 UTC


About:

CROCOcoin is an open source community-owned electronic coin designed to conduct transactions in game projects such as PvP over the network. 51% attack protection guarantees you a stablecoin that will expand and evolve thanks to the community as well as our innovations. Our ecosystem will grow with a library of quality online PvP games where you can earn or multiply your CROCO.


Coinomic:

Total Supply: 21 Billion
Ticker: CROCO
Algorithm: GhostRider
Block Reward: 5000 CROCO
Reward Comissions: 2%
51% Protection: Yes


Link:

WebSite:
(in developing)

Windows Wallet:
https://github.com/CROCO-Coin/CROCO-Coin/releases/download/CROCO-Coin/CROCOcoin.zip



Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 2.6: fastest Ethereum/Ethash miner with lowest devfee (Windows)
by
xinomahc
on 20/02/2018, 09:30:50 UTC

any particular reason i cant seen to pull stats from the miner's api?

my code sample:

Code:
using (var socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
            {
                socket.Connect("localhost", 3333);
                socket.Send(Encoding.ASCII.GetBytes("{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\"}"));
                socket.Receive(receiveBytes, receiveBytes.Length, SocketFlags.None);
            }
            var resp = Encoding.ASCII.GetString(receiveBytes);

my code works flawlessly for claymore but fails for phoenix's api... socket.Receive just hangs forever.. any tips?
Post
Topic
Board Mining (Altcoins)
Re: PhoenixMiner 2.6: fastest Ethereum/Ethash miner with lowest devfee (Windows)
by
xinomahc
on 18/02/2018, 07:35:06 UTC
...

Hi, im trying to make a simple script to get stats from Phoenix's API... but unlike claymore or others... When i make the SAME TCP CALL to Pheonix as I do on other miners... the call just hangs forever... and does not come back with any info... whats up with that?


Code:
using (var socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp))
            {
                socket.Connect("localhost", 3333);
                socket.Send(Encoding.ASCII.GetBytes("{\"id\":0,\"jsonrpc\":\"2.0\",\"method\":\"miner_getstat1\"}"));
                socket.Receive(receiveBytes, receiveBytes.Length, SocketFlags.None);
            }
            var resp = Encoding.ASCII.GetString(receiveBytes);

My small sample to pull claymore's stats

... in Phoenix the socket.Receive just hangs forever

Regards and thanks for the miner software Smiley