https://github.com/citizenweb3/validatorinfo
Web3 Blockchain Explorer. Validator, Mining Pool, Token and Network Real-time Metrics. Interactive Onchain Dashboard
https://github.com/citizenweb3/validatorinfo
bitcoin blockchain blockchain-explorer citizenweb3 cosmos crypto cryptocurrencies cryptocurrency dapp dashboard ethereum explorer mining polkadot pos proof-of-work staking validatorinfo validators web3
Last synced: 11 months ago
JSON representation
Web3 Blockchain Explorer. Validator, Mining Pool, Token and Network Real-time Metrics. Interactive Onchain Dashboard
- Host: GitHub
- URL: https://github.com/citizenweb3/validatorinfo
- Owner: citizenweb3
- License: other
- Created: 2023-11-21T13:40:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-17T14:31:49.000Z (12 months ago)
- Last Synced: 2025-04-18T00:16:49.326Z (12 months ago)
- Topics: bitcoin, blockchain, blockchain-explorer, citizenweb3, cosmos, crypto, cryptocurrencies, cryptocurrency, dapp, dashboard, ethereum, explorer, mining, polkadot, pos, proof-of-work, staking, validatorinfo, validators, web3
- Language: TypeScript
- Homepage: https://validatorinfo.com/
- Size: 26.3 MB
- Stars: 23
- Watchers: 1
- Forks: 1
- Open Issues: 65
-
Metadata Files:
- Readme: README.md
- License: LICENSE-BG
Awesome Lists containing this project
- awesome-ccamel - citizenweb3/validatorinfo - Web3 Blockchain Explorer. Validator, Mining Pool, Token and Network Real-time Metrics. Interactive Onchain Dashboard (TypeScript)
README
# [Validator Info](https://validatorinfo.com/)
> Web3 Blockchain Explorer. Validator, Mining Pool, Token and Network Real-time Metrics. Interactive Onchain Dashboard.

### | [Blog](https://validatorinfo.com/blog/) | [X](https://x.com/therealvalinfo) | [Docs](https://github.com/citizenweb3/validatorinfo/blob/main/docs/vinfo%20draft%20paper.md) | [Design Assets](https://github.com/citizenweb3/validatorinfo/tree/main/public) | [`BE GOOD` License](https://github.com/citizenweb3/validatorinfo/blob/main/LICENSE-BG) |
-----------------------------------------
## Getting Started
### Prerequisites
Make sure you have the following installed on your system:
```bash
sudo apt install cmdtest
sudo apt install nodejs
sudo apt install npm
sudo apt install build-essential
npm install --global yarn
yarn global add pm2
```
### Clone repo
```bash
git clone https://github.com/citizenweb3/validatorinfo.git validatorinfo
cd validatorinfo
```
### Prepare Environment and Makefile
```bash
cp .env.example .env
cp Makefile.example Makefile
```
### Install dependencies
```bash
yarn
```
### Development
```bash
make create-deps
make generate-client
make deploy-migrations
make init-chains
make generate-schema
yarn dev
```
### Build
```bash
make create-deps
make generate-client
make deploy-migrations
make init-chains
make generate-schema
yarn build
```
### Start Built Project
```bash
pm2 start "yarn start" --name next
pm2 start "make start-indexer" --name indexer
```
---------------------------------------