7

I'm looking for some Bitcoin wallet software I can host locally on my Linux server that provides either an API or webhooks for detecting when Bitcoin transactions have completed. I also need a way to initiate transactions (i.e. tell the wallet to send Bitcoins to an address).

Does anyone know of anything? I know there is coinpunk, but I don't see anything about it having such functionality.

Chad Johnson
  • 381
  • 1
  • 4
  • 7
  • 1
    Hi! I have the same issue. I am working on such an open source project, but it is has been coming only few days now and it is not yet in shape for release. However I'll post more information in few days/weeks. – Mikko Ohtamaa Oct 25 '14 at 22:46
  • That would be helpful! If anyone else's knows the answer now, please post! – Chad Johnson Oct 25 '14 at 22:50
  • 1
    What functionality do you need that isn't provided by bitcoin-core with rpc calls? – k kurokawa Oct 26 '14 at 22:11

1 Answers1

6

did you look at bitcoind? It does everything you are looking for.

-port= Listen for connections on (default: 8333 or testnet: 18333)

-walletnotify= Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)

-alertnotify= Execute command when a relevant alert is received (%s in cmd is replaced by message)

http://paste.ee/p/IBU79

And all of your transactions you do via rpc https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list

enjoy!

brad
  • 188
  • 6