# fromKitSigner (Solana)

> Overview of the fromKitSigner function

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

{/* This file is auto-generated by TypeDoc. Do not edit manually. */}

```ts
function fromKitSigner(signer): SolanaSigner;
```

Defined in: [packages/wallet-apis/src/adapters/fromKitSigner.ts:27](https://github.com/alchemyplatform/aa-sdk/blob/main/packages/wallet-apis/src/adapters/fromKitSigner.ts#L27)

Adapts an [@solana/kit](https://solanakit.com) signer into a [SolanaSigner](../../interfaces/SolanaSigner).

Accepts any signer that implements `signTransactions`, including
`KeyPairSigner`, `TransactionPartialSigner`, and `NoopSigner`. For raw
Ed25519 keypairs, use [fromKeypair](fromKeypair). For browser wallets (wallet
adapter, Phantom, etc.), use [fromWalletAdapter](fromWalletAdapter). For
wallet-standard wallets, use [fromWalletStandard](fromWalletStandard).

Requires `@solana/kit` as a peer dependency.

## Parameters

<table>
  <thead>
    <tr>
      <th align="left">Parameter</th>
      <th align="left">Type</th>
      <th align="left">Description</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        `signer`
      </td>

      <td>
        [`SolanaTransactionPartialSigner`](../interfaces/SolanaTransactionPartialSigner)
      </td>

      <td>
        The @solana/kit signer to adapt
      </td>
    </tr>

  </tbody>
</table>

## Returns

[`SolanaSigner`](../../interfaces/SolanaSigner)

A SolanaSigner compatible with `createSmartWalletClient`