Skip to content

Commit

Permalink
only support kernel and safe
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Sep 26, 2024
1 parent 050d4e3 commit e5fa2f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ export class AccountAbstractionProvider extends BaseProvider<AccountAbstractionP
return this._paymasterClient;
}

get publicClient(): Client | null {
return this._publicClient;
}

public static getProviderInstance = async (params: {
eoaProvider: IProvider;
smartAccountInit: ISmartAccount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
export * from "./KernelSmartAccount";
export * from "./SafeSmartAccount";
// export * from "./TrustSmartAccount";
export * from "./LightSmartAccount";
export * from "./SimpleSmartAccount";
// export * from "./LightSmartAccount";
// export * from "./SimpleSmartAccount";
export * from "./types";
// TODO: enable biconomy smart account & trust smart account once permissionless fixes the issue with 0.6 accounts
// https:/pimlicolabs/permissionless.js/issues/287

// TODO: enable LightSmartAccount once their sig verification is fixed
//https:/alchemyplatform/light-account/issues/54

// TODO: enable SimpleSmartAccount once their sig verification is fixed
// https:/eth-infinitism/account-abstraction/issues/500

0 comments on commit e5fa2f8

Please sign in to comment.