Alchemy Logo

AlchemySmartAccountClient_Base

type AlchemySmartAccountClient_Base<chain, account, actions, context> =
  Prettify<
    SmartAccountClient<
      AlchemyTransport,
      chain,
      account,
      actions & BaseAlchemyActions<chain, account, context>,
      [...SmartAccountClientRpcSchema, ...AlchemyRpcSchema],
      context
    >
  >;

Defined in: account-kit/infra/src/client/smartAccountClient.ts:76

Type ParameterDefault type

chain extends Chain | undefined

Chain | undefined

account extends SmartContractAccount | undefined

SmartContractAccount | undefined

actions extends Record<string, unknown>

Record<string, unknown>

context extends UserOperationContext | undefined

UserOperationContext | undefined

Was this page helpful?