1 type SupportedAccount<T> = T extends "LightAccount" 2 ? LightAccount<AlchemySigner> 3 : T extends "MultiOwnerModularAccount" 4 ? MultiOwnerModularAccount<AlchemySigner> 5 : T extends "MultiOwnerLightAccount" 6 ? MultiOwnerLightAccount<AlchemySigner> 7 : T extends "ModularAccountV2" 8 ? ModularAccountV2<AlchemySigner> 9 : never;
Defined in: account-kit/core/src/types.ts:48
| Type Parameter |
|---|
|