Alchemy Logo

SmartAccountClientConfig

type SmartAccountClientConfig<transport, chain, account, context> = Prettify<
  Pick<
    ClientConfig<transport, chain, account>,
    | "cacheTime"
    | "chain"
    | "key"
    | "name"
    | "pollingInterval"
    | "transport"
    | "type"
  > &
    object &
    ClientMiddlewareConfig<context>
>;

Defined in: aa-sdk/core/src/client/smartAccountClient.ts:36

Type ParameterDefault type

transport extends Transport

Transport

chain extends Chain | undefined

Chain | undefined

account extends SmartContractAccount | undefined

SmartContractAccount | undefined

context extends UserOperationContext | undefined

UserOperationContext | undefined

Was this page helpful?