Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,114 transactions (5.83 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,295 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,111 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,294 (839,401 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
69,893 69,893 00000000011ae702d2af357a88b1c0c2eb5f234a3837b8fbaf4a089b56a6dace 0.00 MB 1 0
69,892 69,892 00000000013e0d1ab901d67487aa726b6e2fc6b3a0c7c3785006fff28bcac623 0.00 MB 1 0
69,891 69,891 0000000000333a9c1cb9c1008dbd9ca48357d84410b0e47c58d833987d2f61bb 0.00 MB 1 0
69,890 69,890 000000000153f3b5e1ec100f3fc309c842de6e7153cd94ac4f95dd8e056082dc 0.00 MB 2 0
69,889 69,889 0000000000a419611965455814e410a7518a8f045e8321f3c6dd97c29e7254cd 0.00 MB 1 0
69,888 69,888 000000000016f41cc5644905bec909105bc173f4c26808d4d38f1d0c18d1a598 0.00 MB 1 0
69,887 69,887 00000000007f63587365f5a8b365bc0c5fda2b7f808ff439981e518cab8988ff 0.00 MB 2 0
69,886 69,886 00000000015e88ae9c5e1b1b3cd2ffbf82185aaa87e1a6ac5a25c8a71ab5892b 0.00 MB 1 0
69,885 69,885 000000000148008728d93fd8da6699de2d495a4bf15c37c41ec9b0f4866e3843 0.00 MB 7 0
69,884 69,884 0000000001588f5329ac0f5ae2d748b09af979d5b75a6cf22ed49b829af2b7e5 0.00 MB 2 0
69,883 69,883 0000000000be31b9cdd907a3c572695f7acd5f363c5dcb8abb706678d1f7d8ca 0.00 MB 1 0
69,882 69,882 00000000001a1e43f7129946f071e062df4c59e2e0e04f94dde4526c626dfc5c 0.00 MB 1 0
69,881 69,881 0000000000082273b95068fb3be513f652d5b45b0c10a9f8fccfbdd7f167e2e8 0.00 MB 6 0
69,880 69,880 000000000003089036fd6bc8c5eb6d9d4f045cc856eddd4bdf1e9180e54098d9 0.00 MB 3 0
69,879 69,879 00000000015de8b0d014c2bbbcdc8dae204016363cc38fbd70485f7d846f2ac5 0.00 MB 1 0
69,878 69,878 0000000000b8e3c3bd407576c92ff4a45a58e26d3f6285988df6623f37378479 0.00 MB 3 0
69,877 69,877 0000000000ccccd4b82e6d38aad7d7fedb78b534fcfd375032b85a089b1846e1 0.00 MB 2 0
69,876 69,876 00000000003bba59ced6aa03b38951379a1b776e401f0b56a80750ab50b2380a 0.00 MB 1 0
69,875 69,875 000000000156cc0ced0f82b91199d9acb6ae89c5f22d256cd78f4bc29a658244 0.00 MB 4 0
69,874 69,874 00000000006862318ec8879d4c29c3f454d2d87f8a74375f388db56980b169e9 0.00 MB 2 0
69,873 69,873 0000000000983bc38fd8a9c2a9e208eb6a683d28895c82d60c295fbb211ab0c5 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 772.08 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,055.46 GB sent, 108.55 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.