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

# SendSolanaTransactionOptions

```ts theme={null}
type SendSolanaTransactionOptions = {
  solanaAccount: SolanaAddress;
  network: SendSolanaTransactionWithEndUserAccountBodyNetwork;
  transaction: string;
  useCdpSponsor?: boolean;
  idempotencyKey?: string;
};
```

Request parameters for sending a Solana transaction.

## Properties

| Property                                    | Type                                                                                                                                                                  | Description                                                                                       |
| ------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| <a id="solanaaccount" /> `solanaAccount`    | `SolanaAddress`                                                                                                                                                       | The Solana account to send the transaction with.                                                  |
| <a id="network" /> `network`                | [`SendSolanaTransactionWithEndUserAccountBodyNetwork`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-core/Type-Aliases/SendSolanaTransactionWithEndUserAccountBodyNetwork) | The network to send the transaction to.                                                           |
| <a id="transaction" /> `transaction`        | `string`                                                                                                                                                              | The base64 encoded transaction to send.                                                           |
| <a id="usecdpsponsor" /> `useCdpSponsor?`   | `boolean`                                                                                                                                                             | Whether transaction fees should be sponsored by CDP. When true, CDP sponsors the transaction fee. |
| <a id="idempotencykey" /> `idempotencyKey?` | `string`                                                                                                                                                              | Optional idempotency key for safe retries.                                                        |
