diff --git a/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx b/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx index 4203e52bc72..dc5357599e9 100644 --- a/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx +++ b/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx @@ -115,6 +115,11 @@ A successful API call returns a JSON object in the following format: } ``` + +Use [`predictSmartAccountAddress`](/references/typescript/v5/predictSmartAccountAddress) to generate the corresponding smart wallet address. +The `address` field always corresponds to the EOA address that has been pregenerated. + + ## What's Next diff --git a/apps/portal/src/components/Document/AuthList.tsx b/apps/portal/src/components/Document/AuthList.tsx index 5b45752b0a6..2eca12c0e47 100644 --- a/apps/portal/src/components/Document/AuthList.tsx +++ b/apps/portal/src/components/Document/AuthList.tsx @@ -21,6 +21,7 @@ const authOptions: InAppWalletAuth[] = [ "line", "coinbase", "steam", + "backend", ]; export function AuthList() { diff --git a/packages/thirdweb/src/react/web/ui/ConnectWallet/ConnectButton.tsx b/packages/thirdweb/src/react/web/ui/ConnectWallet/ConnectButton.tsx index b4e50b8b0fc..78c9074e8eb 100644 --- a/packages/thirdweb/src/react/web/ui/ConnectWallet/ConnectButton.tsx +++ b/packages/thirdweb/src/react/web/ui/ConnectWallet/ConnectButton.tsx @@ -111,6 +111,8 @@ const TW_CONNECT_WALLET = "tw-connect-wallet"; * />; * ``` * + * Note that this prop doesn't affect ecosystem wallets. Ecosystem wallets will only be converted to smart accounts if the ecosystem owner has enabled account abstraction. + * * ### Enabling sign in with ethereum (Auth) * * ```tsx diff --git a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx index 3b6d88619f0..d9c7e71d104 100644 --- a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx +++ b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx @@ -110,6 +110,7 @@ import { useSetupScreen } from "./screen.js"; * }} * />; * ``` + * Note that this prop doesn't affect ecosystem wallets. Ecosystem wallets will only be converted to smart accounts if the ecosystem owner has enabled account abstraction. * * ### Enabling sign in with ethereum (Auth) *