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

# exportSolanaAccount

```ts theme={null}
function exportSolanaAccount(options: ExportSolanaAccountOptions): Promise<ExportSolanaAccountResult>;
```

Exports the private key of a Solana account.

## Parameters

| Parameter | Type                                                                                                                  | Description                            |
| --------- | --------------------------------------------------------------------------------------------------------------------- | -------------------------------------- |
| `options` | [`ExportSolanaAccountOptions`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-core/Type-Aliases/ExportSolanaAccountOptions) | The options for exporting the account. |

## Returns

`Promise`\<[`ExportSolanaAccountResult`](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-core/Type-Aliases/ExportSolanaAccountResult)>

The result of the export.

## Example

```typescript lines theme={null}
const result = await exportSolanaAccount({
  solanaAccount: "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
});
```

## Deprecated

This function will be removed soon. Use `createSolanaKeyExportIframe` instead for a more secure key export experience
that never exposes the private key to your application's JavaScript context.

## See

[createSolanaKeyExportIframe](/sdks/cdp-sdks-v2/frontend/@coinbase/cdp-core/Functions/createSolanaKeyExportIframe)
