We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6028a88 commit 5917e62Copy full SHA for 5917e62
.changeset/modern-panthers-grow.md
@@ -0,0 +1,5 @@
1
+---
2
+"@thirdweb-dev/wallets": patch
3
4
+
5
+Fix getSmartWalletAddress util function
packages/wallets/src/evm/connectors/smart-wallet/utils.ts
@@ -111,6 +111,7 @@ export async function getSmartWalletAddress(
111
const factoryContract = await readOnlySDK.getContract(factoryAddress);
112
const accountAddress = await factoryContract.call("getAddress", [
113
personalWalletAddress,
114
+ "0x",
115
]);
116
return accountAddress;
117
}
0 commit comments