Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,210 transactions (3.97 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,579 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,368 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,578 (831,591 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
77,987 77,987 00000000000468a1301cf42db12b7f826141b3a70fbd15e10b186e4a53c6add8 0.00 MB 1 0
77,986 77,986 000000000011c5c3e7fa1bd5dd8c5f5a490cc682542175f62d68f2827ef3f452 0.00 MB 2 0
77,985 77,985 0000000000015206953dbae8298157a537d275768a351f79bd28ac63ec2c97b7 0.00 MB 1 0
77,984 77,984 00000000005fdfd810a7f8200b253e9c1034d99be1827c2aa222745f3a5a9bce 0.00 MB 1 0
77,983 77,983 00000000005e1a824b9ec1e859bcec04226150cca7e3ffa6443bdeda2f261a11 0.00 MB 2 0
77,982 77,982 00000000004f04e708620c901ecef62ee1aa3971e7856a0613ab47415ca085e4 0.00 MB 1 0
77,981 77,981 0000000000651f58bf85f569828f95d5d5aafedb74e25b6e4ff0e8f2fe4aacb6 0.00 MB 2 0
77,980 77,980 000000000007af460ef270bef606f070524e0688fa173f9087169bc70c0bf2a3 0.00 MB 1 0
77,979 77,979 000000000035b1c72dbaf19b5c34c8295ae4db00a6565ae45192480b665ef370 0.00 MB 1 0
77,978 77,978 00000000003eb0da9ccd543a545d4ac2bf78e976ca6fa95280fb4cd55cd325ce 0.00 MB 1 0
77,977 77,977 00000000001374a93cd1d308d9e3dca79b94512a2fd8eeaaae10ba4ec44dc6ef 0.00 MB 4 0
77,976 77,976 0000000000123cf26127ebcbfa9675228329a879977dd87cd8fa054eb30f869b 0.00 MB 2 0
77,975 77,975 000000000046c40728115c40ae250dd4aa0e5c16d658a20e695e6fea38a7d1e3 0.00 MB 1 0
77,974 77,974 0000000000579c833ff584788744c27ad450d349bbe8ff20adf94dab8a5e7ee5 0.00 MB 1 0
77,973 77,973 000000000041fb12814acf1a2eed967ace0e83bb3648ef8816683d4277163398 0.00 MB 1 0
77,972 77,972 00000000003972fb59b477a295362b5a16979ee67682c0568c0ba1a17bb723cf 0.00 MB 1 0
77,971 77,971 000000000058f464dfa0e8055f76c57db4bd38ae76511a1f72bc0dfe743706a7 0.00 MB 1 0
77,970 77,970 0000000000446729f98bc86842be387ae23814d48b46c31719c8a3c8719ea8b8 0.00 MB 1 0
77,969 77,969 000000000051a73c2f4ac9f34f93b5384be4960a3591630d4e19564a3130a047 0.00 MB 1 0
77,968 77,968 000000000047b13eb819cfe1f6518f3fe08ffbb05befdf00e9840630f82de390 0.00 MB 1 0
77,967 77,967 00000000005ed9bca5441e5a8cfa4c5dddf3ad2258febb2ecad3130a1204a811 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.62 GB

Node Information

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