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

# Programmgesteuertes Solana-Staking mit Helius SDK

> Erstellen Sie nahtlose Solana-Staking-Erlebnisse mit dem Helius SDK. Komplette Anleitung von der Einrichtung bis zur Auszahlung mit 0 % Kommissionsvalidierungsintegration.

<Info>
  **Null-Kommissions-Validator**: Staken Sie mit dem Helius-Validator und behalten Sie 100 % Ihrer Staking-Belohnungen mit unserem 0 % Kommissionssatz.
</Info>

## Kurze Übersicht

Das Helius SDK bietet einfache Methoden zur programmgesteuerten Verwaltung des gesamten SOL-Staking-Lebenszyklus. Perfekt für den Bau von Staking-Schnittstellen, DeFi-Protokollen oder automatisierten Staking-Strategien.

<CardGroup cols={3}>
  <Card title="Erstellen & Delegieren" icon="plus">
    Richten Sie neue Stake-Konten ein und delegieren Sie an Validatoren in einer Transaktion
  </Card>

  <Card title="Überwachen & Verwalten" icon="chart-line">
    Verfolgen Sie Belohnungen, prüfen Sie den Status und verwalten Sie bestehende Stake-Konten
  </Card>

  <Card title="Abheben & Einlösen" icon="money-bill">
    Deaktivieren Sie Stakes und ziehen Sie SOL nach Abkühlphasen ab
  </Card>
</CardGroup>

## Installation & Einrichtung

<CodeGroup>
  ```bash npm theme={"system"}
  npm install helius-sdk @solana/web3.js bs58
  ```

  ```bash yarn   theme={"system"}
  yarn add helius-sdk @solana/web3.js bs58
  ```

  ```bash pnpm theme={"system"}
  pnpm add helius-sdk @solana/web3.js bs58
  ```
</CodeGroup>

<CodeGroup>
  ```typescript Setup theme={"system"}
  import { Helius } from 'helius-sdk';
  import { Keypair, Transaction } from '@solana/web3.js';
  import bs58 from 'bs58';

  // Initialize Helius client
  const helius = new Helius('YOUR_API_KEY');

  // Your wallet keypair (load from your secure storage)
  const payer = Keypair.fromSecretKey(/* your secret key */);
  ```
</CodeGroup>

## Grundlagen des Stakings

<AccordionGroup>
  <Accordion title="Wie Solana-Staking funktioniert">
    **Stake-Konto**: Ein spezielles Konto, das SOL sperrt und an einen Validator delegiert. Jedes Stake-Konto weist genau auf einen Validator hin.

    **Belohnungen**: Validatoren verdienen Belohnungen für die Sicherung des Netzwerks. Diese Belohnungen werden auf alle an diesen Validator delegierten Stake-Konten verteilt.

    **Lebenszyklus**: Erstellen → Delegieren → Belohnungen verdienen → Deaktivieren → Abheben
  </Accordion>

  <Accordion title="Warum Helius Validator wählen">
    * **0% Kommission**: Behalten Sie 100% Ihrer Staking-Belohnungen
    * **Hohe Leistung**: Zuverlässige Blockproduktion und minimale Ausfallzeiten
    * **Einfache Integration**: Optimiert für das Helius SDK mit integrierten Hilfen
  </Accordion>

  <Accordion title="Timing & Epochen">
    * **Aktivierung**: Stakes werden zu Beginn der nächsten Epoche aktiv (\~2 Tage)
    * **Deaktivierung**: Wirksam zum Ende der aktuellen Epoche
    * **Abkühlphase**: Deaktivierte Stakes können unmittelbar nach Epochenende abgehoben werden
  </Accordion>
</AccordionGroup>

## Erste Schritte

