> 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/ethereum-and-evm/provider-api-reference/properties/_events.md).

# \_events

## window\.bw\.eth.\_events

An object containing all of the events that the provider has emitted or logged.

```javascript
const events = window.bw.eth._events;
console.log(events);
// Events {chainChanged: Array(2), accountsChanged: EE}
```

This is **not** a recommended way to keep track of different events. The provider implements a Node.js `EventEmitter` API to emit different events happening within the wallet and/or dapp. See [Events](/ethereum-and-evm/provider-api-reference/events.md) for more details.
