> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stablenet.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Home

## Check RPC Connection Status

```shellscript bash theme={null}
curl -X POST https://api.test.stablenet.network \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
```

```shellscript theme={null}
{"jsonrpc":"2.0","id":1,"result":"0x132d3"}
```

This is the fastest way to verify that the StableNet RPC endpoint is operating correctly.\
By running this command, you send a JSON-RPC request directly to the StableNet network and receive the latest block number in response.

If a block number (in hexadecimal) is returned successfully, your RPC connection is correctly configured and communication with the StableNet network is working.\
**Always try this first** before proceeding with node configuration, transaction submission, or wallet integration.

***

## Getting Started

Choose a path based on what you want to do.

* **StableNet Overview**\
  Explains what StableNet is, how it differs, and how the system is structured.\
  → /en/stablenet-overview/index

* **Getting Started**\
  Install and configure a node, and initialize genesis and network settings.\
  → /en/getting-started/index

***

## Getting Started Checklist

* **Installation and Build**\
  Set up the environment and build the client.\
  → /en/getting-started/2.1-installation-and-building

* **Node Configuration**\
  Configure the node and adjust key runtime settings.\
  → /en/getting-started/2.2-node-configuration

* **Genesis and Network Initialization**\
  Initialize genesis and bootstrap the network.\
  → /en/getting-started/2.3-genesis-setup-and-network-initialization

***

## Operations and Interaction

* **Operations Guide**\
  Deploy, operate, monitor validators, and maintain nodes.\
  → /en/operations-guide/index

* **RPC and APIs**\
  RPC namespaces, filtering/subscriptions, and transaction submission.\
  → /en/rpc-and-apis/index

***

## Deep Dive into the Protocol

* **Core Architecture**\
  Node lifecycle, core management flows, transaction pool, and encoding formats.\
  → /en/core-architecture/index

* **Consensus and Block Production**\
  WBFT consensus, validator management, and block production.\
  → /en/consensus-and-block-production/index

* **Governance System**\
  System contracts and protocol behavior controlled by governance.\
  → /en/governance-system/index

* **Storage Architecture**\
  Trie/storage internals, caching, snapshots, and data lifecycle.\
  → /en/storage-architecture/index

* **Transaction Processing**\
  End-to-end transaction flow: validation, execution, and inclusion.\
  → /en/transaction-processing/index

* **Networking**\
  P2P, discovery, protocol handlers, and chain synchronization.\
  → /en/networking/index

***

## Tools

* **Development Tools**\
  Utilities for building, CI/CD, testing, debugging, and operations.\
  → /en/development-tools/index

* **Explorer**\
  Browse on-chain data such as blocks, transactions, and accounts on the StableNet network.\
  → [https://explorer.stablenet.network](https://explorer.stablenet.network)