<Tabs>
  <Tab title="Schnellstart">
    Stake SOL in nur 3 Codezeilen:

    ```typescript theme={"system"}
    // 1. Create the staking transaction
    const { serializedTx, stakeAccountPubkey } = 
      await helius.rpc.createStakeTransaction(payer.publicKey, 1.5);

    // 2. Sign and send
    const tx = Transaction.from(bs58.decode(serializedTx));
    tx.partialSign(payer);
    const signature = await helius.connection.sendRawTransaction(tx.serialize());

    console.log(`Staked! Transaction: ${signature}`);
    console.log(`Stake Account: ${stakeAccountPubkey}`);
    ```

    <Info>
      Das SDK übernimmt automatisch die Berechnung der Miete und die Erstellung des Stake-Kontos. Der `1.5` Parameter ist der Betrag in SOL, den Sie staken möchten.
    </Info>
  </Tab>

  <Tab title="Komplettes Beispiel">
    Volle Staking-Implementierung mit Fehlerbehandlung:

    ```typescript theme={"system"}
    async function stakeSOL(amountInSol: number) {
      try {
        // Create staking transaction
        const { serializedTx, stakeAccountPubkey } = 
          await helius.rpc.createStakeTransaction(payer.publicKey, amountInSol);
        
        // Deserialize and sign transaction
        const transaction = Transaction.from(bs58.decode(serializedTx));
        transaction.partialSign(payer);
        
        // Send transaction
        const signature = await helius.connection.sendRawTransaction(
          transaction.serialize(),
          { 
            skipPreflight: false,
            preflightCommitment: 'confirmed'
          }
        );
        
        // Wait for confirmation
        await helius.connection.confirmTransaction(signature, 'confirmed');
        
        return {
          signature,
          stakeAccount: stakeAccountPubkey,
          amount: amountInSol
        };
        
      } catch (error) {
        console.error('Staking failed:', error);
        throw error;
      }
    }

    // Usage
    const result = await stakeSOL(2.5);
    console.log(`Successfully staked ${result.amount} SOL`);
    ```
  </Tab>
</Tabs>

## SDK-Methoden-Referenz

<AccordionGroup>
  <Accordion title="createStakeTransaction(owner, amount)">
    Erstellt eine vollständige Staking-Transaktion, die signiert und gesendet werden kann.

    **Parameter:**

    * `owner` (PublicKey): Die Wallet, die das Stake-Konto besitzt
    * `amount` (Zahl): Betrag in SOL zum Staken

    **Rückgabe:**

    ```typescript theme={"system"}
    {
      serializedTx: string,        // Base58 encoded transaction
      stakeAccountPubkey: string   // New stake account address
    }
    ```

    **Beispiel:**

    ```typescript theme={"system"}
    const result = await helius.rpc.createStakeTransaction(
      payer.publicKey, 
      1.5  // 1.5 SOL
    );
    ```
  </Accordion>

  <Accordion title="getStakeInstructions(owner, amount)">
    Gibt nur die Anweisungen für das Staking zurück (nützlich für den benutzerdefinierten Transaktionsaufbau).

    **Rückgabe:**

    ```typescript theme={"system"}
    {
      instructions: TransactionInstruction[],
      stakeAccount: Keypair
    }
    ```

    **Beispiel:**

    ```typescript theme={"system"}
    const { instructions } = await helius.rpc.getStakeInstructions(
      payer.publicKey, 
      1.5
    );

    // Use with Smart Transactions
    const signature = await helius.rpc.sendSmartTransaction(
      instructions, 
      [payer]
    );
    ```
  </Accordion>

  <Accordion title="getHeliusStakeAccounts(wallet)">
    Ruft alle für eine Wallet an den Helius-Validator delegierten Stake-Konten ab.

    **Beispiel:**

    ```typescript theme={"system"}
    const accounts = await helius.rpc.getHeliusStakeAccounts(
      payer.publicKey.toBase58()
    );

    accounts.forEach(account => {
      const delegation = account.account.data.parsed.info.stake.delegation;
      console.log(`Account: ${account.pubkey}`);
      console.log(`Stake: ${delegation.stake / LAMPORTS_PER_SOL} SOL`);
    });
    ```
  </Accordion>

  <Accordion title="createUnstakeTransaction(owner, stakeAccount)">
    Erstellt eine Transaktion zum Deaktivieren (Beginn des Unstaking) eines Stake-Kontos.

    **Beispiel:**

    ```typescript theme={"system"}
    const tx = await helius.rpc.createUnstakeTransaction(
      payer.publicKey,
      stakeAccountPubkey
    );

    const transaction = Transaction.from(bs58.decode(tx));
    transaction.partialSign(payer);
    await helius.connection.sendRawTransaction(transaction.serialize());
    ```
  </Accordion>

  <Accordion title="getWithdrawableAmount(stakeAccount, includeRent?)">
    Überprüfen Sie, wie viel SOL von einem deaktivierten Stake-Konto abgehoben werden kann.

    **Parameter:**

    * `includeRent` (boolean): Ob der mietfreie Betrag einbezogen werden soll

    **Beispiel:**

    ```typescript theme={"system"}
    const available = await helius.rpc.getWithdrawableAmount(stakeAccountPubkey);
    const total = await helius.rpc.getWithdrawableAmount(stakeAccountPubkey, true);

    console.log(`Available now: ${available / LAMPORTS_PER_SOL} SOL`);
    console.log(`Total balance: ${total / LAMPORTS_PER_SOL} SOL`);
    ```
  </Accordion>

  <Accordion title="createWithdrawTransaction(owner, stakeAccount, destination, amount)">
    Erstellt eine Transaktion zum Abheben von SOL von einem deaktivierten Stake-Konto.

    **Beispiel:**

    ```typescript theme={"system"}
    const tx = await helius.rpc.createWithdrawTransaction(
      payer.publicKey,
      stakeAccountPubkey,
      destinationPubkey,
      withdrawAmount  // in lamports
    );
    ```
  </Accordion>
