> For the complete documentation index, see [llms.txt](https://docs.soleer.xyz/soleerlabs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.soleer.xyz/soleerlabs/utility-and-governance/scalability-solutions.md).

# Scalability Solutions

* **Solana’s High-Throughput Base Layer**:
  * 400ms block time, 65,000+ TPS, and sub-$0.001 fees.
* **Hybrid Architecture**:
  * Off-chain storage (IPFS, Arweave) for listings/descriptions.
  * On-chain anchors for reputation and escrow.
* **Smart Contract Optimization**:
  * Modular, upgradeable contracts with batch processing and parallel execution (via Solana’s Sealevel).
* **Cross-Chain Support**:
  * Mango Network and Ethereum integration for liquidity and identity.
* **Progressive Decentralization**:
  * Indexing (Helius, The Graph), decentralized compute (Akash, Bittensor), and messaging (XMTP).
* **Auto-Scaling Infrastructure**:
  * Regional node scaling via Google Cloud and optimized GraphQL endpoints.
* **User Segmentation**:
  * Dedicated marketplace instances for job categories and regions.

## Sharding

Transactions are sharded as:

`shard(tx) = hash(tx.id) mod n`

where n is the number of shards, distributing load across subsets.

## State Channels

For high-frequency updates:

`C(p1, p2) = (σ0, {m1, ..., mn}, σn)`

* **σ0**: Initial state
* **mi**: State transitions
* **σn**: Final state


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.soleer.xyz/soleerlabs/utility-and-governance/scalability-solutions.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
