> 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/events/chain-changed.md).

# Chain Changed

Event emitted upon the dapp or wallet changing the network/chain you are connected to

Broearn Wallet abstracts the concept of networks, and network switching. So there is no action required on your end as a dapp developer.

{% code overflow="wrap" %}

```typescript
ethereum.on('chainChanged', (chainId: string) => {
  console.log(chainId);
  // "0x1" on Ethereum
  /* Broearn Wallet will handle all of the internal changes needed to handle the new chain.
   * As the dapp developer, 
   * you just need to make sure all of your transaction requests
   * populate the correct chainId
   */
});
```

{% endcode %}
