Front-end to easily browse Reputation Network actors and transactions.
Available live at explorer.reputation.network
You can run the explorer through different methods. By default, it'll listen at localhost:8083.
You can run REY explorer locally by using rey-cli
, so that cloning this repository is not needed. Simply run:
rey-cli dev explorer
You can build and run a docker image:
docker build . -t rey-explorer
docker run -it -p 8083:8083 rey-explorer
You can also run the pre-built docker image that rey-cli
uses:
docker run -it -p 8083:8083 reputationnetwork/explorer
You can build and run the node project locally:
git clone [email protected]:reputation-network/rey-explorer.git && cd rey-explorer
yarn install
yarn prepare
yarn start
You can enable nodemon so that the server restarts on changes.
yarn install --dev
yarn prepare
yarn start:dev
PORT
: Port that the server will listen to. Default: 8083.BLOCKCHAIN_NODE_URL
: URL of the blockchain node's RPC endpoint.REY_CONTRACT_ADDRESS
: Address of REY's contract.REGISTRY_CONTRACT_ADDRESS
: Address of registry's contract.
The addresses have sensible defaults for using rey-cli's development blockchain node.
MIT © 2018 Reputation Network