Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,316 transactions (3.37 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,211 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,499 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,210 (893,534 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
16,676 16,676 00000000033370b13ad7dc5268d544039d2831b9c7424e96843ccabf40b9b9f6 0.00 MB 1 0
16,675 16,675 000000003c0ccaab98c283c91f472dd14bfd0acc12b654e05f280d854d0a59fa 0.00 MB 1 0
16,674 16,674 000000007e00ac88871a3a8b0ebdc110d58f21eb1ae291a6721b21366333b4a8 0.00 MB 1 0
16,673 16,673 000000003942cc34cf38e17ac8d9330a11e654a965a96f981c02d090d0890539 0.00 MB 1 0
16,672 16,672 00000000f5426de08e50be65085214b8588baf2857709b9a655f14e246c0d39a 0.00 MB 1 0
16,671 16,671 0000000050e44c91e5f6be251df78a6cd9638ace541ae0f4a521805eb641705e 0.00 MB 1 0
16,670 16,670 0000000031acf85fc560624b91b175bda981b7aaaa792abbf3f9ca12fc8457cd 0.00 MB 1 0
16,669 16,669 00000000bbe499d7a352a42e9280bb0cc3dc9aa1c0138a0bec57255264d91e42 0.00 MB 1 0
16,668 16,668 00000000914ecbb6a9cf5f09a256e83a0dda8712167934ce7525cf05ab2ddb1a 0.00 MB 1 0
16,667 16,667 00000000a8a3436f76aada7e621b636b664ba776d6e0c028531a0260f7c3f09a 0.00 MB 1 0
16,666 16,666 000000001051834d5582cde5762099f0ec6fc91f0625f2c8d6b751730a975922 0.00 MB 1 0
16,665 16,665 00000000ca34c6d15202e8b5784e447a766b1fe9e01b6a6b7b07f2b1f10f6005 0.00 MB 1 0
16,664 16,664 00000000f89e598c5567e776730b220e056e29fffaf101cec525b2f1f83a5761 0.00 MB 1 0
16,663 16,663 00000000fa8fee3add9cdffc6149b20f09de32fb5796732a259ffa94759603e2 0.00 MB 1 0
16,662 16,662 0000000082a7095754156fa29326627b29d64a5991d347d1e5bdbfb56d203ac7 0.00 MB 1 0
16,661 16,661 00000000fe0baa20954018eaede3641026de0020712a5c33ecdc35eca3e0d586 0.00 MB 1 0
16,660 16,660 00000000aeed905a30ef2437fcb500dfe3d99c8f071368c81aa79471ff4ce92f 0.00 MB 1 0
16,659 16,659 0000000044e5a116add6e408eb389fdbe859f1bc5d889e7044306a7c4aa8c058 0.00 MB 1 0
16,658 16,658 00000000b7e04469140eecff100ae770cd376212cb4f8fc7969857f316509f94 0.00 MB 1 0
16,657 16,657 000000008e51b80f4598810dcf39a86743ffbf960a5e83f905c6e055cc466966 0.00 MB 1 0
16,656 16,656 00000000eea1f241b80846bb2d98f18e41979fb9f9eda482d5be29a52790a6d5 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.78 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,197.23 GB sent, 117.55 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.