Skip to content
Alchemy Logo

createMultisigModularAccount

function createMultisigModularAccount<TTransport, TSigner>(
  config,
): Promise<MultisigModularAccount<TSigner>>;

Defined in: account-kit/smart-contracts/src/msca/account/multisigAccount.ts:60

Type ParameterDefault type

TTransport extends Transport

Transport

TSigner extends SmartAccountSigner<any>

SmartAccountSigner<any>

ParameterTypeDescription

config

CreateMultisigModularAccountParams<TTransport, TSigner>

The parameters for creating a multisig modular account.

Promise<MultisigModularAccount<TSigner>>

A promise that resolves to a MultisigModularAccount object containing the created account information and methods.

Was this page helpful?