const multisigPluginActions: <TTransport, TChain, TAccount>(
client,
) => MultisigPluginActions<TAccount>;Defined in: account-kit/smart-contracts/src/msca/plugins/multisig/extension.ts:74
Provides actions for managing a multisig plugin within the specified client, including reading owners, checking ownership, getting the threshold, proposing user operations, and signing multisig user operations.
import { createModularAccountAlchemyClient, multisigPluginActions } from "@account-kit/smart-contracts";
const client = createModularAccountAlchemyClient(...).extend(multisigPluginActions);| Type Parameter | Default type |
|---|---|
| |
|
|
|
|
| Parameter | Type | Description |
|---|---|---|
|
| The client instance configured with transport, chain, and account information |
MultisigPluginActions<TAccount>
An object containing methods to perform actions related to the multisig plugin