Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.52 KB

README.md

File metadata and controls

57 lines (38 loc) · 1.52 KB
wget https://raw.githubusercontent.com/stakingcabin/celestia-task/main/consensus.py

consensus

A Simple tool for check validator sign status for recent 100 blocks and the state of the consensus

Quick start:
cd && git clone https://github.com/stakingcabin/celestia-task.git && cd celestia-task
# show usage
python3 consensus.py --help
# show local validator sign status for recent 100 blocks
python3 consensus.py sign-check
# show validators consensus staus 
python3 consensus.py
Requirements:
  • Ubuntu 20.04
  • python3.8
  • pip3
  • For the correct work of the application you should configure RPC 127.0.0.1:26657 and REST 127.0.0.1:1317 endpoints.
Installing:

Technically, the installation itself is cloning the repo on your validator

$ cd && git clone https://github.com/stakingcabin/celestia-task.git && cd celestia-task

you can run the app by following:

$ python3 consensus.py sign-check

Example Example

$ python3 consensus.py Example

Thanks https://github.com/Northa/consensus.git, Part code copy from that repo