Show Posts
|
Pages: [1]
|
Hello guy
I have in my account Balance: 3000; unconfirmed: 3000; effective: 3000, i have wait 40 confirmation but always in unconfirmed why plz ?
|
|
|
Hello all i have bug with wallet v13 i have this message and wallet dont start at a.a.start <unknow source> at start.main <unknow source> ... 5 mores if i delete all data what is time for recover plz ?
|
|
|
Up 
|
|
|
Hello everybody I am use blockchain in my shop for accept bitcoin but i need to wait for 2 block confirmation in php Now i use a simple copy past in tutorial for test balance $cc = @file_get_contents('https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code); $cc = $cc / 100000000;
if($do['balance'] > $cc) // if balance in blockchain change to 0 { update } else // if deposit { update }
Who to use like https://blockchain.info/q/address/'.$address.'/?api_code='.$api_code.' &confirmations=2 ? Thanks you 
|
|
|
Hello thanks for your reply This night is work, and now not working... I dont have other module, i use file get content and cURL with google.com its work $url = 'https://blockchain.info/';
function urlExists($url=NULL) { if($url == NULL) return false; $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $data = curl_exec($ch); $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if($httpcode>=200 && $httpcode<=303){ return true; } else { return false; } }
if(urlExists($url)) { echo "ok blockchain"; } else { echo "switch coinbase"; }
@M3 u use api ? U dont have problem with this ? This night all work and this morning not... lol
|
|
|
Hello all I have problem for generat new deposit address with PHP. In browser is ok https://blockchain.info/api/receive?method=create&address=1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YCWith this link in my browser its work i have {"input_address":"1GaoqyHB9FzKksTxqFs74WXVrvuzsU16XY","fee_percent":0,"destination":"1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YC"} In php with file_get_contents not working... i have always empty response $response = @file_get_contents('https://blockchain.info/api/receive?method=create&address=1Mt8WDeuLd9s1eyzRZcdFy79m1cPvCR5YC');
The last week all work, today no... With coinbase is ok Is my code the problem or blockchain ? Thanks you 
|
|
|
Hi all i need to run litecoind and bitcoind with php in localhost (sorry for my little english  ) Iam use this litecoin.conf server=1 daemon=1 rpcuser=litecoinrpc rpcpassword=8u1EEMnoeBRTZu3ZYbYtNWSEQPp7QUPSW5z rpcport=8332 And this class https://github.com/aceat64/EasyBitcoin-PHP/blob/master/easybitcoin.phpAnd in my index i have <?php require_once('easybitcoin.php'); $bitcoin = new Bitcoin('litecoinrpc','8u1EEMnoeBRTZu3ZYbYtNWSEQPp7QUPSW5z','localhost','8332'); $bitcoin->getinfo(); ?> But not work and in my cmd.exe its ok c:\Program Files\Litecoin\daemon>litecoind getinfo { "version" : 80601, "protocolversion" : 70002, "walletversion" : 60000, "balance" : 0.00000000, "blocks" : 36119, "timeoffset" : -1, "connections" : 8, "proxy" : "", "difficulty" : 0.63768610, "testnet" : false, "keypoololdest" : 1388892634, "keypoolsize" : 101, "paytxfee" : 0.00000000, "mininput" : 0.00001000, "errors" : "" } Thanks for all 
|
|
|
Thanks for reply but cryptsy and cryptorush is just notification system no ? For generat new address and make withdraw in php like blockchain.info its possible ?
|
|
|
Hello everybody, I need wallet for btc,ltc,doge,... with api like blockchain I seek in google but not found U have a link please ? Thanks you 
|
|
|
thanks for reply Darth i view for kimsufi, im need to run bitcoind, litecoind, and dogecoin
Not existe multi wallet like blockchain ?
|
|
|
Hello all I have big probléme with withdraw systeme, for déposit its ok i use this https://blockchain.info/fr/api/blockchain_wallet_apii'am new in blockchain $montant = $_POST['wiSold']; $addr = $_POST['wiAddr'];
// BTC TO SATOSHI $amount = ($montant * 100000000); // BLOCKCHAIN LOGIN $guid = "xxxxx"; $main_password = "xxxx"; // TO $address = $addr; $note = "Withdraw"; $shared = "false"; // SUBMIT $op = "https://blockchain.info/fr/merchant/$guid/payment?password=$main_password&to=$address&amount=$amount&shared=$shared"; $op= file_get_contents($op); $op = json_decode($op); // OK if(empty($op->error)) { $re = mysql_query("SELECT * FROM account WHERE id_account='".$id_playerSession."' ORDER BY id ASC LIMIT 1"); $do = mysql_fetch_array($re); $sold_last = $do['sold']; $sold_new = $sold_last - $montant; $type = "withdraw"; $id_type = ""; $gain = "-".$montant; $info = $op->tx_hash; newTransaction(newHashMd5(), $id_playerSession, $sold_last, $sold_new, $type, $id_type, $gain, $info); // MESSAGE $messageTxt = "ID: <a href='https://blockchain.info/address/".$op->tx_hash."' target='_blank'>".$op->tx_hash."</a> | ".$op->message; $messageColor = $messageColorGreen;
// SON $loadSound = "buy"; } else // ERROR { // MESSAGE $messageTxt = "Error: ".$op->error; $messageColor = $messageColorRed;
// SON $loadSound = "error"; }
But the btc no comme to my wallet  Its probleme with blockchain or in my code Thanks you
|
|
|
|