Validator Portal
The Monolythium Validator Portal at validators.monolythium.com is a community governance platform for validators, delegators, and anyone interested in the health of the network. It provides validator profiles, services, ecosystem contributions, network statistics, and a staking calculator.
Browsing Validators
Validator Directory
The main validators page lists all network validators with two tabs:
- Forging -- Active validators currently participating in consensus (bonded)
- Standby -- Validators that are unbonded or unbonding
Each validator entry displays:
| Field | Description |
|---|---|
| Rank | Position by voting power |
| Moniker | Validator display name |
| Voting Power | Total staked tokens |
| Commission | Percentage taken from delegator rewards |
| Uptime | Block signing percentage |
| Delegators | Number of delegator addresses |
You can search validators by name, sort by any column, and switch between table and card views.
Validator Detail
Click any validator to see their full profile page, which includes:
- Header: Avatar, name, rank, status badge (Bonded/Unbonding/Unbonded/Jailed), description, and social links
- Stats cards: Commission, max commission, voting power, uptime, delegator count
- Performance chart: 30-day historical chart of tokens, rank, commission, uptime, and delegator trends
- Delegators tab: Paginated list of all addresses delegating to this validator with their shares and balances
- Services: Recent services published by this validator
- Contributions: Recent ecosystem contributions logged by this validator
Comparing Validators
The compare page lets you select 2--4 validators and view their metrics side by side:
- Voting power and percentage
- Commission rate and max commission
- Uptime (with visual bar)
- Delegator count
- Status
This is useful when deciding which validator to delegate to.
Staking Calculator
The staking calculator at validators.monolythium.com/calculator estimates potential rewards for a given stake amount.
Inputs:
| Parameter | Description |
|---|---|
| Stake Amount | Amount of LYTH to stake |
| Commission | Validator's commission rate (%) |
| APR | Annual percentage rate (%) |
Outputs:
- Estimated daily, weekly, monthly, and yearly rewards
- Breakdown of gross rewards vs commission deducted
- Network average commission and APR for context
Network Statistics
The stats page provides a real-time overview of the network:
- Active Validators / Total Validators -- How many validators are currently in the active set
- Total Staked LYTH -- Aggregate tokens bonded to validators
- Bonding Rate -- Percentage of total supply currently staked
- Network APR -- Estimated annual percentage rate for staking rewards
- Average Commission -- Mean commission rate across active validators
- Average Uptime -- Mean block signing rate
- Total Delegators -- Number of unique delegator addresses
- Block Height -- Latest indexed block
Charts include a top-10 validators by voting power bar chart and a commission rate distribution breakdown.
Services
Validators can publish services -- reward-sharing plans, mission statements, and operational details. All published services are browsable at validators.monolythium.com/services.
Each service shows the validator's name, title, content preview, creation date, and view count. Services support Markdown formatting.
Contributions
Validators can log their ecosystem contributions across 14 categories:
| Category | Examples |
|---|---|
| Development | Code contributions, tooling, libraries |
| Infrastructure | Running RPC nodes, relayers, archive nodes |
| Governance | Governance discussions, voting analysis |
| Security | Audits, vulnerability reports, monitoring |
| Marketing | Social media, partnerships, outreach |
| Community | Events, meetups, Discord moderation |
| Education | Tutorials, documentation, workshops |
| Tools | Block explorers, dashboards, bots |
| Bridges | IBC relaying, cross-chain integrations |
| Analytics | Data dashboards, chain analytics |
| Ecosystem | General ecosystem development |
| dApps | Decentralized application development |
| Validators | Validator operations, best practices |
| General | Other contributions |
Browse all contributions at validators.monolythium.com/contributions, filterable by category.
For Validators
Claiming Your Validator
If you operate a validator on Monolythium, you can claim your profile on the portal:
- Go to validators.monolythium.com/register
- Connect your wallet (MetaMask or any EIP-1193 compatible wallet)
- Search for and select your validator
- Sign a verification message to prove wallet ownership
- Fill in your profile details (bio, social links, payout address)
Your wallet address must match the operator address of the validator you're claiming.
Managing Your Profile
After claiming, you can update your validator profile at any time:
- Display name and avatar -- Customize how your validator appears in the directory
- Bio -- Describe your validator and team (Markdown supported)
- Social links -- Website, Twitter, GitHub, Telegram
- Payout address -- Public address for delegation-related communications
- Banner image -- Header image for your validator page
Publishing Services
Create services to communicate your reward-sharing plan and operational details:
- Navigate to your validator's profile page
- Click "New Service"
- Write your service title and body (Markdown supported)
- Publish immediately or save as draft
Services can be edited, pinned to your profile, or archived.
Logging Contributions
Document your ecosystem contributions to build reputation and transparency:
- Navigate to your validator's profile page
- Click "New Contribution"
- Select a category, write a title and description
- Optionally add a featured image
- Publish
Public API
The Validator Portal provides a read-only public API for querying validator data programmatically.
Base URL: https://api.validators.monolythium.com
Validators
GET /api/validators
Returns a paginated list of validators.
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
limit | number | Results per page (default: 25) |
status | string | Filter by bonded or unbonded |
search | string | Search by moniker |
sort | string | Sort by rank, tokens, commission_rate, uptime_percentage, or voting_power |
order | string | asc or desc |
GET /api/validators/:operatorAddress
Returns detailed information for a single validator, including profile data, recent services, and recent contributions.
GET /api/validators/:operatorAddress/voters
Returns a paginated list of delegators for a validator with their shares and balances.
GET /api/validators/:operatorAddress/snapshots?days=30
Returns historical snapshots for charting. The days parameter accepts 1--365 (default: 30).
Services
GET /api/services
Returns a paginated list of published services.
| Parameter | Type | Description |
|---|---|---|
page | number | Page number |
limit | number | Results per page |
GET /api/services/:id
Returns a single service by ID.
Contributions
GET /api/contributions
Returns a paginated list of published contributions.
| Parameter | Type | Description |
|---|---|---|
page | number | Page number |
limit | number | Results per page |
category | string | Filter by category (e.g. development, infrastructure, security) |
GET /api/contributions/:id
Returns a single contribution by ID.
Network Statistics
GET /api/stats
Returns current network statistics including active validator count, total staked, bonding rate, APR, average commission, average uptime, total delegators, and block height.
Staking Calculator
GET /api/calculator?amount=1000&commission=0.05&apr=0.08
Returns estimated staking rewards.
| Parameter | Type | Description |
|---|---|---|
amount | number | LYTH to stake |
commission | number | Validator commission (0--1) |
apr | number | Annual percentage rate (0--10) |
Categories
GET /api/categories
Returns the list of available contribution categories.
Example
# List bonded validators sorted by voting power
curl "https://api.validators.monolythium.com/api/validators?status=bonded&sort=voting_power&order=desc"
# Get a specific validator
curl "https://api.validators.monolythium.com/api/validators/monovaloper1abc..."
# Network stats
curl "https://api.validators.monolythium.com/api/stats"
# Staking rewards estimate
curl "https://api.validators.monolythium.com/api/calculator?amount=5000&commission=0.05&apr=0.08"
Try the API
Query live validator data directly from this page:
Validator Directory
Query the live validator list from the Monolythium Validator Portal API.
Related
- Staking Overview -- How staking works on Monolythium
- Validator Requirements -- Hardware and software requirements
- Validator Registration -- How to become a validator
- Validator Economics -- Commission, rewards, and delegation