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

# Solana Transaction Sending

> Learn how to reliably send and confirm Solana transactions using Helius infrastructure. Staked connections, priority fees, and enterprise-grade reliability.

## Why is transaction sending hard on Solana?

Every interaction with Solana — trading on a DEX, minting an NFT, transferring tokens, or calling a program — requires a transaction that lands onchain. During network congestion, unoptimized transactions are frequently dropped before reaching a leader. Helius provides staked connections that route directly to leaders, priority fee optimization, and enterprise-grade redundancy to ensure your transactions confirm quickly and reliably.

## Transaction Sending Options

We offer multiple pathways for sending transactions, each designed for different needs and use cases.

<CardGroup cols={2}>
  <Card title="Staked Connections" icon="shield-check" href="/sending-transactions/send-manually">
    Recommended for production systems. Direct routing to block leaders with
    priority lane access, bypassing public queues for reliable delivery.
  </Card>

  <Card title="Sender (Ultra-Low Latency)" icon="rocket" href="/sending-transactions/sender">
    Specialized service for high-frequency traders requiring ultra-low latency. Dual routing to validators and Jito infrastructure with global endpoints.
  </Card>
</CardGroup>

<CardGroup cols={1}>
  <Card title="Transaction Rebates" icon="coins" href="/sending-transactions/backrun-rebates">
    Earn automatic SOL rebates via post-trade backruns with no additional risk of toxic MEV. One parameter addition to your sendTransaction calls.
  </Card>
</CardGroup>

## Key Concepts for Reliable Transactions

Regardless of the method you choose, understanding these concepts is key to success on Solana.

<Card title="Optimizing Transactions" icon="rocket" href="/sending-transactions/optimizing-transactions">
  Learn best practices for setting priority fees and compute units to maximize your transaction's chances of landing quickly.
</Card>

## What is the difference between staked and unstaked connections?

Helius offers both staked and unstaked connections for sending transactions.

* **Staked Connections (Recommended)**: When you send transactions through our endpoints (available on paid plans), your transactions are routed directly to the current and upcoming block leaders. This provides a priority lane, bypassing the public transaction processing queue and offering near-guaranteed delivery. Using the Helius [Priority Fee API](/priority-fee-api) ensures you pay the optimal fee required by the leader.

* **Unstaked Connections**: On our free plan, transactions are sent through high-performance, but unstaked, RPC nodes. They are subject to the same network congestion and competition for leader processing as any other public transaction.

For any production application, using **staked connections is the single most effective way to ensure reliable transaction delivery.**
