# MultisigConfig.toRpc

Converts a multisig configuration to its JSON-RPC representation.

## Imports

:::code-group
```ts [Named]
import { MultisigConfig } from 'ox/tempo'
```

```ts [Entrypoint]
import * as MultisigConfig from 'ox/tempo/MultisigConfig'
```
:::

## Examples

```ts twoslash
import { MultisigConfig } from 'ox/tempo'

const config = MultisigConfig.toRpc({
  owners: [
    {
      owner: '0x1111111111111111111111111111111111111111',
      weight: 1
    }
  ],
  threshold: 1
})
```

## Definition

```ts
function toRpc(
  config: Input,
): Rpc
```

**Source:** [src/tempo/MultisigConfig.ts](https://github.com/wevm/ox/blob/main/src/tempo/MultisigConfig.ts#L538)

## Parameters

### config

* **Type:** [`Input`](/tempo/reference/MultisigConfig/types#multisigconfiginput)

The multisig configuration.

#### config.owners

* **Type:** `readonly Owner[]`

Weighted owner list (strictly ascending by `owner` address).

#### config.salt

* **Type:** `0x${string}`
* **Optional**

Caller-chosen 32-byte salt mixed into the derived account address.
Defaults to the zero salt (`MultisigConfig.zeroSalt`) when omitted.

#### config.threshold

* **Type:** `numberType`

Minimum total owner weight required to authorize a transaction.

#### config.version

* **Type:** `versionType`
* **Optional**

Configuration version as a safe integer or bigint. Defaults to `0n`.

## Return Type

The JSON-RPC multisig configuration.

`Rpc`
