Ninjastic
Home
Search
Users
Boards
Addresses
Ctrl + K
Toggle theme
Open menu
Post
Edited versions
Quotes to this post
Post
3760245
Topic
350795
Board
Development & Technical Discussion
Re: Creating a specialized listener
by
dingrite
on
29/11/2013, 01:34:35 UTC
Quote from: elbandi on November 29, 2013, 12:49:39 AM
Quote from: dingrite on November 28, 2013, 06:12:45 PM
My goal is to create a bot that would listen to the bitcoin network for a list of specific transactions associated with specific bitcoin addresses.
To achieve this I figured it would be best to query the network for the latest blocks, verify them and look for the transactions there.
Does anyone know how I could best do this? A high level description would do.
And I assume libbitcoin is the best cpp lib out there?
https://code.google.com/p/bitcoinj/wiki/UsingFromOtherLanguages
here is a sample:
https://github.com/mikehearn/cppjvm/blob/master/mytest/bcj-hello-world.cpp
Thank you but I am looking for a C/Cpp implementation, I do not like java dependency and the bot need be able to run without a potential JVM bottleneck. It will be performing a lot of cryptography and many instances may have to be run.