Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,706 transactions (5.02 vMB)

Priority:

  • 1 sats/vbyte = (24 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,071 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,357 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,070 (839,866 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
70,204 70,204 0000000000f6dae9c7d9a09cf8658296d56fdd91e57168fd606cbccb387431c5 0.00 MB 1 0
70,203 70,203 00000000000e05311a05f85930610bf7d6167aa51f67aa7f3a46cbc167cdde5a 0.00 MB 1 0
70,202 70,202 0000000000ef48b32f8508bf8321881e069de8d452f2ff153ce9966955563ab9 0.00 MB 2 3,891
70,201 70,201 00000000001dbf32bd55d22aa051adc4b144216cdb5e3ff067ae5791e83bba4a 0.00 MB 3 3,868
70,200 70,200 00000000014ea4c652c06feb6666bf1db97d40db15481311bed632169198091e 0.11 MB 9 978
70,199 70,199 000000000005a64557f42e0698e71a2f80a2f7ac858c21e88aeae6fbe0e39856 0.15 MB 2 1,012
70,198 70,198 00000000000675b668c5f33376dc9041784a00a694cab0d7303c50ad71ceef25 0.00 MB 1 0
70,197 70,197 00000000015c10018eb2fec05b0af76376e02fbdb92826e5844a60dadfa72004 0.00 MB 1 0
70,196 70,196 00000000010b64c4ee50e0491efd3d427fb2efcb19c5919d09f8ec93e71239fb 0.00 MB 1 0
70,195 70,195 00000000011d662fb68a8f38e3025b9cdd70debfe3f2f7c27d228bc619200ba1 0.00 MB 1 0
70,194 70,194 0000000000177e168517bdec45d6f0115ca59d19c9d52fa8b03da26235f4af2c 0.00 MB 1 0
70,193 70,193 00000000011a8125a08a28aab2ef5e94e5137d114a647ad2ea96611a41640e18 0.00 MB 1 0
70,192 70,192 00000000009476e7a850508dde52edb38eca18e7ebe55e3a6b34f2ca7249634a 0.00 MB 1 0
70,191 70,191 0000000000ce9123af13268ed955d8c1d2d49ca96231c08b32dd5e9c382f0d94 0.00 MB 1 0
70,190 70,190 0000000000376be2d628909d27669a86fa4e35d817e467465429441c4724d741 0.00 MB 2 3,875
70,189 70,189 0000000000cf18071bd401b2d8de534cfadd9479a87b7866aa80ab73b17e9d28 0.00 MB 1 0
70,188 70,188 0000000000ec754e108e4f5f9bed4cf2b82b6efbc1c3bafb56f558761b8b4c09 0.00 MB 1 0
70,187 70,187 00000000014eb7772016a82b8e84806485116c50e1589c0c863b256460034013 0.01 MB 37 216
70,186 70,186 0000000000ee0c6313ec17a5b76e5f3a94a288fcc227a7770ae3fd6ff081bdaa 0.05 MB 200 58
70,185 70,185 000000000149a911463409fada467aa6de45d6ec01ad5a89329777dd23f8fe09 0.11 MB 420 0
70,184 70,184 000000000083b922ef4a511beb98f0f533d24a1ec98c2a29c3a1defa609a7d87 0.20 MB 776 0
Previous 10 blocks ↓
Total Size: 773.53 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.80 GB sent, 116.12 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.