> For the complete documentation index, see [llms.txt](https://docs.fuelet.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fuelet.app/wallet-api/getting-current-account.md).

# Getting current account

When the user is connected, the app can get the address of the connected account using the `currentAccount` method, which returns a `Promise<string>` - account address in [Bech32 format](https://fuellabs.github.io/fuels-ts/guide/types/bech32.html).

{% tabs %}
{% tab title="TypeScript" %}

```javascript
const currentAccount = await fuel.currentAccount();
console.log("Current Account ", currentAccount);
```

{% endtab %}
{% endtabs %}
