Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,267 transactions (0.84 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,650 000000000000000000022cb30000000000000000000000000000000000000000 0.83 vMB 2,257 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,649 (845,545 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
65,104 65,104 0000000007fafc4c3714ebb66bc8bca28177b517426e4b2abd6f1fc7c2a6a0b4 0.00 MB 1 0
65,103 65,103 0000000006b8095b89ad42ca129d8cc362232d8c49229ebdffa66281a10a57b4 0.00 MB 5 0
65,102 65,102 00000000021db6624290e17a4d312c91affdbdca4346800d198b91f714803578 0.00 MB 2 0
65,101 65,101 00000000018cfd82118e6b1cae19d4093208e9648ad0daaa932c4beea159b636 0.00 MB 3 0
65,100 65,100 000000000777c9285c621edc2889207de4b5c9b718c3f006dc2107a0b4d69b18 0.00 MB 1 0
65,099 65,099 00000000079724d2da2e5cb82b194eba41ab8bcdb7e948e8e10284bc776f2542 0.00 MB 1 0
65,098 65,098 0000000000316a795795a5d36c6858840a61507f1f8048501f74e10b58512cc6 0.00 MB 2 0
65,097 65,097 000000000232d438588aa0a943cdf1a5037baa6cdcc8180bfb88436e2bb72bd4 0.00 MB 1 0
65,096 65,096 0000000000e5930f462ec43ba42eeec8f80d97d4b4e5716f203d8b900c43123c 0.00 MB 2 0
65,095 65,095 0000000001fdb15e0bd25c40a0e4f0508f5e5eca6354359c7295c54211d6f653 0.00 MB 1 0
65,094 65,094 00000000025836da5adbf78215c3a30d0d5ae8f1fc68881909a6d5890188f8d4 0.00 MB 1 0
65,093 65,093 00000000040dc564fa83a9f2c40ca20f2e8eba13f8e30f9faf080ebc0cb0ee87 0.00 MB 1 0
65,092 65,092 000000000373d5f3fa2e4d24c7f20ef7f9e1911336d0e23b16275884c4ad9f92 0.00 MB 1 0
65,091 65,091 0000000009a822394d995e7c66a48979c18c78c5aaa84a350faca02276a85db1 0.00 MB 2 0
65,090 65,090 0000000001710757d3e8d18489a318a82180ce5bd71ec9d6523d769edbfe94b2 0.00 MB 1 0
65,089 65,089 0000000008faa63f28e38dd19eaba7e4cde3df4a2d183fbed26ce8e6404f5bb0 0.00 MB 1 0
65,088 65,088 000000000a74e4ce4421797cd3cd780c266f41728f8055965c15c4a0c6bc6d89 0.00 MB 1 0
65,087 65,087 0000000001f3e7bd8cc617be086bddcc389720308aecaaee047ba3363a87d9b0 0.00 MB 2 0
65,086 65,086 0000000006b06a95d48798f5a1c19cc4b43fd9db30a98c4364105c525fe5d9ac 0.00 MB 2 0
65,085 65,085 00000000066fb6fecd842485e5acb112bf32d87110f56242252af602867cad70 0.00 MB 1 0
65,084 65,084 0000000000b0972884003720f0ff8e885fab92997e71a22c448e7caba4fc6d84 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.58 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 112 incoming
  • Data Transfer: 2,279.82 GB sent, 121.47 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.