Search content
Sort by

Showing 20 of 20 results by carlosdelagarza
Post
Topic
Board Beginners & Help
Topic OP
New bitcoins are mined?
by
carlosdelagarza
on 02/07/2017, 17:59:55 UTC
When the circulating supply increases, we can say "new bitcoins were mined"?


To have it clear, new bitcoins are created or we "discover/found" it?
Post
Topic
Board Mining (Altcoins)
Re: sgminer v5.6.1 not mining on AMD GPU
by
carlosdelagarza
on 03/06/2017, 04:33:38 UTC
I downgraded to 13.12 but I still can't mine, I tried with a lot of versions.
Post
Topic
Board Mining (Altcoins)
Topic OP
sgminer v5.6.1 not mining on AMD GPU
by
carlosdelagarza
on 02/06/2017, 18:03:05 UTC
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.
http://imgur.com/a/K86jY

Screenshot
http://imgur.com/a/K86jY

I noticed that WU is 0.000/m all time, It was on 0.05 before.

I'm using an AMD Radeon R7 Series

How I can fix it?
Post
Topic
Board Mining (Altcoins)
Topic OP
sgminer v5.6.1 not mining on AMD GPU
by
carlosdelagarza
on 02/06/2017, 17:55:18 UTC
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.
http://imgur.com/a/K86jY

Screenshot
http://imgur.com/a/K86jY

I noticed that WU is 0.000/m all time, It was on 0.05 before.

I'm using an AMD Radeon R7 Series

How I can fix it?





Post
Topic
Board Project Development
Re: JSON RPC API call from webpage
by
carlosdelagarza
on 29/01/2017, 06:51:58 UTC
You need to log the actual error, probably a setting in PHP so you see what the 'internal error' is, not just that one exists. From there it'll make it a lot easier to find what's going wrong.

The error says

Quote
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.
Post
Topic
Board Project Development
Re: JSON RPC API call from webpage
by
carlosdelagarza
on 29/01/2017, 06:09:23 UTC
Post
Topic
Board Project Development
Topic OP
JSON RPC API call from webpage
by
carlosdelagarza
on 28/01/2017, 05:54:46 UTC
Hello, I want to make API calls to my Bitcoin Core wallet from my webpage but when I try to connect it gives me Internal Server Error

I'm using easybitcoin.php JSON from https://github.com/aceat64/EasyBitcoin-PHP

I'm trying with this JSON RPC call:

Code:
require_once('easybitcoin.php');
        
$bitcoin = new Bitcoin('myusername','mypassword','myip','8332');
        
$bitcoin->getinfo();
?>


My bitcoin.conf file has:

