> ## 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.

# StableNet Developer Documentation

## RPC Connectivity

<CodeGroup>
  ```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}'
  ```
</CodeGroup>

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

This is the fastest way to verify that the StableNet RPC endpoint is functioning correctly. When you run this command, a JSON-RPC request is sent directly to the StableNet network, and the latest block number is returned in the response.

If a block number (in hexadecimal format) is returned successfully, your RPC connection is properly configured and communication with the StableNet network is working as expected. Run this first before configuring nodes, sending transactions, or integrating wallets.

***

## Start here

Pick a path based on what you're trying to do.

<Columns cols={2}>
  <Card title="StableNet Overview" icon="book" horizontal href="/en/stablenet-overview/index">
    What StableNet is, what's different, and how the system fits together.
  </Card>

  <Card title="Getting Started" icon="rocket" horizontal href="/en/getting-started/index">
    Install, configure a node, and initialize genesis/network settings.
  </Card>
</Columns>

***

## Getting Started checklist

<Columns cols={2}>
  <Card title="Installation and Building" icon="wrench" href="/en/getting-started/2.1-installation-and-building">
    Set up your environment and build the client.
  </Card>

  <Card title="Node Configuration" icon="sliders" href="/en/getting-started/2.2-node-configuration">
    Configure the node and key runtime settings.
  </Card>

  <Card title="Genesis & Network Initialization" icon="network-wired" href="/en/getting-started/2.3-genesis-setup-and-network-initialization">
    Initialize genesis and bootstrap the network.
  </Card>
</Columns>

***

## Operate and interact

<Columns cols={2}>
  <Card title="Operations Guide" icon="server" href="/en/operations-guide/index">
    Deploy, operate validators, monitor, and maintain nodes.
  </Card>

  <Card title="RPC and APIs" icon="terminal" href="/en/rpc-and-apis/index">
    RPC namespaces, filtering/subscriptions, and transaction submission.
  </Card>
</Columns>

***

## Protocol deep dive

<Columns cols={2}>
  <Card title="Core Architecture" icon="layer-group" href="/en/core-architecture/index">
    Node lifecycle, core management flows, tx pool, and encoding formats.
  </Card>

  <Card title="Consensus and Block Production" icon="bolt" href="/en/consensus-and-block-production/index">
    WBFT consensus, validator management, and block production.
  </Card>

  <Card title="Governance System" icon="scale-balanced" href="/en/governance-system/index">
    System contracts and governance-controlled protocol behavior.
  </Card>

  <Card title="Storage Architecture" icon="database" href="/en/storage-architecture/index">
    Trie/storage internals, caching, snapshots, and data lifecycle.
  </Card>

  <Card title="Transaction Processing" icon="arrows-rotate" href="/en/transaction-processing/index">
    Transaction flow end-to-end: validation, execution, and inclusion.
  </Card>

  <Card title="Networking" icon="sitemap" href="/en/networking/index">
    P2P, discovery, protocol handlers, and chain synchronization.
  </Card>
</Columns>

***

## Tools

<Columns cols={2}>
  <Card title="Development Tools" icon="toolbox" href="/en/development-tools/index">
    Build, CI/CD, testing, and utilities for debugging and operations.
  </Card>

  <Card title="StableNet Explorer" icon="telescope" href="https://explorer.stablenet.network">
    Explore blocks, transactions, accounts, and on-chain activity on the StableNet network.
  </Card>
</Columns>
