Search content
Sort by

Showing 4 of 4 results by lukesims
Post
Topic
Board Project Development
Re: The biggest project ever created has been created. And it's waiting for YOU!
by
lukesims
on 12/05/2014, 01:20:25 UTC
seriously?  Huh

i seriously concur with this "seriously?Huh"
Post
Topic
Board Web Wallets
Re: Blockchain Create Wallet API
by
lukesims
on 08/05/2014, 16:20:10 UTC
I realise that, I am asking about the Private Key associated with that wallet
Post
Topic
Board Web Wallets
Topic OP
Blockchain Create Wallet API
by
lukesims
on 08/05/2014, 14:49:57 UTC
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
Post
Topic
Board Development & Technical Discussion
Re: How to automate Bitcoin withdrawal
by
lukesims
on 06/05/2014, 07:27:09 UTC
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:

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;
}

?>