type LightAccountAbi<TAccountType, TAccountVersion> =
TAccountVersion extends keyof (typeof AccountVersionRegistry)[TAccountType]
? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion] extends StaticSmartAccountImplementation
? (typeof AccountVersionRegistry)[TAccountType][TAccountVersion]["accountAbi"]
: never
: never;Defined in: packages/smart-accounts/src/light-account/registry.ts:86
| Type Parameter |
|---|
|
|