2
How is it possible to get the latest transactions txid in real-time? I mean to implement something similar to what blockchain.info does on its homepage. How do they do it to get all transactions info that happens on the network? I'm talking about zero-confirmation transactions.
EDIT I have found out the API getrawmempool. Does this answer the question? Does it contain all the real-time transactions in the network for the current live block?
Yes, getrawmempool will contain all unconfirmed transactions which have been verified and accepted as valid by your node but have not yet been included in a block. Due to transaction malleability (or moreso a misunderstanding of how to check transactions going through) and double-spends I would use this for notification purposes only, unless of course you value being able to credit a client immediately and are willing to deal with a few reversed payments in order to provide this convenience. – Mark – 2014-04-13T17:05:22.037