Bitcoin Forum
June 27, 2024, 05:57:13 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 »
21  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ZERGPOOL.com - NEW!Multialgo, autoexchange, 0% fee, 160+ coins on: February 27, 2018, 01:40:06 PM
zergpool cheat?
mining two days trial
http://www.zergpool.com/?address=1H9L7JPEWgoik4kuemNCawtUWznLuQGuqF

BTC 0.00063038 yesterday
BTC 0.00043038 today
BTC 0.00043032 this moment

I do not die anymore

it goes from hour to hour

Sorry for you experience, but there is certain drop in prices for all currencies you mined, like TIN. DNR at cryptopia once it released their deposits.
Check please
https://stocks.exchange/trade/TIN/BTC
https://www.cryptopia.co.nz/Exchange/?market=DNR_BTC

Also you pending never reached more that 0.00045. Not sure where 0.00063 came from in your example


the first day I had 3.5 usd- mining again the next day for the fall I 3.7, what I mined the second day.if I mining for a value of BTC 0.2 must be 0.2 not 0.1
22  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ZERGPOOL.com - NEW!Multialgo, autoexchange, 0% fee, 160+ coins on: February 27, 2018, 01:11:15 PM
zergpool cheat?
mining two days trial
http://www.zergpool.com/?address=1H9L7JPEWgoik4kuemNCawtUWznLuQGuqF

BTC 0.00063038 yesterday
BTC 0.00043038 today
BTC 0.00043032 this moment

I do not die anymore

it goes from hour to hour
23  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: February 27, 2018, 10:46:01 AM
zergpool cheat?
mining two days trial


BTC 0.00063038 yesterday
BTC 0.00043038 today

I do not die anymore
24  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: February 13, 2018, 03:14:39 PM





Hello Spinter... a couple of questions...

On this line you have it hardcoded to the URL for the coinmarketcaps ALQO API.

Uri uri = new Uri(@"https://api.coinmarketcap.com/v1/ticker/alqo/");

Shouldn't this be using the Str2 like this:

Uri uri = new Uri(@Str2);


Also, I tried to duplicate your code for Bulwark, but I never get any returns.  Is there something wrong with this below?




that's right




Sorry error

Uri uri = new Uri(@"https://api.coinmarketcap.com/v1/ticker/alqo/");   to   Uri uri = new Uri(@Str2);

and

string Str2 = "https://api.coinmarketcap.com/v1/ticker/alqo/";











Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Request library
using System.Net;
using System.IO;


