Sentinel Chain Explorer is a Sentinel blockchain explorer built with NodeJS, Express and Parity. It does not require an external database and retrieves all information on the fly from a backend Sentinel node.
- Browse blocks, transactions, accounts, bridge information and contracts
- View pending transactions
- Display contract internal calls (call, create, suicide)
- Upload & verify contract sources
- Show Solidity function calls & parameters (for contracts with available source code)
- Display the current state of verified contracts
- Named accounts
- Advanced transaction tracing (VM Traces & State Diff)
- View failed transactions
- Live Backend Node status display
- Submit signed Transactions to the Network
- Support for all Bootswatch skins
- Accounts enumeration
- Signature verification
- Supports IPC and HTTP backend connections
- Responsive layout
This blockchain explorer is intended for private Sentinel chain. As it does not have a dedicated database all data will be retrived on demand from a backend Parity node. Some of those calls are ressource intensive (e.g. retrieval of the full tx list of an account) and do not scale well for acounts with a huge number of transactions. We currently develop the explorer using the Kovan testnet but it will work with every Parity compatible Ethereum network configuration. The explorer is still under heavy development, if you find any problems please create an issue or prepare a pull request.
Supported OS: Ubuntu 16.04 and +
Supported Sentinel backend nodes: Parity (Geth is currently not supported as it does not allow account and received/sent tx enumeration)
- Setup a nodejs & npm environment
- Clone this repository to your local machine:
git clone https://github.com/SentinelChain/sentinel-chain-explorer.git --recursive(Make sure to include--recursivein order to fetch the solc-bin git submodule) - Install all dependencies:
npm install - Rename
config.js.exampleintoconfig.jsand adjust the file to your local environment - Start the explorer:
npm start - Browse to
http://localhost:3000
Build then run the container
docker build -t sentinel-chain-explorer .
docker run -p 3000:3000 sentinel-chain-explorerOr directly bind the config.js file to avoid rebuilding the image
docker run -p "3000:3000" \
-v "$(pwd)/config.js":/usr/src/app/config.js \
sentinel-chain-explorerdocker-compose up