> For the complete documentation index, see [llms.txt](https://wallet-docs.broearn.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wallet-docs.broearn.com/put/extension-and-in-broearn-app/events/accounts-changed.md).

# Accounts Changed

```
// Some code
window.bw.on('accountsChanged', (newAccounts: string[]) => {
    console.log(newAccounts);
})

window.bw.put.on('accountsChanged', (newAccounts: string[]) => {
    console.log(newAccounts);
})
```
