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

# installModule

> Install a custom module

## Import

```ts theme={null}
import { installModule } from '@rhinestone/sdk/actions'
```

## Usage

```ts theme={null}
const transaction = await account.prepareTransaction({
  chain,
  calls: [installModule(module)],
})
```

## Parameters

<ParamField path="module" type="ModuleInput" required>
  Module to install
</ParamField>

## Returns

<ResponseField name="call" type="LazyCallInput">
  Calls to install the module
</ResponseField>
