Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

12,102 transactions (5.02 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 909,580 (41 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
909,539 909,539 000000000000000000010b16a01c160756ef4e06630b861d956c7685bd5a11ef 1.77 MB 4,228 1
909,538 909,538 00000000000000000001159ad0bcb02bc521f1697c47a15a8db2991b72f598c1 0.00 MB 1 0
909,537 909,537 0000000000000000000215a8669da0ee078f36d177c2c0d06407c056f25f9c65 2.08 MB 2,732 1
909,536 909,536 0000000000000000000056e5087df0fbf7faf1d8181d160535154f10eddeb87b 1.72 MB 2,962 2
909,535 909,535 0000000000000000000145f690607ec8ab4ec9ecc86d484b2ed8a72259367b1a 1.77 MB 1,525 2
909,534 909,534 0000000000000000000083db7a400c903dd45b4a073f645d8c4420170a69eac8 1.95 MB 2,295 4
909,533 909,533 00000000000000000001f8f5c207e62f56a1c8374558a3a805d7587ba19ed3aa 2.22 MB 893 3
909,532 909,532 00000000000000000001c423d50392d57d7f7ef5ceeaa7d58b98ed04f28c3e14 2.19 MB 1,571 3
909,531 909,531 00000000000000000001e3113a1db7461dde54a89545cda8a87432542199840b 2.00 MB 2,488 3
909,530 909,530 000000000000000000009b9ed6b30f965e46c3f80ab18d4619ddf4300e42e35f 2.07 MB 1,370 3
909,529 909,529 00000000000000000001cb3b1d42abce27d8e0188d9431f4f3c1f633f6d582fa 1.66 MB 3,792 5
909,528 909,528 00000000000000000001cc39473e295a912017808a746efb1e01b2a4a8110d44 0.02 MB 54 2
909,527 909,527 0000000000000000000065d10aa97d09d3ee817d3a7ec8740aa6816dfed2e63f 1.85 MB 2,973 1
909,526 909,526 00000000000000000001b804027ecc6a9d9570933ce34e0d2b7a3cb5c102b245 1.82 MB 2,529 2
909,525 909,525 00000000000000000001bf7c62ab7b0f2b7dcf118f7914841a31b515d3aeffea 1.74 MB 3,101 1
909,524 909,524 00000000000000000001b02a9b6ec3ccd5c5739c1dda29155a744c239a42dca4 1.67 MB 2,947 3
909,523 909,523 00000000000000000001bb63014213a21f1c07bf9438c36acf4462bf05500956 1.99 MB 4,030 1
909,522 909,522 0000000000000000000055ae0bca860aaffaa9b6b432ae3259f0959944810738 1.69 MB 4,332 0
909,521 909,521 000000000000000000010f2701d077e3b57389bb1f4b0764fafa7e282698c443 0.93 MB 1,422 2
909,520 909,520 00000000000000000001c1b3cbf77df3b1861f9ef93f7dabb35466f9a50e681e 1.68 MB 2,436 3
909,519 909,519 000000000000000000014740066b08b2c09877648bbf3ddba80d54babf4502d7 1.22 MB 2,845 1
Previous 10 blocks ↓
Total Size: 772.63 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,093.73 GB sent, 111.48 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.