File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
packages/wallets/src/evm/wallets Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @thirdweb-dev/wallets " : patch
3
+ ---
4
+
5
+ Fix Chains Package Tree shaking issue caused by SmartWallet
Original file line number Diff line number Diff line change @@ -26,8 +26,15 @@ import { getValidChainRPCs } from "@thirdweb-dev/chains";
26
26
import { providers , utils } from "ethers" ;
27
27
28
28
// export types and utils for convenience
29
- export * from "../connectors/smart-wallet/types" ;
30
- export * from "../connectors/smart-wallet/utils" ;
29
+ export type * from "../connectors/smart-wallet/types" ;
30
+ export {
31
+ type AccessibleSmartWallets ,
32
+ getAllSigners ,
33
+ getAllSmartWallets ,
34
+ getSmartWalletAddress ,
35
+ isSmartWalletDeployed ,
36
+ } from "../connectors/smart-wallet/utils" ;
37
+
31
38
export type { PaymasterAPI } from "@account-abstraction/sdk" ;
32
39
33
40
export class SmartWallet
You can’t perform that action at this time.
0 commit comments