# createServerSigner | @account-kit/signer

> Overview of the createServerSigner function from @account-kit/signer

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

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

```ts
function createServerSigner(params): Promise<AlchemyServerSigner>;
```

Defined in: [account-kit/signer/src/serverSigner.ts:151](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/signer/src/serverSigner.ts#L151)

Creates a new server signer.

## Example

```ts
const signer = await createServerSigner({
  auth: { accessKey },
  connection: {
    apiKey: "alchemy-api-key",
  },
});

console.log("Signer address:", await signer.getAddress());
```

## Parameters

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

  <tbody>
    <tr>
      <td>
        `params`
      </td>

      <td>
        `CreateServerSignerParams`
      </td>

      <td>
        Parameters
      </td>
    </tr>

  </tbody>
</table>

## Returns

`Promise`\<[`AlchemyServerSigner`](../classes/AlchemyServerSigner)>

A promise that resolves to a server signer