Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,136 transactions (2.17 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,692 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,259 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,691 (897,280 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
12,411 12,411 00000000111a2e21f56d5c6b56ab41a07d03fd1bac3a2bc3840887d7f415248e 0.00 MB 1 0
12,410 12,410 00000000a29600dec5f23091c9bf87393ff9b50af2b46ccb2cd965abf2697607 0.00 MB 1 0
12,409 12,409 00000000ab996863ece9751e53e7e5475b39297cdcb0be3e33691d65815323e2 0.00 MB 1 0
12,408 12,408 0000000073c005b2011d6d2165dcdd0dc1e37405cfe52dc25dd6eb1092000f60 0.00 MB 1 0
12,407 12,407 0000000012dac65632982652fd01307acd3cceb571a04e11e02214e1b2c6b4a5 0.00 MB 1 0
12,406 12,406 00000000a1926239ca2dc93130ab859c0088f7f7e92933f67a879382c89991da 0.00 MB 1 0
12,405 12,405 00000000faf904987e9ca169af4fc7e99e26a4bd753f34dcc2b50a34467652b2 0.00 MB 1 0
12,404 12,404 0000000092d25e180b6e7f1cfe2a4e3f783ce8022cc4edcc99add3cbf7a5a077 0.00 MB 1 0
12,403 12,403 000000001f63295368a65fa97b42d82a8653f813259900db7be44eb67b4a8ec2 0.00 MB 1 0
12,402 12,402 000000002a6bae9b60569d57efcef33b52f2717342c0d56acd70ebd98b268d99 0.00 MB 1 0
12,401 12,401 000000004ee96874c5ae3bf40bb3c5b00aa95c526a93cee7d9e272e185b3d3ce 0.00 MB 1 0
12,400 12,400 00000000c565a0514ed49006b5bbb429c46683ff15cf3c90daef8a6b80724ace 0.00 MB 1 0
12,399 12,399 00000000fca47c87bae75ee2452653163d4220a0ffac97a05057a1d0fb0bf07d 0.00 MB 1 0
12,398 12,398 0000000047b54507ce45b9c49d8bf1da7fa0d2d9350a6a4e9c2ecbb8be5c657c 0.00 MB 1 0
12,397 12,397 000000009d520bba90dcc706780b1d2ec498f3a45f44d5eddcfae47ba70fd592 0.00 MB 1 0
12,396 12,396 000000004866661cb257303ab26e8ff0a8a0b2c9297473553cc98f2ca1d03252 0.00 MB 1 0
12,395 12,395 000000005c006d2cfba8a1f7f37dfc1606fcfa9067baf94fa9014d03ebe144c0 0.00 MB 1 0
12,394 12,394 00000000fb7f557a4789f3e046e3bbbac58326a1bef88ed0110662f1c43b3b40 0.00 MB 1 0
12,393 12,393 0000000030104b72aeff41fb4933b93241997bb981d3411de4a56c74f72564f2 0.00 MB 1 0
12,392 12,392 000000004470216642cce445ae3ca78fda9763e3211da7d0b9ed6a7e8b6c5817 0.00 MB 1 0
12,391 12,391 0000000070cd8a2188102dacb5a4e746daee05f4d27d391f4385b506ddd24f6e 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.83 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,151.00 GB sent, 112.50 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.