Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ A successful API call returns a JSON object in the following format:
}
```

<Callout variant='warning' title='Smart Wallet Address'>
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.
</Callout>


## What's Next

Expand Down
1 change: 1 addition & 0 deletions apps/portal/src/components/Document/AuthList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const authOptions: InAppWalletAuth[] = [
"line",
"coinbase",
"steam",
"backend",
];

export function AuthList() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
*
Expand Down
Loading