2

blk-io/blk-explorer: https://github.com/blk-io/blk-explorer-free

Hi,

I'm relatively new to ethereum, and I am having difficulty implementing the blk.io block explorer (for my private ethereum network).

I was wondering what to enter for 'NODE_ENDPOINT' ? I have no idea what a node endpoint is

Any help appreciated

Dar K
  • 35
  • 4

1 Answers1

1

To run a block explorer, first you need to run an Ethereum node, like geth and then connect your explorer to it - use the same address you tell geth to use with --rpcaddr flag. Or you can find a public node exposing all the API required by the explorer and connect there, but my advise is to run your own.

Utgarda
  • 791
  • 5
  • 20