public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;
public bool Execute(List<IMinerBase> list)
{

try
{
 



//--------------------------------------------------
string Str_name = "ALQO";//Name Coin
double Str_Reward = 150; //Reward Coin
string Str1 = this.getdati("https://explorer.alqo.org/api/difficulty");//link difficulty
string Str2 = "https://api.coinmarketcap.com/v1/ticker/alqo/";//link coinmarketcap.com
//--------------------------------------------------


//MessageBox.Show(Str1);

Str1 = Str1.Replace(".", ",");
double dif = Convert.ToDouble(Str1);

Uri uri = new Uri(@Str2);
WebRequest webRequest = WebRequest.Create(uri);
WebResponse response = webRequest.GetResponse();
StreamReader streamReader = new StreamReader(response.GetResponseStream());
String responseData = streamReader.ReadToEnd();





string myString = responseData;
string[] subStrings = myString.Split(',');
string v = "";
foreach (string str in subStrings)
{
 if (str.Contains("price_btc") == true)
            {    
             v = str.Replace(@"""", "");
             v = v.Replace("price_btc", "");
             v = v.Replace(" ", "");
             v = v.Replace(":", "");
             v = v.Replace(".", ",");
            }
 }



double Price = Convert.ToDouble(v);
Context.CoinStat.SetProperties(Str_name, dif, Str_Reward, Price);
 
 
//----------------Exception------------------
 }
catch(Exception exception)
{
  
}
//--------------End--Exception----------------
return true;
}

//--------------------------------------------
protected string getdati(string url)
        {
            try
            {
                string rt;

                WebRequest request = WebRequest.Create(url);

                WebResponse response = request.GetResponse();

                Stream dataStream = response.GetResponseStream();

                StreamReader reader = new StreamReader(dataStream);

                rt = reader.ReadToEnd();

                Console.WriteLine(rt);

                reader.Close();
                response.Close();

                return rt;
            }

            catch(Exception ex)
            {
                return "Error: " + ex.Message;
            }
        }      
}//end













For Bulwark and all Coins to  http://whattomine.com/calculators
 Add to Coin & profit /statistics  

  
Additionals Json URL's

Add this line

http://whattomine.com/coins/224.json
25  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: February 11, 2018, 08:31:24 PM
AM good service but it will be more better  Grin.
Today is more new coin which isn't in coinwars or whattomine. I add new coin manually, but there is only static diff which I need change manually too.
All coins have API with dynamic diff changes. It is possible get dynamic diff via this
https://explorer.alqo.org/api/difficulty

Please add this features to coin properties.


Options

1)Coin Profit
ADD NEW  Coin SAMPLE  ALQO
Name ALQO
Short name ALQO
Algorithm Quark
AND OK



2)Rules
ADD new Rules

Add new triggers Time
Tiggers every   0 hour 10 minute 0 seconds
AND OK

Actions
ADD new Actions C# Script


Paste this code and ok


OK OK OK

every 10 minutes updates the price and the difficulty
I can not use bees would be much simpler but I can not I asked for help but no one answered me.
If you have other coins the important thing they are in coinmarketcap.com will change the data

//--------------------Change----------------------
   string Str_name = "ALQO";//Name Coin sample   = "ALQO"
   double Str_Reward = 150; //Reward Coin sample = 10
   string Str1 = this.getdati("https://explorer.alqo.org/api/difficulty");//link difficulty
   string Str2 = this.getdati("https://api.coinmarketcap.com/v1/ticker/alqo/");//link coinmarketcap.com
//--------------------------------------------------



Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Request library
using System.Net;
using System.IO;


public class ActionScript
{
private ContextProvider Context = ScriptManager.Context;
public bool Execute(List<IMinerBase> list)
{

try
{
 



//--------------------------------------------------
string Str_name = "ALQO";//Name Coin
double Str_Reward = 150; //Reward Coin
string Str1 = this.getdati("https://explorer.alqo.org/api/difficulty");//link difficulty
string Str2 = "https://api.coinmarketcap.com/v1/ticker/alqo/";//link coinmarketcap.com
//--------------------------------------------------


//MessageBox.Show(Str1);

Str1 = Str1.Replace(".", ",");
double dif = Convert.ToDouble(Str1);

Uri uri = new Uri(@Str2);
WebRequest webRequest = WebRequest.Create(uri);
WebResponse response = webRequest.GetResponse();
StreamReader streamReader = new StreamReader(response.GetResponseStream());
String responseData = streamReader.ReadToEnd();





string myString = responseData;
string[] subStrings = myString.Split(',');
string v = "";
foreach (string str in subStrings)
{
 if (str.Contains("price_btc") == true)
            {   
             v = str.Replace(@"""", "");
             v = v.Replace("price_btc", "");
             v = v.Replace(" ", "");
             v = v.Replace(":", "");
             v = v.Replace(".", ",");
            }
 }



double Price = Convert.ToDouble(v);
Context.CoinStat.SetProperties(Str_name, dif, Str_Reward, Price);
 
 
//----------------Exception------------------
 }
catch(Exception exception)
{
   
}
//--------------End--Exception----------------
return true;
}

//--------------------------------------------
protected string getdati(string url)
        {
            try
            {
                string rt;

                WebRequest request = WebRequest.Create(url);

                WebResponse response = request.GetResponse();

                Stream dataStream = response.GetResponseStream();

                StreamReader reader = new StreamReader(dataStream);

                rt = reader.ReadToEnd();

                Console.WriteLine(rt);

                reader.Close();
                response.Close();

                return rt;
            }

            catch(Exception ex)
            {
                return "Error: " + ex.Message;
            }
        }       
}//end





26  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: February 09, 2018, 09:28:50 AM
I come from visualbasic.net I need help. Is an example of C # Script API possible for us to try and work?
thank you
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Guncoin(GUN) - New GUN V1.4 Release - Moving Forward Again on: February 09, 2018, 08:42:27 AM
Is it possible to undermine guncoin SOLO?
how can I do?
thank you
28  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] [POOL] MCIP EU - NEW Pool - 0.4% Mining Fees - EU (FR) on: January 22, 2018, 04:30:03 PM
I wanted to know the reason for the closure seems to me a very good pool. I'm sorry I can not use it again
Hello,

Ty for your msg.

A lot of problem with yiimp.
The payments which do not leave or then which are blocked ... it is hell to manage.

I made this pool to amuse me but I have more problem than the funny.
I do not want people to believe that I steal corners because of the errors of yiimp, so I prefer to stop him and  keep the pool for my tests.


++
MCIP
I like your thinking, you're an honest person, I hope one day to still undermine your pool, I've gotten a guncoin for a couple of days and I was stunned by my and your work thanks.I could help you do it instantly.
29  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN] [POOL] MCIP EU - NEW Pool - 0.4% Mining Fees - EU (FR) on: January 21, 2018, 09:36:34 PM
I wanted to know the reason for the closure seems to me a very good pool. I'm sorry I can not use it again
30  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: January 19, 2018, 10:04:07 PM

Awesome Miner development version 4.3.3 (preview of 4.4)


- Awesome Miner API method to set coin properties, for setting profitability of custom coins from external applications



