> For the complete documentation index, see [llms.txt](https://hyperdapp.gitbook.io/code-editor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperdapp.gitbook.io/code-editor/guides/context-variables/connected-wallet-address.md).

# Connected Wallet Address

* You can get the current connected wallet address:

```
get(me/address, ADDR)
```

* You can display the address:

```
prompt :-
  get(me/address, ADDR),
  show [ 
    text('Connected Address: ', ADDR)
  ].
```

* You can also use the address to call an ABI function and then display the result:

```
prompt :-
  get(me/address, ADDR),
  call_fn(YOUR_SMART_CONTRACT, balanceOf(ADDR),  [BALANCE]),
  show [ 
    text('Connected Address: ', ADDR), 
    text('Balance: ', BALANCE)
  ].
```