Code:
listen=1
maxconnections=15
server=1
daemon=1
rpcuser=myusername
rpcpassword=mypassword
rpcclienttimeout=60
rpcport=8332
rpcallowip=0.0.0.0/0 (Before I put my IP address here but it didn't solve too)

When I use bitcoin-cli.exe client to send commands to my Bitcoin Core server via 127.0.0.1 (localhost) it works perfectly.

What I'm doing wrong?
Post
Topic
Board Bitcoin Discussion
Re: Who is Satoshi? Why did he hide his identity?
by
carlosdelagarza
on 24/01/2017, 08:48:19 UTC
If Satoshi is just one person I'm not surprised that he doesn't want to reveal his identity. Besides some fame and glory this would probably give him a lot of troubles. So, we will probably never know his true identity and he will enjoy the fortune and fruits of his work in secrecy. Good for him.

By being one of the first people to think about a crypto-currency concept it doesn't mean he will make a fortune with that.

It's like if we will call China as a "paper potency" only because they invented the paper.

Satoshi Nakamoto are all the Bitcoin developers. But if you want names Dorian Nakamoto and Hal Finney are the possible ones.

If he reveals his identity he would be the Tesla of the 21st Century (Government would be against him).
Post
Topic
Board Project Development
Re: [OpenSource | Github] Cryptocurrency ponzi script
by
carlosdelagarza
on 24/01/2017, 07:18:25 UTC
how can I setup and where can i found this cryptocoin daemon?

I don't know how can I do it:
Download your cryptocoin daemon, setup JSON RPC values in your config and add:
txindex = 1
Run your daemon with -reindex and -server arguments

it must be on serwer together with this scrpit??
any help ?Smiley

txindex = 1 is literaly a config found in your bitcoin.conf (by default it's not added and you have to add it)

Quote
By default, Bitcoin Core builds a database containing only the transactions related to the user’s wallet. If you want to be able to access any transaction with commands like gettransaction, you need to configure Bitcoin Core to build a complete transaction index, which can be achieved with the txindex option. Set txindex=1 in the Bitcoin Core configuration file (usually found in your home directory under .bitcoin/bitcoin.conf). Once you change this parameter, you need to restart bitcoind and wait for it to rebuild the index.

When you add txindex = 1, automatically the next time that you open Bitcoin Core (or the daemon client that you're using) it will ask for a reindex wich will take a lot of time but you will be able to use txindex.
Post
Topic
Board Web Wallets
Re: Blockchain.info RPC JSON API
by
carlosdelagarza
on 23/01/2017, 07:22:59 UTC
Of course, my config.php is fine, sorry I forgot to put the
Code:
);
ending on the post.

Code:
      $rpc = array(
'login' => 'mywalletID',
'password' => 'mypassword',
'ip' => 'rpc.blockchain.info',
'port' => '80'
      
);
?>

I have tried with:

Code:
  $ip gethostbyname('rpc.blockchain.info');

echo 
$ip;

?>

to get the DNS from the rpc.blockchain.info domain, but it doesn't solve it either.

I'm using this jsonRPCClient.php version:
Code:
/*
COPYRIGHT
Copyright 2007 Sergio Vaccaro 
This file is part of JSON-RPC PHP.
JSON-RPC PHP is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
JSON-RPC PHP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with JSON-RPC PHP; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/
/**
 * The object of this class are generic jsonRPC 1.0 clients
 * http://json-rpc.org/wiki/specification
 *
 * @author sergio 
 */
class jsonRPCClient {

/**
 * Debug state
 *
 * @var boolean
 */
private $debug;

/**
 * The server URL
 *
 * @var string
 */
private $url;
/**
 * The request id
 *
 * @var integer
 */
private $id;
/**
 * If true, notifications are performed instead of requests
 *
 * @var boolean
 */
private $notification false;

/**
 * Takes the connection parameters
 *
 * @param string $url
 * @param boolean $debug
 */
public function __construct($url,$debug false) {
// server URL
$this->url $url;
// proxy
empty($proxy) ? $this->proxy '' $this->proxy $proxy;
// debug state
empty($debug) ? $this->debug false $this->debug true;
// message id
$this->id 1;
}

/**
 * Sets the notification state of the object. In this state, notifications are performed, instead of requests.
 *
 * @param boolean $notification
 */
public function setRPCNotification($notification) {
empty($notification) ?
$this->notification false
:
$this->notification true;
}

/**
 * Performs a jsonRCP request and gets the results as an array
 *
 * @param string $method
 * @param array $params
 * @return array
 */
public function __call($method,$params) {

// check
if (!is_scalar($method)) {
throw new Exception('Method name has no scalar value');
}

// check
if (is_array($params)) {
// no keys
$params array_values($params);
} else {
throw new Exception('Params must be given as array');
}

// sets notification or request task
if ($this->notification) {
$currentId NULL;
} else {
$currentId $this->id;
}

// prepares the request
$request = array(
'method' => $method,
'params' => $params,
'id' => $currentId
);
$request json_encode($request);
$this->debug && $this->debug.='***** Request *****'."\n".$request."\n".'***** End Of request *****'."\n\n";

// performs the HTTP POST
$opts = array ('http' => array (
'method'  => 'POST',
'header'  => 'Content-type: application/json',
'content' => $request
));
$context  stream_context_create($opts);
if ($fp fopen($this->url'r'false$context)) {
$response '';
while($row fgets($fp)) {
$response.= trim($row)."\n";
}
$this->debug && $this->debug.='***** Server response *****'."\n".$response.'***** End of server response *****'."\n";
$response json_decode($response,true);
} else {
throw new Exception('Unable to connect to '.$this->url);
}

// debug output
if ($this->debug) {
echo nl2br($debug);
}

// final checks and return
if (!$this->notification) {
// check
if ($response['id'] != $currentId) {
throw new Exception('Incorrect response id (request id: '.$currentId.', response id: '.$response['id'].')');
}
if (!is_null($response['error'])) {
throw new Exception('Request error: '.$response['error']);
}

return $response['result'];

} else {
return true;
}
}
}
?>
Post
Topic
Board Servicios
Re: Faucet que paga 40 a 70 satoshis cada 5 minutos en ePay.info + 15% en referidos.
by
carlosdelagarza
on 23/01/2017, 02:10:29 UTC
Fijate que no, no me ha cobrado ningún fee en lo absoluto. La recomiendo.
Post
Topic
Board Web Wallets
Topic OP
Blockchain.info RPC JSON API
by
carlosdelagarza
on 23/01/2017, 02:01:59 UTC
When I make a API call to my wallet on Blockchain.info it gives me the error:

Warning:  fopen(): php_network_getaddresses: getaddrinfo failed: No address associated with hostname in /home/u2485/public_html/jsonRPCClient.php on line 132

Unable to connect to http://mywalletID:mypassword@rpc.blockchain.info:80/' in /home/u2485/public_html/jsonRPCClient.php:140


I'm using the jsonRPCClient.php to communicate to bitcoin server.

I have my config.php file where I specify login, pass, ip, port, etc.

Code:
      $rpc = array(
'login' => 'mywalletID',
'password' => 'mypassword',
'ip' => 'rpc.blockchain.info',
'port' => '80'
?>

And here is the file where I'm connecting with blockchain.info

Code:
include('config.php');

require_once 'jsonRPCClient.php';
$client = new jsonRPCClient('http://' $rpc['login'] . ':' $rpc['password'] . '@' $rpc['ip'] . ':' $rpc['port'] . '/') or die('Error: could not connect to RPC server.');
echo 'Done.';
?>

source: http://blockchain.info/es/api/json_rpc_api
Post
Topic
Board Micro Earnings
Re: FreeBitco.in - Win free Bitcoins every hour!
by
carlosdelagarza
on 12/01/2017, 07:30:05 UTC
Post
Topic
Board Project Development
Re: Faucet "Cookie"
by
carlosdelagarza
on 09/01/2017, 09:55:26 UTC
I'm using JavaScript.
Post
Topic
Board Project Development
Topic OP
Faucet "Cookie"
by
carlosdelagarza
on 08/01/2017, 07:40:58 UTC
Hello,  I have a faucet and I'm wondering...

What's the way to "save" the addresses from your faucet users?

I mean, every time that they enter to my faucet they have to "write" their addresses, so I want to save them that job.
Post
Topic
Board Esquina Libre
Re: quien me dice donde puedo conseguir el scripts antibot v5.50
by
carlosdelagarza
on 07/01/2017, 06:57:57 UTC
A mi me aparece normal, tal vez es tu navegador.
Post
Topic
Board Servicios
Topic OP
Faucet que paga 40 a 70 satoshis cada 5 minutos en ePay.info + 15% en referidos.
by
carlosdelagarza
on 07/01/2017, 06:47:52 UTC
Hola a todos.

Si son de los que utilizan faucets a menudo les paso a dejar la mía.

40 (90%), 50 (9%) y 70 (1%) satoshis cada 5 minutos.

http://freesatoshis.esy.es/

Las transacciones son instantáneas tu micro-monedero http://epay.info/


Saludos.

Post
Topic
Board Economics
Re: Tell me a secret: any way to earn 0.1 BTC per week?
by
carlosdelagarza
on 07/01/2017, 06:21:05 UTC
PTC, Faucets with a lot of referrals, Freelance is a good option too. I don't recommend HYIPs.
Post
Topic
Board Micro Earnings
Re: FAUCET FREESATOSHIS.ESY.ES (Payments through ePay.info)
by
carlosdelagarza
on 07/01/2017, 04:33:29 UTC
Hello I'm glad you like it. Thanks.
Post
Topic
Board Micro Earnings
Topic OP
freesatoshis.esy.es 40-70 sat every 5 min. + 15% ref (Payments on ePay.info)
by
carlosdelagarza
on 06/01/2017, 18:47:56 UTC
FREESATOSHIS.ESY.ES BITCOIN Faucet

http://freesatoshis.esy.es/


Claim from 40 up to 70 Satoshis Every 5 Minutes

Instant ePay payout (No Minimum)