Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Search content
Authors
Topics
Boards
Date
Merits
Quotes
Others
Sort by
Relevance
Search
Showing
4
of
4
results
by
lukesims
Compact mode
Post
6679109
Topic
602660
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
Quote from: jantenner81 on May 10, 2014, 09:03:06 AM
seriously?
i seriously concur with this "seriously?
"
Post
6615360
Topic
600650
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
6613782
Topic
600650
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
Post
6568778
Topic
490531
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
;
}
?>
Previous
←
1
Next
→