I'm trying to get a bitcoin-centric website going, and I need to be able to perform the following actions without having a bitcoin daemon running on any server due to limitations in place by my host:

  1. Create a new bitcoin address (getnewaddress($account))
  2. Receive coins at that address; determine how much was received (getreceivedbyaccount($account, $minconf=1))
  3. Send coins to an address (sendfrom($fromaccount, $tobitcoinaddress, $amount, $minconf=1, $comment="", $comment-to=""))

These are all functions that exist within the existing json-rpc php client, but all of which depend on a running bitcoin daemon on a server.

I did read through the "lazy api" stuff as well, but I would rather not depend on another service to get the block data or send the bitcoins.

tl;dr: I need a version of the bitcoin php api which does not need the daemon running, with at a bare minimum the functions described above.

link|improve this question

feedback

1 Answer

At present, no such function exists. I've heard talk of bitcoind being ported to native PHP or a Java applet that can run in the browser, but there is no bitcoin without a daemon somewhere - although you could probably manage those basic functions with the MtGox Merchant API.

Alternately, if you have a reliable enough setup at home you could dedicate a rig to bitcoind and forward the appropriate port in your router settings. The only reason you can't usually host sites on your residential internet is that ISPs block port 80; they don't block 8337 (and if they do it's configurable anyway). The PHP API should be capable of connecting to bitcoind just the same across the 'net as if it's on the same box.

link|improve this answer
I'd kill for a PHP port right about now. I'd use the MtGox API if it weren't for the fact they were hacked recently. – Cyclone Aug 11 '11 at 15:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.