Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,138 transactions (0.74 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,109 000000000000000000022cb30000000000000000000000000000000000000000 ago 0.72 vMB 2,136 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,108 (874,409 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
35,699 35,699 0000000009da35e3365238eabac7d2c276be391dadf22482bf923f4ec22d1a3f 0.00 MB 1 0
35,698 35,698 000000005887215718152887a56b50b2fc48508fd4ec2d170a828b15bd056cc0 0.00 MB 1 0
35,697 35,697 000000009c4ce1c8bfad473ef9a8dfc7470705839e1681546a42c4c7ae60d4db 0.00 MB 1 0
35,696 35,696 00000000b8b4dee2d2e53706d389e033632b001b4b6974332599c30542625ac1 0.00 MB 1 0
35,695 35,695 0000000030fac18f52a5edfed722c37ed8a2c5a85a3d4d9d748cd7abfb4025c0 0.00 MB 1 0
35,694 35,694 000000009062077e217f362f93fda8db55cf0e35eb972356deef5717e2ae4347 0.00 MB 1 0
35,693 35,693 000000009cba28282dd346bbcdeaee287cbc8496858e38ad24161f703a0cadb9 0.00 MB 1 0
35,692 35,692 000000004ef33c8ed3ff18cbae391cdf272658eaabb6951a12f9f66df64d7d85 0.00 MB 1 0
35,691 35,691 000000009474367326d60e7e0cbf0c03b48c3fcbc8be3b64086adcc001e7ab89 0.00 MB 1 0
35,690 35,690 0000000074dbaf560cb8ec364c3911cc5bcac9f0b690d802834b774d97bdc465 0.00 MB 1 0
35,689 35,689 0000000096165091324cfd2e16a8d840e9226b1b75ced378670f18d876571dc7 0.00 MB 1 0
35,688 35,688 0000000079e9005eb83a8c78a0dcf50a6f3a24f3494f9f9962bb9fe4a6b0e94a 0.00 MB 1 0
35,687 35,687 000000006a11617406f2053978eb89dde0dd4e9a783635f1314d493482b8c667 0.00 MB 1 0
35,686 35,686 00000000bbc89290367f36c4ff73e43ca859fa982999ca0e027f2b303fc4f4b0 0.00 MB 1 0
35,685 35,685 000000000f285fb2b3301c603abf0b11ce23bf915c255d9f5bee88802499a551 0.00 MB 1 0
35,684 35,684 00000000329d5a25e0d29326894869965e92a827c351353c3f49620e61599fbc 0.00 MB 1 0
35,683 35,683 00000000b428fd3660e579bb63c25648485fabfa56d4b9ae0333b8c428b326b0 0.00 MB 1 0
35,682 35,682 0000000054be9e1b3e6bfe7aa47013f99e7b724bdafdb0d5b06cb3d78cde1a93 0.00 MB 1 0
35,681 35,681 0000000029f07f69fea0aa6487c451b20dc1fb49f3e53d642d55d91736d1cba3 0.00 MB 1 0
35,680 35,680 0000000010ff71750baba75487be21cf4c2a523146cbb1aea1066a130223860f 0.00 MB 1 0
35,679 35,679 000000005288fe9d48925b6a6c6b55f5d531e132d8bb31828d46825689ff433b 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.59 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,189.58 GB sent, 116.46 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.