Appearance
State Diagrams
Node lifecycle and state transitions.
← Back to Architecture Overview
Available Diagrams
Startup States
States during node initialization.
- Initializing → Connecting → Bootstrapping → Syncing → Ready
- Common startup issues and solutions
Operational States
Runtime states for active nodes.
- Validator consensus cycle (Proposing, Voting, Finalizing)
- Observer monitoring state
- Connection recovery
Simplified Lifecycle
WARNING
The sync phase can take 1-12 hours for new nodes. See Troubleshooting for details.
Monitoring Commands
bash
# Check current state
docker logs rnode.validator 2>&1 | tail -50
# Monitor state changes
docker logs -f rnode.validator 2>&1 | grep -E "state|sync|connected"Related Documentation
- Component Diagrams - Node internals
- Sequence Diagrams - Interaction flows
- Troubleshooting - Common issues