excuse my English
How can I use bees to set a non-existent coin in the awesomeminer?
Where can I find a guide?
thank you

Can you help me? Use it as I can to thank you
31  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: January 17, 2018, 09:16:29 PM
Hi,

i need support. When I use ZPOOL I get this error message:

http://prntscr.com/i1sb1t

How can I fix it?

thanks!

CUDA VERSION 7.5

Amazing thanks!!!!!!

Will this lower the perfromances with the other engines/algo?

im use Ccminer 8.18-KlausT CUDA9.1
32  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: January 17, 2018, 05:44:04 PM
Hi,

i need support. When I use ZPOOL I get this error message:

http://prntscr.com/i1sb1t

How can I fix it?

thanks!

CUDA VERSION 7.5
33  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: January 15, 2018, 07:43:39 PM

Awesome Miner development version 4.3.3 (preview of 4.4)


- Awesome Miner API method to set coin properties, for setting profitability of custom coins from external applications



excuse my English
How can I use bees to set a non-existent coin in the awesomeminer?
Where can I find a guide?
thank you
34  Alternate cryptocurrencies / Mining (Altcoins) / Re: [Awesome Miner]- Powerful Windows GUI to manage and monitor up to 5000 miners on: January 09, 2018, 01:16:20 PM
I'm trying to use awesomeminer and a great job
request:
additional coins would be nice to be able to insert a link from where to find, for example, the currency and difficulty creating a file or an external link, so the coins that are not reachable could be used even if they are not yet implemented.
35  Local / Mining (Italiano) / Re: 600 Cores - veriumreserve! on: December 06, 2017, 12:31:16 PM

Ho un hashrate minore o uguale 2000 h/m --> vai in solo
Ho un hashrate tra i 5000-7000 h/m --> potrebbe essere conveniente in pool
Ho un hashrate maggiore di 10,000 h/m --> non credi sarebbe da idioti andare in pool? Smiley
Interessante il Mining con CPU domanda come si imposta configura per minare in solo ?
Si puo fare anche da Windows installando Verium Vault
Forse ho un server Blade dismesso e in caso con ESXI potrei fare una machcina Win dove essegnare tutti i processori delle varie lame
ma vorrei capire la config soft per minare in solo dato che ho capito che conviene questa modalita Cheesy

Grazie


https://docs.google.com/document/d/19aLLX7VmwZWFSLou7nf3mcKcAGWn0emqB9noS2boEM0/edit
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [KRB] Karbo (Ҝ) Карбованець - Cryptonote / Anon on: November 30, 2017, 08:13:22 PM
Sorry for Solo Mining 4 pcs in the same Karbon CLI wallet and possible?
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRM] Verium PoWT | CPU mining | scrypt² | Scaling | New Roadmap Released on: November 26, 2017, 09:45:29 PM
Could someone please point me in the right direction on setting up solo mining?
Ive seen a verium.conf file mentioned but cant seem to locate this file, Is it something I manually create and add the RPC lines?

Thanks in advance

Linux or Windows?


https://docs.google.com/document/d/19aLLX7VmwZWFSLou7nf3mcKcAGWn0emqB9noS2boEM0/edit

38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRM] Verium PoWT | CPU mining | scrypt² | Scaling | New Roadmap Released on: November 26, 2017, 09:53:11 AM
Can anyone explain this and how to avoid it in the future? This happened on vrm2.poolinat0r.com mining pool:

Blocks from 11/22/2017 21:31:52 till today are all orphaned, hashrate wasted for 2 days.

https://i.imgur.com/hGWRKtf.png

even in my small cpu I lost almost a VRM. do you have to trust?
what kind of problem?

I switched off of poolinat0r... I always had to restart miner after a while or it would be all orphans, something must be wrong on their backend.

Poolium is great (registration is open again) even after days of my miner running I only have 1 orphan out of 4400  Cool

your hashrate?


an odroid and an I5 2310 h / m 380 and h / m 1000
39  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRM] Verium PoWT | CPU mining | scrypt² | Scaling | New Roadmap Released on: November 25, 2017, 01:21:21 PM
Can anyone explain this and how to avoid it in the future? This happened on vrm2.poolinat0r.com mining pool:

Blocks from 11/22/2017 21:31:52 till today are all orphaned, hashrate wasted for 2 days.

https://i.imgur.com/hGWRKtf.png

even in my small cpu I lost almost a VRM. do you have to trust?
what kind of problem?
40  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][VRM] Verium PoWT | CPU mining | scrypt² | Scaling | New Roadmap Released on: November 16, 2017, 02:12:32 PM
Verium Vault Solo Mining Can Decrease Diff

[2017-11-16 18:28:11] scrypt² block 146869, diff 0.01
[2017-11-16 18:28:18] Total: 1029.75 H/m

if possible as I do!
thank you
Pages: « 1 [2] 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!