Skip to content

Blockchain Explorer for Ethereum Private blockchain.

Notifications You must be signed in to change notification settings

cwsnt/PrivateEtherExplorer

 
 

Repository files navigation

SampleDapp

Blockchain Explorer for my private ethereum block.

This is a block chain explorer for my private network created through geth. This project is inspired from etherscan.io

Running the app

  1. Run your private ethereum network. Change --rpcaddr "a.b.c.d" as per IP addr of the system running the private network.

     geth --identity "NodeName" --networkid 888 --rpc --rpcport "8545" --rpccorsdomain "*" --rpcaddr "a.b.c.d" --datadir "./chaindata/" --port "30330" --nodiscover --rpcapi "db,eth,net,web3,personal"
    
  2. Edit "serverConfig.js" Set "ChainIpAddr" property equal to IP addr of the system running the private network. ( same as used in step 1). OR You can set it to 'localhost' if ethereum chain is running on your local machine.
    You can also set other configurations also.

  3. Run "npm start". The app is running on "localhost:port" defined in "serverConfig.js" (default : localhost:8546).

  4. For first time there will not be any block data. So please click 'Get blocks from Chain' button on Block List Page. It will take some time so be patient.

About

Blockchain Explorer for Ethereum Private blockchain.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 51.6%
  • HTML 45.6%
  • CSS 2.8%