Author

Topic: Searching in mempool (Read 37 times)

legendary
Activity: 2380
Merit: 5213
September 09, 2024, 06:02:57 PM
#5
Is there a way to search for all blocks that contain an exact number of transactions in the mempool? Thanks
Blocks that contain an extact number of transaction in the mempool?
Take note that transactions that have included in blocks are no longer in the mempool.


I am trying to quickly search between a range of blocks which has a specific number of transactions, for example between blocks 350700 - 360000 which has 1234 transactions, thanks for the help
In addition to LoyceV's service, you can go to blockchair.com and simply filter the blocks by transactions count.

Your example: https://blockchair.com/bitcoin/blocks?s=id(desc)&q=id(350700..360000),transaction_count(1234)
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
September 09, 2024, 01:57:25 PM
#4
I am trying to quickly search between a range of blocks which has a specific number of transactions
Click!

Quote
for example between blocks 350700 - 360000 which has 1234 transactions
This example has only one matching transaction:
Code:
grep -A1000000 350700 transaction_count.txt | grep -B1000000 360000 | grep ",1234$"
359249,1234
newbie
Activity: 3
Merit: 0
September 09, 2024, 01:52:46 PM
#3
I am trying to quickly search between a range of blocks which has a specific number of transactions, for example between blocks 350700 - 360000 which has 1234 transactions, thanks for the help
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
September 09, 2024, 12:56:44 PM
#2
Is there a way to search for all blocks that contain an exact number of transactions in the mempool?
No. There are no blocks in mempool. What are you trying to accomplish?

If you're looking for block data: Bitcoin block data available in CSV format.
newbie
Activity: 3
Merit: 0
September 09, 2024, 12:50:40 PM
#1
Is there a way to search for all blocks that contain an exact number of transactions in the mempool? Thanks
Jump to: