Skip to content
Alchemy Logo

SmartWalletClientParams

type SmartWalletClientParams<TAccount> = Prettify<object &
  | {
  policyId?: string;
  policyIds?: never;
}
  | {
  policyId?: never;
  policyIds?: string[];
}>;

Defined in: account-kit/wallet-client/src/client/index.ts:27

Type ParameterDefault type

TAccount extends Address | undefined

Address | undefined

Was this page helpful?