Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,536 transactions (5.03 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,070 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,047 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,069 (864,811 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
45,258 45,258 000000002955fda36a9255feb604b4784ae607af0f33d83b637c6080c160ece7 0.00 MB 1 0
45,257 45,257 000000003679696373bd12077a7780edb8b7292775a712d70d53298981a216f8 0.00 MB 1 0
45,256 45,256 000000001d158ef0e01cf5dc60dbe9900a4b565a260c289950a926f15a8217fe 0.00 MB 1 0
45,255 45,255 0000000025e616c03e9c3a61490aa26b252446f290a25c11bcf86cee8d169b05 0.00 MB 1 0
45,254 45,254 000000000da53d1b15578486212862ba7f46934afb7021f9fedd1903416f6023 0.00 MB 1 0
45,253 45,253 000000000ea32dc4405d18d0165ec1980e28360fc4397de2eb3f713957fdf14c 0.00 MB 1 0
45,252 45,252 0000000023d4f1e2657cb8fb3c11d5ec18c74b25a71d888adfe1c9b82df275a7 0.00 MB 1 0
45,251 45,251 0000000031b10c78358db8e6328a6a3ee4663758f89713c22d5dff068d5220cf 0.00 MB 1 0
45,250 45,250 0000000006625e6eb16ebffd5b4d648f2f20065c42afa29f3518f0b489104228 0.00 MB 1 0
45,249 45,249 000000001373c7392be94ccd648c8e0fe5339059f3b0acfdfae723005fd2abb9 0.00 MB 1 0
45,248 45,248 00000000034a714f19c102e18e07fa8a8743938d740069b6002873c5f1426717 0.00 MB 1 0
45,247 45,247 0000000033c8d9c22576b065b7152bb13c9fcb90e8f08cab9bf1c5f47bc09f3b 0.00 MB 1 0
45,246 45,246 0000000005e742c618f3ea2f8248fc400b012428c3ba057b692b57a7cf50cce3 0.00 MB 1 0
45,245 45,245 0000000031e091df62cd730f7d292aeecb76ffe27d3b56f496691134bb95efa0 0.00 MB 1 0
45,244 45,244 00000000083de6d7e0bc5808bbf31ee9c1cd091e93b68add271655700ff86581 0.00 MB 1 0
45,243 45,243 000000000f8afbc67cad7226137c3a0d805d835e598105b8d79d961ca1c781e2 0.00 MB 1 0
45,242 45,242 000000001cf02d27dcf977c7c8051244a362f1bec3eb8b645865b6f6698b6d1c 0.00 MB 1 0
45,241 45,241 000000000b57b491cd70dc53a94fec0abadb8ac9e4ff3c3b80d77cc7ee1d6ec2 0.00 MB 1 0
45,240 45,240 000000001152e88e31e3ae79cfe50c5a028c47b1f26860e74ff18bcbf892b148 0.00 MB 1 0
45,239 45,239 0000000028a62aee637bb2b5b735664809f2ac6ba33ca7d9da3f92f241874b28 0.00 MB 1 0
45,238 45,238 0000000012f3fd1e5a8b47ef1386a5378f011ef2bb4d5080e5e83861abbcba54 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.52 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,186.74 GB sent, 116.11 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.