> For the complete documentation index, see [llms.txt](https://docs.enclave.money/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enclave.money/integrate-with-enclave-money/embedded-wallet/get-user-info.md).

# Get User Info

```tsx
import { useWallet } from "@enclavemoney/enclave-wallet-sdk/dist/components/WalletProvider";

export function Page() {
     const {
         isLoggedIn,
         username,
         evmWalletAddress,
         solanaWallkeAddress,
         bitcoinWalletAddress,
         cryptoBalance
     } = useWallet();
}
```

| Variable name        | Data                                                  |
| -------------------- | ----------------------------------------------------- |
| username             | User's username or email id (based on auth mechanism) |
| evmWalletAddress     | EVM smart contract wallet address                     |
| solanaAddress        | Solana wallet address                                 |
| bitcoinWalletAddress | Bitcoin native segwit wallet address                  |
| cryptoBalance        | List of aggregated token balances                     |
| isLoggedIn           | Logged in state of the user (true or false)           |
