API or framework for handling transactions

1

I am developing a JSP web (based on Java) and I would like to let users send the altcoins to my servers wallet. I need something what would monitor if the coins (DOGE/BTC etc.) has arrived and just after that let the users do something.

Is there anything like this? I am new here and maybe it is broad but let me explain better if you need.

I mean something like this: http://bitcoinj.github.io/getting-started

but not only for BTC also for other coins.

Ondrej 'zatokar' Tokár

Posted 2014-05-21T13:26:08.587

Reputation: 61

Have you reviewed this document? https://en.bitcoin.it/wiki/API_reference_%28JSON-RPC%29#Java outlines how to communicate with bitcoin server directly, MOST altcoin use a replica of this interface to provide API access. There are however some altcoins which use their own unique system.

hafnero 2014-05-22T02:10:34.660

Answers

1

for example you can subscribe to unconfirmed transaction on the blockchain websocket and monitor when your addresses appear in the flow.

Riccardo Casatta

Posted 2014-05-21T13:26:08.587

Reputation: 379