Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

37 transactions (0.01 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,144 000000000000000000022cb30000000000000000000000000000000000000000 0.01 vMB 31 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,143 (846,070 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
64,073 64,073 00000000002faf1e182e605665ce2bd31223fa62fbc1f76a0c576fb2209de1da 0.00 MB 1 0
64,072 64,072 000000000b2e90e615ecca275ca2ff336723a764e1a0c4779d88341a46d97fbb 0.00 MB 1 0
64,071 64,071 00000000029d94fc182d6c9d5585e6c47b9792b87c5f546ca64930621aeded93 0.00 MB 2 0
64,070 64,070 00000000052eee427826bbe0e3862013ca83cec4e780eebb2caf3a4b0671f50b 0.00 MB 1 0
64,069 64,069 0000000006a72a65a0cddbd52b43429b20de49f0ba93d694e4b9ea3f6c4cb180 0.00 MB 1 0
64,068 64,068 00000000083556d80b4d7031c99b944413742e222758b3b9abf08ca06a76bb9d 0.00 MB 1 0
64,067 64,067 0000000008629ca1d4d1b1d8b8b6edc7a115f84c0d8792bda8c156e9d5eaf203 0.00 MB 1 0
64,066 64,066 0000000007b0a8bf66003542eabf9d6b1672295b56d9c37534d21b073cb31888 0.00 MB 1 0
64,065 64,065 000000000ad6c1d85a335147fd412776755f37237cea07ba5c7123d740d0b43c 0.00 MB 1 0
64,064 64,064 000000000622f3b18492091aad7ab3d0f1eef5590b7ec4b02ea70b1f4eb1a034 0.00 MB 2 0
64,063 64,063 000000000bd82e4429eb67e3233823b40e6d25c3fe48975adc16768898d2afe5 0.00 MB 1 0
64,062 64,062 00000000092083b27a5b4e3805ba46bcb49264f1a0676558d144843465bdbe2b 0.00 MB 2 0
64,061 64,061 000000000523c1949356030f35102858941f329cc0f2c8d9a9a0a33d1c6680b1 0.00 MB 1 0
64,060 64,060 0000000005f332086e5d6684fddf10da9b14db38b0c4aed9fdb31655c43100ff 0.00 MB 1 0
64,059 64,059 0000000000f1401a707cc39680ddcce6244490e3f664869cbb85bdcb30ba0e42 0.00 MB 1 0
64,058 64,058 0000000005a19d2178035b7feacb8e4b74ef4b9493498fb9df8796a91ef0e31d 0.00 MB 1 0
64,057 64,057 000000000a8327d6c97a0acb78d640f8298928ff5fbb2ba08f0c16efe707f04b 0.00 MB 1 0
64,056 64,056 00000000097818c5d4c562102cb0df174c5c5b5aedb5cd59dd1e2eac060d1042 0.00 MB 1 0
64,055 64,055 000000000875b10b91e404aaf27602f508eaf5209249b9e5d7088d9a9c70e52f 0.00 MB 1 0
64,054 64,054 00000000033750aa477c845a65d0acb5efbba010b1069eb3c67fbd1399b85ced 0.00 MB 1 0
64,053 64,053 000000000b497f9cca8f3742be9bd12248f90f226166d0127f1fadf1499d6db5 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.66 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,193.10 GB sent, 116.77 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.