# getBundlerClient | @account-kit/core

> Overview of the getBundlerClient function from @account-kit/core

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

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

```ts
function getBundlerClient(config): ClientWithAlchemyMethods;
```

Defined in: [account-kit/core/src/actions/getBundlerClient.ts:18](https://github.com/alchemyplatform/aa-sdk/blob/main/account-kit/core/src/actions/getBundlerClient.ts#L18)

Retrieves the BundlerClient from the core store of the given AlchemyAccountsConfig.

## Example

```ts
// see `createConfig` for more information on how to create a config
import { config } from "./config";

const bundlerClient = getBundlerClient(config);
```

## Parameters

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

  <tbody>
    <tr>
      <td>
        `config`
      </td>

      <td>
        `AlchemyAccountsConfig`
      </td>

      <td>
        The configuration object containing the core store.
      </td>
    </tr>

  </tbody>
</table>

## Returns

`ClientWithAlchemyMethods`

The BundlerClient from the core store.