Validator
Origin:
composes, a standard blockchain pattern, not a Solidus invention. Solidus status:testnet, four validators live on the public testnet, stake-gated in testnet-internal units only.
A validator is a node that participates in producing and agreeing on new blocks: it runs the consensus software, checks that proposed transactions are valid, votes on blocks, and (on most modern chains) has bonded some amount of the network's native asset as a stake. That stake gives the network a way to punish bad behavior economically (see Slashing): a validator with something to lose has a reason to follow the rules.
Validator sets, staking, and stake-weighted influence are not new ideas: they are the default admission model for nearly every blockchain that doesn't use proof-of-work.
Where it comes from
Stake-based validator sets trace back to early proof-of-stake proposals in the 2010s and are now the norm: Ethereum moved its entire consensus layer to a staked validator set in 2022, and Cosmos, Solana, Avalanche and most newer L1s were staked validator networks from launch. Solidus composes this pattern as-is; it doesn't propose a new staking mechanism.
What's actually running
Today, rpc.solidus.network is served by four validators. To be one of them, a node must post a minimum stake, 1,000 SLDS-equivalent base units, checked in the solidus-txns::staking code. That number is real in the sense that the code enforces it; it is not real in the sense that no $SLDS token has ever been publicly distributed or traded, it exists only as an internal accounting unit inside the test network, with no market value.
Public-facing Solidus documentation also describes a future three-tier structure, Core Validators, Subnet Validators, and Light Nodes, each with its own hardware requirements and stake threshold, plus reputation scoring and uptime-based standing. None of that exists on the current network: every one of the four testnet validators runs the identical binary, on the same committee, with none of the tiering, reputation, or uptime-gating logic active yet.
Check it yourself
rpc.solidus.network is a live, public JSON-RPC endpoint: anyone can query it directly, no account required. The staking requirement itself is visible in source in the public solidusnetwork/protocol repository's solidus-txns crate.
Related terms: Proof-of-Identity · HotStuff · Slashing · Committee Election · BFT
Nereden geliyor
Bunu başkası belirtti. Solidus bir araya getiriyor.
Stake-weighted validator sets are the standard block-production admission model for almost every non-proof-of-work blockchain, Ethereum's beacon chain, Cosmos/Tendermint chains, Solana, Avalanche, and many others all gate consensus participation behind a bonded stake. Solidus composes this well-established pattern rather than inventing a new one; the only original piece layered on top of it is the eligibility idea described under Proof-of-Identity.
Bunu nasıl doğrularsınız
Test ağında çalışıyor. Ana ağda değil.
rpc.solidus.network is a confirmed-live, publicly queryable JSON-RPC endpoint into the testnet. The staking code path (`solidus-txns::staking`) is visible in the public solidusnetwork/protocol repository.