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

# Endpoints

> RPC-Endpunkte und Verbindungsdetails für Helius Privacy auf Devnet und Localnet.

## Beta-Endpunkte

**Devnet:**

| Dienst     | Endpunkt                                           | Anmerkungen                                                                        |
| ---------- | -------------------------------------------------- | ---------------------------------------------------------------------------------- |
| Solana RPC | `https://devnet.helius-rpc.com/?api-key=<API_KEY>` | Helius-Schlüssel. Finanzieren Sie den Zahler mit [devnet SOL](/docs/de/rpc/devnet-sol). |
| Indexer    | `https://d2xah7tnhdhcom.cloudfront.net`            | Ruft verschlüsselten Zustand ab.                                                   |
| Prover     | `https://d21ni15goiip6l.cloudfront.net`            | Erzeugt ZK-Beweise                                                                 |

**Für benutzerdefinierte Ringe verwenden:**

| Dienst   | Endpunkt                                | Anmerkungen       |
| -------- | --------------------------------------- | ----------------- |
| Ring RPC | `https://d24brah9h1i4q9.cloudfront.net` | Ring RPC-Endpunkt |

**Localnet:**

`zolana dev start`. RPC-Port `:8899`, Indexer-Port `:8784`, Prover-Port `:3001`.

## Eine RPC-Verbindung erstellen

<Tabs>
  <Tab title="TypeScript">
    <Tabs>
      <Tab title="Devnet">
        ```ts theme={"system"}
        import { createZolanaClient } from "@heliuslabs/zolana";

        const client = await createZolanaClient({
          solanaRpcUrl: "https://devnet.helius-rpc.com/?api-key=YOUR_API_KEY",
          indexerUrl: "https://d2xah7tnhdhcom.cloudfront.net",
          proverUrl: "https://d21ni15goiip6l.cloudfront.net",
        });
        ```

        Finanzieren Sie den Zahler mit [devnet SOL](/docs/de/rpc/devnet-sol).
      </Tab>

      <Tab title="Localnet">
        ```bash theme={"system"}
        cargo install --git https://github.com/helius-labs/zolana --tag v0.1.0-alpha zolana-cli
        zolana dev start
        ```

        ```ts theme={"system"}
        import { createZolanaClient } from "@heliuslabs/zolana";

        const client = await createZolanaClient({});
        ```
      </Tab>
    </Tabs>
  </Tab>

  <Tab title="Rust">
    <Tabs>
      <Tab title="Devnet">
        ```rust theme={"system"}
        use solana_address::Address;
        use zolana_client::{SolanaRpc, ZolanaClient};
        use zolana_interface::DEFAULT_TREE_ADDRESS;

        let tree: Address = DEFAULT_TREE_ADDRESS.parse()?;
        let client = ZolanaClient::from_urls(
            SolanaRpc::new("https://devnet.helius-rpc.com/?api-key=YOUR_API_KEY"),
            "https://d2xah7tnhdhcom.cloudfront.net",
            "https://d21ni15goiip6l.cloudfront.net",
            tree,
        );
        ```
      </Tab>

      <Tab title="Localnet">
        ```bash theme={"system"}
        cargo install --git https://github.com/helius-labs/zolana --tag v0.1.0-alpha zolana-cli
        zolana dev start
        ```

        ```rust theme={"system"}
        use solana_address::Address;
        use zolana_client::{SolanaRpc, ZolanaClient};
        use zolana_interface::DEFAULT_TREE_ADDRESS;

        let tree: Address = DEFAULT_TREE_ADDRESS.parse()?;
        let client = ZolanaClient::from_urls(
            SolanaRpc::new("http://127.0.0.1:8899"),
            "http://127.0.0.1:8784",
            "http://127.0.0.1:3001",
            tree,
        )?;
        ```
      </Tab>
    </Tabs>
  </Tab>
</Tabs>

## Verwandte Anleitungen

<CardGroup cols={2}>
  <Card title="SDK" icon="cube" href="/docs/de/privacy/sdk" horizontal />

  <Card title="Adressen" icon="map-pin" href="/docs/de/privacy/addresses" horizontal />
</CardGroup>

## Didn't find what you were looking for?

<Callout type="info">
  Reach out! [Telegram](https://t.me/tilo_light) | [E-Mail](mailto:sales@helius.xyz) | [Contact](https://www.helius.dev/contact)
</Callout>
