An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# [Validator Info](https://validatorinfo.com/)
> Web3 Blockchain Explorer. Validator, Mining Pool, Token and Network Real-time Metrics. Interactive Onchain Dashboard.

![Telegram-Storie](https://github.com/user-attachments/assets/65689ccc-e5a4-4ee2-8ee7-ffb86bde4233)

### | [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
```
---------------------------------------