</AccordionGroup>

## Vollständiger Staking-Workflow

<Steps>
  <Step title="Erstellen und Delegieren">
    ```typescript theme={"system"}
    // Stake 2 SOL to Helius validator
    const { serializedTx, stakeAccountPubkey } = 
      await helius.rpc.createStakeTransaction(payer.publicKey, 2.0);

    const tx = Transaction.from(bs58.decode(serializedTx));
    tx.partialSign(payer);

    const signature = await helius.connection.sendRawTransaction(tx.serialize());
    console.log(`Stake created: ${stakeAccountPubkey}`);
    ```
  </Step>

  <Step title="Überwachen Sie Ihre Stakes">
    ```typescript theme={"system"}
    // Get all your Helius stake accounts
    const accounts = await helius.rpc.getHeliusStakeAccounts(
      payer.publicKey.toBase58()
    );

    console.log(`You have ${accounts.length} active stake accounts`);

    accounts.forEach((account, index) => {
      const info = account.account.data.parsed.info;
      const delegation = info.stake.delegation;
      
      console.log(`Stake ${index + 1}:`);
      console.log(`  Amount: ${delegation.stake / LAMPORTS_PER_SOL} SOL`);
      console.log(`  Activated: Epoch ${delegation.activationEpoch}`);
      console.log(`  Status: ${info.meta.lockup.unixTimestamp === 0 ? 'Active' : 'Locked'}`);
    });
    ```
  </Step>

  <Step title="Deaktivieren (Unstaking beginnen)">
    ```typescript theme={"system"}
    // Begin the unstaking process
    const unstakeTx = await helius.rpc.createUnstakeTransaction(
      payer.publicKey,
      stakeAccountPubkey
    );

    const tx = Transaction.from(bs58.decode(unstakeTx));
    tx.partialSign(payer);

    await helius.connection.sendRawTransaction(tx.serialize());
    console.log('Deactivation started. Will be withdrawable next epoch.');
    ```
  </Step>

  <Step title="SOL abheben">
    ```typescript theme={"system"}
    // Check withdrawable amount
    const withdrawable = await helius.rpc.getWithdrawableAmount(
      stakeAccountPubkey, 
      true  // include rent
    );

    if (withdrawable > 0) {
      // Create withdrawal instruction
      const withdrawInstruction = helius.rpc.getWithdrawInstruction(
        payer.publicKey,
        stakeAccountPubkey,
        payer.publicKey,  // withdraw to same wallet
        withdrawable
      );
      
      // Send using Smart Transactions for better reliability
      const signature = await helius.rpc.sendSmartTransaction(
        [withdrawInstruction], 
        [payer]
      );
      
      console.log(`Withdrawn ${withdrawable / LAMPORTS_PER_SOL} SOL`);
    }
    ```
  </Step>
</Steps>

## Erweiterte Muster

