Ana içeriğe geç

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:

FieldDescription
RankPosition by voting power
MonikerValidator display name
Voting PowerTotal staked tokens
CommissionPercentage taken from delegator rewards
UptimeBlock signing percentage
DelegatorsNumber 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:

ParameterDescription
Stake AmountAmount of LYTH to stake
CommissionValidator's commission rate (%)
APRAnnual 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:

CategoryExamples
DevelopmentCode contributions, tooling, libraries
InfrastructureRunning RPC nodes, relayers, archive nodes
GovernanceGovernance discussions, voting analysis
SecurityAudits, vulnerability reports, monitoring
MarketingSocial media, partnerships, outreach
CommunityEvents, meetups, Discord moderation
EducationTutorials, documentation, workshops
ToolsBlock explorers, dashboards, bots
BridgesIBC relaying, cross-chain integrations
AnalyticsData dashboards, chain analytics
EcosystemGeneral ecosystem development
dAppsDecentralized application development
ValidatorsValidator operations, best practices
GeneralOther 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:

  1. Go to validators.monolythium.com/register
  2. Connect your wallet (MetaMask or any EIP-1193 compatible wallet)
  3. Search for and select your validator
  4. Sign a verification message to prove wallet ownership
  5. 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:

  1. Navigate to your validator's profile page
  2. Click "New Service"
  3. Write your service title and body (Markdown supported)
  4. 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:

  1. Navigate to your validator's profile page
  2. Click "New Contribution"
  3. Select a category, write a title and description
  4. Optionally add a featured image
  5. 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.

ParameterTypeDescription
pagenumberPage number (default: 1)
limitnumberResults per page (default: 25)
statusstringFilter by bonded or unbonded
searchstringSearch by moniker
sortstringSort by rank, tokens, commission_rate, uptime_percentage, or voting_power
orderstringasc 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.

ParameterTypeDescription
pagenumberPage number
limitnumberResults per page
GET /api/services/:id

Returns a single service by ID.

Contributions

GET /api/contributions

Returns a paginated list of published contributions.

ParameterTypeDescription
pagenumberPage number
limitnumberResults per page
categorystringFilter 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.

ParameterTypeDescription
amountnumberLYTH to stake
commissionnumberValidator commission (0--1)
aprnumberAnnual 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.