Bitcoin Forum
June 24, 2024, 03:12:03 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Project Development / Re: The biggest project ever created has been created. And it's waiting for YOU! on: May 12, 2014, 01:20:25 AM
seriously?  Huh

i seriously concur with this "seriously?Huh"
2  Economy / Web Wallets / Re: Blockchain Create Wallet API on: May 08, 2014, 04:20:10 PM
I realise that, I am asking about the Private Key associated with that wallet
3  Economy / Web Wallets / Blockchain Create Wallet API on: May 08, 2014, 02:49:57 PM
I have successfully implemented the standard Blockchain Wallet API [https://blockchain.info/api/blockchain_wallet_api]

Now I am looking at using the separate API for creating wallets [https://blockchain.info/api/create_wallet]. I am a little bit confused over the use of private keys in the generation of new wallets. I have posted the question here: http://stackoverflow.com/questions/23505316/generating-a-private-key-blockchain-create-wallet-api, if you think you can help please do Smiley
4  Bitcoin / Development & Technical Discussion / Re: How to automate Bitcoin withdrawal on: May 06, 2014, 07:27:09 AM
I recently encountered the same issue and created a PHP class that simplifies using the blockchain wallet API. Using the API you can maintain a wallet, generate addresses, send money etc.

Take a look at the class on github https://github.com/lukesims/Blockchain-Wallet-API-PHP-Class/

It's as easy as
Code:
<?php

require_once("blockchain.php");

$myWallet = new Blockchain"Identifier""Main Password""Second Password" );

$options = array( "from"   => "18d3cd2DVzcWMtpwShJGxEcRHx8LRZCShr",
                  
"shared" => "false",
                  
"fee"    => "55000",
                  
"note"   => "Money is not our god");

$sendCoins $myWallet->sendCoins"1Gp4K5AnNmT6tdSt5Hv5EArsBBWQi169Ks""124842"$options );

if( 
$sendCoins !== false )
{
    
$message             $sendCoins->message;
    
$tx_hash             $sendCoins->tx_hash;
    
$additional_message  $sendCoins->notice;
}

?>

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!