<Tabs>
  <Tab title="Browser-Integration">
    Für Browser-Anwendungen mit Wallet-Adaptern:

    ```typescript theme={"system"}
    // Get instructions instead of full transaction
    const { instructions, stakeAccount } = await helius.rpc.getStakeInstructions(
      wallet.publicKey,
      stakeAmount
    );

    // Let the wallet handle transaction building and signing
    const transaction = new Transaction().add(...instructions);

    // Sign with wallet adapter
    const signature = await wallet.sendTransaction(transaction, connection);

    console.log(`Stake account: ${stakeAccount.publicKey.toBase58()}`);
    ```
  </Tab>

  <Tab title="Batch-Operationen">
    Staken für mehrere Wallets effizient:

    ```typescript theme={"system"}
    async function batchStake(wallets: Keypair[], amount: number) {
      const promises = wallets.map(async (wallet) => {
        try {
          const { serializedTx, stakeAccountPubkey } = 
            await helius.rpc.createStakeTransaction(wallet.publicKey, amount);
          
          const tx = Transaction.from(bs58.decode(serializedTx));
          tx.partialSign(wallet);
          
          return helius.connection.sendRawTransaction(tx.serialize());
        } catch (error) {
          console.error(`Failed to stake for ${wallet.publicKey.toBase58()}:`, error);
          return null;
        }
      });
      
      const results = await Promise.allSettled(promises);
      const successful = results.filter(r => r.status === 'fulfilled').length;
      
      console.log(`Successfully staked for ${successful}/${wallets.length} wallets`);
    }
    ```
  </Tab>

  <Tab title="Smart Transactions">
    Verwenden Sie Smart Transactions für bessere Zuverlässigkeit und Optimierung:

    ```typescript theme={"system"}
    // Get individual instructions
    const { instructions } = await helius.rpc.getStakeInstructions(
      payer.publicKey,
      2.5
    );

    // Send with Smart Transaction features:
    // - Automatic priority fee optimization
    // - Retry logic with backoff
    // - Better error handling
    const signature = await helius.rpc.sendSmartTransaction(
      instructions,
      [payer],
      {
        skipPreflight: false,
        maxRetries: 3
      }
    );

    console.log(`Smart transaction sent: ${signature}`);
    ```
  </Tab>
</Tabs>

## Wichtige Hinweise

<Warning>
  **Epochen-Zeitplanung**: Solana-Epochen dauern \~2 Tage. Stakes werden zu Beginn der nächsten Epoche aktiviert und die Deaktivierung wird am Ende der aktuellen Epoche wirksam.
</Warning>

<Note>
  **Mietüberlegungen**: Stake-Konten benötigen mietfreie Reserven (\~0,00228 SOL). Das Abheben des gesamten Guthabens schließt das Konto.
</Note>

<Tip>
  **Hardware-Wallets**: Benutzer sehen zwei Signaturaufforderungen - eine für das Stake-Konto (vorgesichert) und eine für den Gebührenzahler. Gestalten Sie Ihr UX entsprechend.
</Tip>

## Schnelle Referenz

Eine schnelle Erinnerung? Hier sind die wesentlichen Methoden:

```typescript theme={"system"}
// Stake SOL
await helius.rpc.createStakeTransaction(owner, amountInSol);

// Check your stakes  
await helius.rpc.getHeliusStakeAccounts(ownerAddress);

// Start unstaking
await helius.rpc.createUnstakeTransaction(owner, stakeAccount);

// Check withdrawable amount
await helius.rpc.getWithdrawableAmount(stakeAccount, includeRent);

// Withdraw SOL
helius.rpc.getWithdrawInstruction(owner, stakeAccount, destination, amount);
```

## Nächste Schritte

<CardGroup cols={2}>
  <Card title="Helius SDK Dokumentation" icon="code" href="https://github.com/helius-labs/helius-sdk">
    Vollständige SDK-Referenz mit allen verfügbaren Methoden
  </Card>

  <Card title="Smarte Transaktionen" icon="bolt" href="/docs/de/sending-transactions/optimizing-transactions">
    Optimieren Sie Ihre Transaktionen mit Prioritätsgebühren und Wiederholungslogik
  </Card>

  <Card title="Treten Sie Discord bei" icon="discord" href="https://discord.com/invite/6GXdee3gBj">
    Hilfe von unserer Entwickler-Community erhalten
  </Card>

  <Card title="Validator Dashboard" icon="chart-bar" href="https://www.validators.app/validators/EKgWgpJY5BtX7TeJfhKbqcJT7gzLKFFtj7cjX1XY6CxA">
    Überwachen Sie die Leistung und Belohnungen des Helius-Validators
  </Card>
</CardGroup>
