Add bitcoin funds to java app utilizing BitcoinJ – CoinNewsTrend

Add bitcoin funds to java app utilizing BitcoinJ


Not likely for BitcoinJ, however a basic method.

You generate new tackle for each consumer you register. Retailer it in your DB with the userID for future reference.

Create a getAPI taking a String enter. use your API endpoint and open the Bitcoin.conf file.

walletnotify=curl <your API>

If you wish to have affirmation logic as effectively, you might want yet another getAPI, and get the endpoint. then replace your bitcoin.conf file once more with following:

blocknotify=curl <your Block API> 

Now when consumer makes the deposit to the tackle you generated, Bitcoin node will notify your app by calling the pockets notify API. You get the transaction hash. Use that txHash and make a Put up name to your daemon with RPc command:

getTransaction <txHash>

Now you will have total transaction object to search out which consumer has made the deposit.

Free tip: Bitcoin node calls walletnotify two instances:

  1. When a transaction is added to the chain.
  2. When that transaction receives first affirmation.

If you don’t need multiple affirmation, then blockNotify is just not wanted.

In order for you a sensible instance, you may test my Github repo, the place I’ve finished it. It isn’t based mostly on BitcoinJ however the logic stays the identical:

https://github.com/kunalbarchha/generic-wrapper-for-bitcoinforks



Supply hyperlink