All Projects → yogh-io → Bitcoin Transaction Explorer

yogh-io / Bitcoin Transaction Explorer

Licence: mit
Simple and pure block explorer you can run on top of a full node

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Bitcoin Transaction Explorer

Dotcoin
A simple and integrity blockchain implementation in Golang
Stars: ✭ 89 (-46.06%)
Mutual labels:  blockchain, bitcoin, block
Blockchain Python
A blockchain implementation in Python
Stars: ✭ 233 (+41.21%)
Mutual labels:  blockchain, bitcoin, block
My Token
📈Track token prices of your favorite exchanges in terminal!
Stars: ✭ 141 (-14.55%)
Mutual labels:  blockchain, bitcoin
Arcbit Ios
arcbit - iOS bitcoin wallet http://arcbit.io
Stars: ✭ 142 (-13.94%)
Mutual labels:  blockchain, bitcoin
Spruned
A Bitcoin-without-Blockchain client w/ RPC that can provide any block or transaction
Stars: ✭ 149 (-9.7%)
Mutual labels:  blockchain, bitcoin
Bitiodine
A Rust Bitcoin blockchain parser with clustering capabilities, allowing to group together addresses in ownership clusters. Please contact @mikispag if interested in using BitIodine for any real-world use case.
Stars: ✭ 135 (-18.18%)
Mutual labels:  blockchain, bitcoin
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (-15.76%)
Mutual labels:  blockchain, bitcoin
Blockchain
blockchain (crypto) tools, libraries & scripts in ruby
Stars: ✭ 143 (-13.33%)
Mutual labels:  blockchain, transactions
Bitcoin Kit Ios
Full Bitcoin library for iOS, implemented on Swift. SPV wallet implementation for Bitcoin, Bitcoin Cash and Dash blockchains.
Stars: ✭ 134 (-18.79%)
Mutual labels:  blockchain, bitcoin
Chainlink Ruby
Easily connect your applications to blockchains
Stars: ✭ 152 (-7.88%)
Mutual labels:  blockchain, bitcoin
Awesome Token Sale
Curated list of token sale resources / ICO resources
Stars: ✭ 149 (-9.7%)
Mutual labels:  blockchain, bitcoin
Interledger Rs
An easy-to-use, high-performance Interledger implementation written in Rust
Stars: ✭ 155 (-6.06%)
Mutual labels:  blockchain, bitcoin
Curso blockchain
Indtroductory course to cryptocurrencies and applications of Blockchain technologies.
Stars: ✭ 161 (-2.42%)
Mutual labels:  blockchain, bitcoin
Winquicklook
"Quick Look" like Windows Explorer file viewer.
Stars: ✭ 135 (-18.18%)
Mutual labels:  explorer, viewer
Peatiocryptoexchange
An open-source Crypto-Currency exchange. Peatio v3.0 Coming Soon !
Stars: ✭ 141 (-14.55%)
Mutual labels:  blockchain, bitcoin
Blockchain2graph
Blockchain2graph extracts blockchain data (bitcoin) and insert them into a graph database (neo4j).
Stars: ✭ 134 (-18.79%)
Mutual labels:  blockchain, bitcoin
Bitcoin Bubble Index
A visualization analysis tool for price bubble of Bitcoin, including basic price information, 60-days accumulative increase, hot keywords index, and bubble index.
Stars: ✭ 143 (-13.33%)
Mutual labels:  blockchain, bitcoin
Blockchain Java
A simplified blockchain implementation in Java
Stars: ✭ 160 (-3.03%)
Mutual labels:  blockchain, bitcoin
Chainabstractionlayer
Blockchain abstraction layer
Stars: ✭ 131 (-20.61%)
Mutual labels:  blockchain, bitcoin
Awdy
are we decentralized yet? an analysis of how truly decentralized cryptocurrency networks are
Stars: ✭ 133 (-19.39%)
Mutual labels:  blockchain, bitcoin

Bitcoin node block explorer

Simple and pure block explorer you can run on top of a full node.

This block explorer patches into your Bitcoin Core node's JSON-RPC interface to retrieve transaction and block information.

It runs as a simple web application you can run on any J2EE Web Container (Jetty, Tomcat, etc.), point it toward your node and you're good to go. (Note: it also supports running on top of Blockr's API and maybe some others later on)

This block explorer remains pure to the blockchain, this means it is not dependent on any source of data other than the blockchain. Bitcoin amount values will not be displayed in fiat, transaction or block receive times do not exist.

Features

Block viewer

Displays all available block information. Includes an interactive hex viewer which displays the meaning of every last byte in the headers, aswell as the coinbase transaction.

Transaction viewer

Displays all available transaction information. Like in the block viewer, displays the meaning of every single byte in a raw transaction through an interactive hex viewer.

Universal search

Input anything, transaction ID, block height, block hash, raw blocks, raw transactions, and this explorer will figure out what you mean and display what's appropriate.

Mining simulator

Constructs a raw block which, if valid, would be accepted by the whole of the network. Visualizes what happens when you're mining, increases the nonce/extranonce, updates the timestamp and computes the block hash. Allows you to control the whole thing.

A sneak-preview client-only version of this is available at http://jornc.github.io/bitcoin-transaction-explorer/

This preview also includes the block and transaction hex viewers with contextual information for each field.

Script viewer

Visualizes bitcoin script interpretation in a step-by-step basis.

Raw transaction interpreter

Insert any raw transaction and this explorer will display em like it would any other transaction.

Raw block interpreter

Insert any raw block and --- see above.

Raw script interpreter

See above.

Direct JSON-RPC interface (Optional, and under construction)

If this explorer is run on top of a node (rather than an external API), then a direct JSON-RPC interface to the node may be spoken to. Just insert any command you're used to (getblock, getrawtransaction, getbestblockhash, etc.), and the explorer will display the response, and show some extra information of the stuff it understands (transaction/block ids or their serialized form, script, and many other bitcoin-specific and unspecific fields).

Address balances

If this explorer is run on top of a node that has an address index such as this one: https://github.com/btcdrak/bitcoin/tree/addrindex-0.11 then this explorer will be able to look up the balance of an address and show every output associated with it.

How to run it

This project is currently hosted on top of the following 2 nodes:

http://srv1.yogh.io

http://srv2.yogh.io

The former will closely follow the master branch, and will likely not always be as stable / contain bugs, but contain the latest changes.

The latter remains conservative and lags at stable releases.

You can run it yourself (encouraged! let me know!) if you have a fully built .war file of this project (see below), simply deploying it into any J2EE web container will suffice.

If you don't have a full node you can connect to Blockr (which is default if unconfigured), if you do the node needs to be fully indexed (txindex=1) and act as a JSON-RPC server (server=1).

How to build it

  • [clone the repository]

  • mvn install

  • Find the .war file in /bitcoin-transactions-server/target/

  • deploy the (extracted) .war file to a J2EE web container (jetty, tomcat, etc.)

  • done

Configuration

  • Navigate to the web application

  • Enter 'config' in the search field, hit enter

  • You'll figure it out from there

Implementation

The web application is a GWT (Google Web Toolkit) project that's patched into, essentially, a JSON-RPC proxy for a Bitcoin Core node. The proxy can be configured to reach out to Blockr's API (and others) if you aren't running a node, although it's always nice to use your own node instead.

The proxy will only request the node's getblock, getblockhash, getbestblockhash and getrawtransaction methods. It constructs (if needed) and forwards raw transaction and block data which will be interpreted locally on the client (in the browser).

It'll run in any J2EE web container when built as a .war file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].