Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

5,945 transactions (1.48 vMB)

Priority:

  • 1 sats/vbyte = (7 blocks)
  • 2 sats/vbyte = (3 blocks)
  • 4 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 10/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,660 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,847 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,659 (846,412 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
64,247 64,247 00000000097ce10ab97dd5886abb2bb3bc4c6313b5ab3c64039fcd12c0315d7c 0.00 MB 1 0
64,246 64,246 0000000001feb866f2a9ef6cfc22b3d1cf2609f94cb304b5c215aa4c2b267565 0.00 MB 2 0
64,245 64,245 000000000925a35425acc823ed2f0e4eb28853fd463551fe9980bb905c7f5e7f 0.00 MB 1 0
64,244 64,244 000000000096ccbc13f75ba5343ef51f6f3917005e578d416309a216e9c250b3 0.00 MB 2 0
64,243 64,243 000000000ac2d00c03dab21e4313a41ca25bae4fd3f78e7b6458143552431a05 0.00 MB 1 0
64,242 64,242 000000000150b0e0c97b295a534662524e48d151f279c1a870bf8c290398e335 0.00 MB 1 0
64,241 64,241 0000000009fc4736e61aea75bac53b23f3a6f7547e7fdb50d49f440d1e7452f6 0.00 MB 1 0
64,240 64,240 000000000aa75ee086e923aa32bb4c70e460e65c7bd856462b2ceb3a979cd14b 0.00 MB 2 0
64,239 64,239 00000000072cb8bb9be557bb781645f006afc56c0541ab6701e572f6215b8270 0.00 MB 2 0
64,238 64,238 00000000084557ed8c95a364c9c23cfd8759964cf9591b5462734d31e9b25560 0.00 MB 1 0
64,237 64,237 00000000036f5091cd46ef1580fc28cc1858942c41b9f5b3c114427cfdbf0642 0.00 MB 1 0
64,236 64,236 000000000a39fda5ddd1ceb1fbf7b04d724b536d9374136cbe140fbd3a89ce57 0.00 MB 3 0
64,235 64,235 000000000126fc18f77163f8ddd4a29c276b8569c804cd65ef2cf2ec787243cd 0.00 MB 2 0
64,234 64,234 000000000c99417f4798eb68aa9897844e67686024df9baa41e6a44a0b4a1544 0.00 MB 1 0
64,233 64,233 0000000005ed040ea32708c852142cb23cdc4d44ecdbb7571b984e1b31125f4c 0.00 MB 3 0
64,232 64,232 000000000ca2b05faefecbe66485d702be341af6f0907e63284dded2be051247 0.00 MB 1 0
64,231 64,231 00000000014d1148af3689648bb2f5e6b165e1aca83ebf40d7aba180f0e043f4 0.00 MB 1 0
64,230 64,230 00000000099fb8b54a3bdfdc9c4b3f14af2c58b7700eb337bb4365cb68853d72 0.00 MB 1 0
64,229 64,229 00000000002a1f0029b10b9b8bfe132119b72f4b4fe7ef5e3b0e08c04ee383f7 0.00 MB 1 0
64,228 64,228 0000000003a1a3ec9e8d563aa580b1043a5bd97abd02187169c3159fd2d12d4d 0.00 MB 1 0
64,227 64,227 00000000067308bc18d7ee97fc2ee1ee0f88b2a373c84ebefecb402f8f956043 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.59 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 114 incoming
  • Data Transfer: 2,281.23 GB sent, 121.57 GB received

Notes

  • This page updates every 5 seconds.
  • Use the search bar at the top of the website to search for transactions and blocks.
  • Memory pool size (vMB) is the total size of the raw transaction data (not including metadata).
  • Block size (MB) does not include block header, tx count, or coinbase transaction.
  • Feerates are in sats/vbyte.
  • AFR = Average Feerate

About

This is a basic blockchain explorer for exploring Bitcoin data.

The main features of this explorer are:

  • Basic. The data is laid out to try and represent the structure of raw transactions and blocks.
  • Fast. I've made the pages load as fast as I can. If you can't be pretty, you might as well be fast.

So it's pretty basic, but I think you can learn a lot about how Bitcoin works by browsing the raw data and seeing how it all connects together.

Data

The data on this explorer comes from the following sources:

  1. Bitcoin Core. This is used to get raw transaction and block data. This is retrieved via simple bitcoin-cli commands.
  2. SSDB. I'm using a custom database to store the address balances and spent locations of each output. Bitcoin Core does not store this information, so I'm using a custom script and database to store this extra information.

Privacy

This blockchain explorer does not track anything.

I do not collect IP addresses or keep track of requests. Nor do I use any third-party analytics or tracking software.

However, this blockchain explorer is not open-source, so you have to trust me on this one.

Bitcoin Core Explorer

If you want to explore blockchain data without having to trust anyone with your privacy, the simplest way to do this is to run your own Bitcoin Core node and run bitcoin-cli commands.

The two most useful commands are:

  • bitcoin-cli getrawtransaction <txid>
  • bitcoin-cli getblock <hash>
  • You will need to add txindex=1 to your bitcoin.conf configuration file to be able to query for all transactions.
  • Use bitcoin-cli help to a complete list of commands.
  • Use bitcoin-cli help <command name> to see detailed information about a command and all the available options.

Alternatively, you can also run your own self-hosted explorer such as mempool or btc-rpc-explorer.