Skip to content

Commit

Permalink
removes light, simple smart accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyapotti committed Sep 24, 2024
1 parent 2b21ebb commit 976d4be
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 72 deletions.
9 changes: 0 additions & 9 deletions demo/vue-app-new/src/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import {
BiconomySmartAccount,
ISmartAccount,
KernelSmartAccount,
LightSmartAccount,
SafeSmartAccount,
SimpleSmartAccount,
TrustSmartAccount,
} from "@web3auth/account-abstraction-provider";
import { CHAIN_NAMESPACES, ChainNamespaceType, IAdapter, IBaseProvider, IProvider, storageAvailable, WALLET_ADAPTERS } from "@web3auth/base";
Expand Down Expand Up @@ -89,19 +87,12 @@ const accountAbstractionProvider = computed((): IBaseProvider<IProvider> | undef
case "biconomy":
smartAccountInit = new BiconomySmartAccount();
break;
case "simple":
smartAccountInit = new SimpleSmartAccount();
break;
case "kernel":
smartAccountInit = new KernelSmartAccount();
break;
case "light":
smartAccountInit = new LightSmartAccount();
break;
case "trust":
smartAccountInit = new TrustSmartAccount();
break;
case "safe":
default:
smartAccountInit = new SafeSmartAccount();
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
export * from "./BiconomySmartAccount";
export * from "./KernelSmartAccount";
export * from "./LightSmartAccount";
export * from "./SafeSmartAccount";
export * from "./SimpleSmartAccount";
export * from "./TrustSmartAccount";
export * from "./types";

0 comments on commit 976d4be

Please sign in to comment.