3
Is there database of orphaned blocks?
https://blockchain.info/orphaned-blocks does not work right now
Does anybody keep them?
Also I am looking for those transactions which were not included in blocks (non-standard, double-spends, not enough fees, etc)
Should I start from the genesis block and perform 300k+ requests to locate all orphan blocks? I think it is not good.
What I am looking for? I am looking for those transactions which are still valid but were not included into main chain for any reason. There is very small possiblilty that I can find them in orphan blocks. Why do I looking for them? Lets say I want to rebroadcast them now or in future :) – amaclin – 2014-06-05T03:39:21.460
You can just use the following API call to filter ORPHANED blocks only. https://api.biteasy.com/blockchain/v1/blocks?type=ORPHANED. If the transactions weren't included in the main chain then they will either be DEAD or PENDING and you can fetch them with the following API call https://api.biteasy.com/blockchain/v1/transactions?confidence=DEAD and https://api.biteasy.com/blockchain/v1/transactions?confidence=PENDING. Check out the link to our documentation and also you can use our testing tool which you can find here https://www.biteasy.com/developers/sandbox
– Biteasy.com – 2014-06-05T07:26:16.100Please edit your answer to include the information that you have provided in the comment. They appear to be crucial to make your answer useful, and while answers are permanent, comments are only considered to be transient. See What are comments?
– Murch – 2014-06-15T15:14:28.133Done as requested. – Biteasy.com – 2014-06-23T18:54:37.147